diff --git a/src/azure-cli/HISTORY.rst b/src/azure-cli/HISTORY.rst index 38bb2173349..4db8b5cbc91 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -90,6 +90,11 @@ Release History * Document allowed values for sql db create --sample-name +**SQL VM** + +* sql vm create/update: Added optional parameter `--sql-mgmt-type` to setup SQL management +* Minor fixes on SQL vm group that did not allow to update the key for storage accounts. + **VM** * vmss create: Fix bug where command returns an error message when run with `--no-wait`. The command succesfully sends diff --git a/src/azure-cli/azure/cli/command_modules/sqlvm/_format.py b/src/azure-cli/azure/cli/command_modules/sqlvm/_format.py index 767911a2557..6b7464434be 100644 --- a/src/azure-cli/azure/cli/command_modules/sqlvm/_format.py +++ b/src/azure-cli/azure/cli/command_modules/sqlvm/_format.py @@ -54,6 +54,7 @@ def transform_sqlvm_output(result): ('provisioningState', result.provisioning_state), ('sqlImageOffer', result.sql_image_offer), ('sqlImageSku', result.sql_image_sku), + ('sqlManagement', result.sql_management), ('resourceGroup', resource_group), ('sqlServerLicenseType', result.sql_server_license_type), ('virtualMachineResourceId', result.virtual_machine_resource_id), diff --git a/src/azure-cli/azure/cli/command_modules/sqlvm/_help.py b/src/azure-cli/azure/cli/command_modules/sqlvm/_help.py index 7a655eb0568..2867f6331ab 100644 --- a/src/azure-cli/azure/cli/command_modules/sqlvm/_help.py +++ b/src/azure-cli/azure/cli/command_modules/sqlvm/_help.py @@ -67,19 +67,22 @@ - name: Create a SQL virtual machine with specific sku type and license type. text: > az sql vm create -n sqlvm -g myresourcegroup -l eastus --image-sku Enterprise --license-type AHUB + - name: Create a SQL virtual machine with NoAgent type, only valid for EOS SQL 2008 and SQL 2008 R2. + text: > + az sql vm create -n sqlvm -g myresourcegroup -l eastus --license-type AHUB --sql-mgmt-type NoAgent --image-sku Enterprise --image-offer SQL2008-WS2008R2 - name: Enable R services in SQL2016 onwards. text: > - az sql vm create -n sqlvm -g myresourcegroup -l eastus --license-type PAYG --enable-r-services true + az sql vm create -n sqlvm -g myresourcegroup -l eastus --license-type PAYG --sql-mgmt-type Full --enable-r-services true - name: Create SQL virtual machine and configure auto backup settings. text: > - az sql vm create -n sqlvm -g myresourcegroup -l eastus --license-type PAYG --backup-schedule-type manual --full-backup-frequency Weekly --full-backup-start-hour 2 --full-backup-duration 2 + az sql vm create -n sqlvm -g myresourcegroup -l eastus --license-type PAYG --sql-mgmt-type Full --backup-schedule-type manual --full-backup-frequency Weekly --full-backup-start-hour 2 --full-backup-duration 2 --sa-key {storageKey} --storage-account 'https://storageacc.blob.core.windows.net/' --retention-period 30 --log-backup-frequency 60 - name: Create SQL virtual machine and configure auto patching settings. text: > - az sql vm create -n sqlvm -g myresourcegroup -l eastus --license-type PAYG --day-of-week sunday --maintenance-window-duration 60 --maintenance-window-start-hour 2 + az sql vm create -n sqlvm -g myresourcegroup -l eastus --license-type PAYG --sql-mgmt-type Full --day-of-week sunday --maintenance-window-duration 60 --maintenance-window-start-hour 2 - name: Create SQL virtual machine and configure SQL connectivity settings. text: > - az sql vm create -n sqlvm -g myresourcegroup -l eastus --license-type PAYG --connectivity-type private --port 1433 --sql-auth-update-username {newlogin} --sql-auth-update-pwd {sqlpassword} + az sql vm create -n sqlvm -g myresourcegroup -l eastus --license-type PAYG --sql-mgmt-type Full --connectivity-type private --port 1433 --sql-auth-update-username {newlogin} --sql-auth-update-pwd {sqlpassword} """ helps['sql vm update'] = """ type: command @@ -94,6 +97,9 @@ - name: Update a SQL virtual machine with specific sku type. text: > az sql vm update -n sqlvm -g myresourcegroup --image-sku Enterprise + - name: Update a SQL virtual machine manageability from LightWeight to Full. + text: > + az sql vm update -n sqlvm -g myresourcegroup --sql-mgmt-type Full --yes - name: Update SQL virtual machine auto backup settings. text: > az sql vm update -n sqlvm -g myresourcegroup --backup-schedule-type manual --full-backup-frequency Weekly --full-backup-start-hour 2 --full-backup-duration 2 diff --git a/src/azure-cli/azure/cli/command_modules/sqlvm/_params.py b/src/azure-cli/azure/cli/command_modules/sqlvm/_params.py index 5ac473969d4..66544d934c9 100644 --- a/src/azure-cli/azure/cli/command_modules/sqlvm/_params.py +++ b/src/azure-cli/azure/cli/command_modules/sqlvm/_params.py @@ -16,7 +16,8 @@ DiskConfigurationType, DayOfWeek, SqlVmGroupImageSku, - SqlImageSku + SqlImageSku, + SqlManagementMode ) from azure.cli.core.commands.parameters import ( @@ -31,7 +32,8 @@ validate_sqlvm_list, validate_load_balancer, validate_public_ip_address, - validate_subnet + validate_subnet, + validate_sqlmanagement ) @@ -158,6 +160,11 @@ def load_arguments(self, _): c.argument('expand', help='Get the SQLIaaSExtension configuration settings.', arg_type=get_enum_type(['*'])) + c.argument('sql_management_mode', + help='SQL Server management type. If NoAgent selected, please provide --image-sku and --offer-type.', + options_list=['--sql-mgmt-type'], + validator=validate_sqlmanagement, + arg_type=get_enum_type(SqlManagementMode)) with self.argument_context('sql vm', arg_group='SQL Server License') as c: c.argument('sql_server_license_type', @@ -168,6 +175,9 @@ def load_arguments(self, _): options_list=['--image-sku'], help='SQL image sku.', arg_type=get_enum_type(SqlImageSku)) + c.argument('sql_image_offer', + options_list=['--image-offer'], + help='SQL image offer. Examples include SQL2008R2-WS2008, SQL2008-WS2008.') with self.argument_context('sql vm add-to-group') as c: c.argument('sql_virtual_machine_group_resource_id', @@ -184,10 +194,18 @@ def load_arguments(self, _): id_part='name', help="Name of the SQL virtual machine.") + with self.argument_context('sql vm update') as c: + c.argument('sql_management_mode', + help='SQL Server management type. Updates from LightWeight to Full.', + options_list=['--sql-mgmt-type'], + arg_type=get_enum_type(['Full'])) + c.argument('prompt', + options_list=['--yes', '-y'], + help="Do not prompt for confirmation. Requires --sql-mgmt-type.") + with self.argument_context('sql vm add-to-group', arg_group='WSFC Domain Credentials') as c: c.argument('cluster_bootstrap_account_password', - options_list=['-b', '--bootstrap-acc-pwd', - c.deprecate(target='--boostrap-acc-pwd', redirect='--bootstrap-acc-pwd')], + options_list=['-b', '--bootstrap-acc-pwd'], help='Password for the cluster bootstrap account if provided in the SQL virtual machine group.') c.argument('cluster_operator_account_password', options_list=['--operator-acc-pwd', '-p'], diff --git a/src/azure-cli/azure/cli/command_modules/sqlvm/_validators.py b/src/azure-cli/azure/cli/command_modules/sqlvm/_validators.py index 32f6507c93c..59ac2480cc1 100644 --- a/src/azure-cli/azure/cli/command_modules/sqlvm/_validators.py +++ b/src/azure-cli/azure/cli/command_modules/sqlvm/_validators.py @@ -97,3 +97,14 @@ def validate_subnet(cmd, namespace): name=vnet, child_type_1='subnets', child_name_1=subnet ) + + +# pylint: disable=too-many-statements,line-too-long +def validate_sqlmanagement(namespace): + ''' + Validates if sql management mode provided, the offer type and sku type has to be provided. + ''' + sql_mgmt_mode = namespace.sql_management_mode + + if (sql_mgmt_mode == "NoAgent" and (namespace.sql_image_sku is None or namespace.sql_image_offer is None)): + raise CLIError("usage error: --sql-mgmt-type NoAgent --image-sku NAME --image-offer NAME") diff --git a/src/azure-cli/azure/cli/command_modules/sqlvm/custom.py b/src/azure-cli/azure/cli/command_modules/sqlvm/custom.py index f49df4a61bc..5539e65928b 100644 --- a/src/azure-cli/azure/cli/command_modules/sqlvm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/sqlvm/custom.py @@ -110,9 +110,9 @@ def sqlvm_group_update(instance, domain_fqdn=None, cluster_operator_account=None if storage_account_url is not None: instance.wsfc_domain_profile.storage_account_url = storage_account_url if storage_account_key is not None: - instance.wsfc_domain_profile.storage_access_key = storage_account_key + instance.wsfc_domain_profile.storage_account_primary_key = storage_account_key if storage_account_url and not storage_account_key: - instance.wsfc_domain_profile.storage_access_key = prompt_pass('Storage Key: ', confirm=True) + instance.wsfc_domain_profile.storage_account_primary_key = prompt_pass('Storage Key: ', confirm=True) if file_share_witness_path is not None: instance.wsfc_domain_profile.file_share_witness_path = file_share_witness_path if ou_path is not None: @@ -171,14 +171,14 @@ def aglistener_update(instance, sql_virtual_machine_instances=None): # pylint: disable=too-many-arguments, too-many-locals, line-too-long, too-many-boolean-expressions def sqlvm_create(client, cmd, sql_virtual_machine_name, resource_group_name, sql_server_license_type, - location=None, sql_image_sku=None, enable_auto_patching=None, + location=None, sql_image_sku=None, enable_auto_patching=None, sql_management_mode="LightWeight", day_of_week=None, maintenance_window_starting_hour=None, maintenance_window_duration=None, enable_auto_backup=None, enable_encryption=False, retention_period=None, storage_account_url=None, storage_access_key=None, backup_password=None, backup_system_dbs=False, backup_schedule_type=None, full_backup_frequency=None, full_backup_start_time=None, full_backup_window_hours=None, log_backup_frequency=None, enable_key_vault_credential=None, credential_name=None, azure_key_vault_url=None, service_principal_name=None, service_principal_secret=None, connectivity_type=None, port=None, sql_auth_update_username=None, - sql_auth_update_password=None, sql_workload_type=None, enable_r_services=None, tags=None): + sql_auth_update_password=None, sql_workload_type=None, enable_r_services=None, tags=None, sql_image_offer=None): ''' Creates a SQL virtual machine. ''' @@ -253,6 +253,8 @@ def sqlvm_create(client, cmd, sql_virtual_machine_name, resource_group_name, sql virtual_machine_resource_id=virtual_machine_resource_id, sql_server_license_type=sql_server_license_type, sql_image_sku=sql_image_sku, + sql_management=sql_management_mode, + sql_image_offer=sql_image_offer, auto_patching_settings=auto_patching_object, auto_backup_settings=auto_backup_object, key_vault_credential_settings=keyvault_object, @@ -269,8 +271,8 @@ def sqlvm_create(client, cmd, sql_virtual_machine_name, resource_group_name, sql # pylint: disable=too-many-statements, line-too-long, too-many-boolean-expressions def sqlvm_update(instance, sql_server_license_type=None, sql_image_sku=None, enable_auto_patching=None, day_of_week=None, maintenance_window_starting_hour=None, maintenance_window_duration=None, - enable_auto_backup=None, enable_encryption=False, retention_period=None, storage_account_url=None, - storage_access_key=None, backup_password=None, backup_system_dbs=False, backup_schedule_type=None, + enable_auto_backup=None, enable_encryption=False, retention_period=None, storage_account_url=None, prompt=True, + storage_access_key=None, backup_password=None, backup_system_dbs=False, backup_schedule_type=None, sql_management_mode=None, full_backup_frequency=None, full_backup_start_time=None, full_backup_window_hours=None, log_backup_frequency=None, enable_key_vault_credential=None, credential_name=None, azure_key_vault_url=None, service_principal_name=None, service_principal_secret=None, connectivity_type=None, port=None, sql_workload_type=None, enable_r_services=None, tags=None): @@ -283,6 +285,14 @@ def sqlvm_update(instance, sql_server_license_type=None, sql_image_sku=None, ena instance.sql_server_license_type = sql_server_license_type if sql_image_sku is not None: instance.sql_image_sku = sql_image_sku + if sql_management_mode is not None and instance.sql_management != "Full": + from knack.prompting import prompt_y_n + if not prompt: + instance.sql_management = sql_management_mode + else: + confirmation = prompt_y_n("Upgrading SQL manageability mode to Full will restart the SQL Server. Proceed?") + if confirmation: + instance.sql_management = sql_management_mode if (enable_auto_patching is not None or day_of_week is not None or maintenance_window_starting_hour is not None or maintenance_window_duration is not None): diff --git a/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_add_and_remove.yaml b/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_add_and_remove.yaml index f85a31a4658..c4f33ce27e1 100644 --- a/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_add_and_remove.yaml +++ b/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_add_and_remove.yaml @@ -1,54 +1,4 @@ interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-06-14T18:30:57Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-14T18:30:57Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Jun 2019 18:31:00 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created - request: body: null headers: @@ -239,37 +189,37 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 14 Jun 2019 18:31:01 GMT + - Fri, 05 Jul 2019 22:23:44 GMT etag: - '"fa312c46cd79de46f87bda86a87d64e502367fe5"' expires: - - Fri, 14 Jun 2019 18:36:01 GMT + - Fri, 05 Jul 2019 22:28:44 GMT source-age: - - '0' + - '80' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding + - Authorization,Accept-Encoding, Accept-Encoding via: - 1.1 varnish x-cache: - - MISS + - HIT x-cache-hits: - - '0' + - '1' x-content-type-options: - nosniff x-fastly-request-id: - - 6ca743961db9860e3140e706000b6728ac009999 + - 7a23db094e1b51669470a6047345246247832afe x-frame-options: - deny x-geo-block-list: - '' x-github-request-id: - - FE70:59BD:24AA14:29DA84:5D03E7E5 + - AA44:1A9B:4767E:6052F:5D1FCDA0 x-served-by: - - cache-dfw18650-DFW + - cache-dfw18651-DFW x-timer: - - S1560537062.679707,VS0,VE129 + - S1562365425.511690,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -279,7 +229,7 @@ interactions: body: '{"properties": {"templateLink": {"uri": "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/active-directory-new-domain/azuredeploy.json"}, "parameters": {"adminUsername": {"value": "admin123"}, "adminPassword": {"value": "SecretPassword123"}, "location": {"value": "westus"}, "domainName": {"value": - "domain.com"}, "dnsPrefix": {"value": "zpdht5"}}, "mode": "Incremental"}}' + "domain.com"}, "dnsPrefix": {"value": "av4dnq"}}, "mode": "Incremental"}}' headers: Accept: - application/json @@ -296,26 +246,26 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/domaintemplate","name":"domaintemplate","properties":{"templateLink":{"uri":"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/active-directory-new-domain/azuredeploy.json","contentVersion":"1.0.0.0"},"templateHash":"4746737972103338440","parameters":{"adminUsername":{"type":"String","value":"admin123"},"adminPassword":{"type":"SecureString"},"domainName":{"type":"String","value":"domain.com"},"dnsPrefix":{"type":"String","value":"zpdht5"},"vmSize":{"type":"String","value":"Standard_D2s_v3"},"_artifactsLocation":{"type":"String","value":"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/active-directory-new-domain/azuredeploy.json"},"_artifactsLocationSasToken":{"type":"SecureString"},"location":{"type":"String","value":"westus"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-06-14T18:31:03.650135Z","duration":"PT0.7441793S","correlationId":"aef00730-5f45-42d5-9b1a-a80e232ed1d0","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]},{"resourceType":"virtualMachines","locations":["westus"]},{"resourceType":"virtualMachines/extensions","locations":["westus"]}]},{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/adPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"adPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/adLoadBalancer","resourceType":"Microsoft.Network/loadBalancers","resourceName":"adLoadBalancer"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/VNet","resourceType":"Microsoft.Resources/deployments","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/adLoadBalancer","resourceType":"Microsoft.Network/loadBalancers","resourceName":"adLoadBalancer"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/adNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"adNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/adNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"adNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/availabilitySets/adAvailabiltySet","resourceType":"Microsoft.Compute/availabilitySets","resourceName":"adAvailabiltySet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/adLoadBalancer","resourceType":"Microsoft.Network/loadBalancers","resourceName":"adLoadBalancer"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/adVM","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"adVM"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/adVM","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"adVM"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/adVM/extensions/CreateADForest","resourceType":"Microsoft.Compute/virtualMachines/extensions","resourceName":"adVM/CreateADForest"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/adVM/extensions/CreateADForest","resourceType":"Microsoft.Compute/virtualMachines/extensions","resourceName":"adVM/CreateADForest"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/UpdateVNetDNS","resourceType":"Microsoft.Resources/deployments","resourceName":"UpdateVNetDNS"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/domaintemplate","name":"domaintemplate","properties":{"templateLink":{"uri":"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/active-directory-new-domain/azuredeploy.json","contentVersion":"1.0.0.0"},"templateHash":"4746737972103338440","parameters":{"adminUsername":{"type":"String","value":"admin123"},"adminPassword":{"type":"SecureString"},"domainName":{"type":"String","value":"domain.com"},"dnsPrefix":{"type":"String","value":"av4dnq"},"vmSize":{"type":"String","value":"Standard_D2s_v3"},"_artifactsLocation":{"type":"String","value":"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/active-directory-new-domain/azuredeploy.json"},"_artifactsLocationSasToken":{"type":"SecureString"},"location":{"type":"String","value":"westus"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-07-05T22:23:46.3438329Z","duration":"PT0.8032441S","correlationId":"b318ce69-c4d1-4aff-9264-726730bcac3d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]},{"resourceType":"virtualMachines","locations":["westus"]},{"resourceType":"virtualMachines/extensions","locations":["westus"]}]},{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/adPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"adPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/adLoadBalancer","resourceType":"Microsoft.Network/loadBalancers","resourceName":"adLoadBalancer"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/VNet","resourceType":"Microsoft.Resources/deployments","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/adLoadBalancer","resourceType":"Microsoft.Network/loadBalancers","resourceName":"adLoadBalancer"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/adNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"adNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/adNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"adNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/availabilitySets/adAvailabiltySet","resourceType":"Microsoft.Compute/availabilitySets","resourceName":"adAvailabiltySet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/adLoadBalancer","resourceType":"Microsoft.Network/loadBalancers","resourceName":"adLoadBalancer"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/adVM","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"adVM"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/adVM","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"adVM"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/adVM/extensions/CreateADForest","resourceType":"Microsoft.Compute/virtualMachines/extensions","resourceName":"adVM/CreateADForest"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/adVM/extensions/CreateADForest","resourceType":"Microsoft.Compute/virtualMachines/extensions","resourceName":"adVM/CreateADForest"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/UpdateVNetDNS","resourceType":"Microsoft.Resources/deployments","resourceName":"UpdateVNetDNS"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/domaintemplate/operationStatuses/08586410698225716941?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/domaintemplate/operationStatuses/08586392414599370706?api-version=2018-05-01 cache-control: - no-cache content-length: - - '5606' + - '5607' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:31:03 GMT + - Fri, 05 Jul 2019 22:23:46 GMT expires: - '-1' pragma: @@ -325,7 +275,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -343,10 +293,139 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jul 2019 22:24:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group deployment create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-uri --parameters + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jul 2019 22:24:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group deployment create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-uri --parameters + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jul 2019 22:25:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group deployment create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-uri --parameters + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -358,7 +437,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:31:33 GMT + - Fri, 05 Jul 2019 22:25:47 GMT expires: - '-1' pragma: @@ -386,10 +465,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -401,7 +480,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:32:03 GMT + - Fri, 05 Jul 2019 22:26:16 GMT expires: - '-1' pragma: @@ -429,10 +508,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -444,7 +523,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:32:33 GMT + - Fri, 05 Jul 2019 22:26:47 GMT expires: - '-1' pragma: @@ -472,10 +551,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -487,7 +566,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:33:04 GMT + - Fri, 05 Jul 2019 22:27:17 GMT expires: - '-1' pragma: @@ -515,10 +594,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -530,7 +609,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:33:34 GMT + - Fri, 05 Jul 2019 22:27:47 GMT expires: - '-1' pragma: @@ -558,10 +637,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -573,7 +652,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:34:04 GMT + - Fri, 05 Jul 2019 22:28:17 GMT expires: - '-1' pragma: @@ -601,10 +680,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -616,7 +695,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:34:35 GMT + - Fri, 05 Jul 2019 22:28:48 GMT expires: - '-1' pragma: @@ -644,10 +723,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -659,7 +738,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:35:05 GMT + - Fri, 05 Jul 2019 22:29:18 GMT expires: - '-1' pragma: @@ -687,10 +766,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -702,7 +781,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:35:35 GMT + - Fri, 05 Jul 2019 22:29:49 GMT expires: - '-1' pragma: @@ -730,10 +809,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -745,7 +824,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:36:05 GMT + - Fri, 05 Jul 2019 22:30:19 GMT expires: - '-1' pragma: @@ -773,10 +852,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -788,7 +867,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:36:36 GMT + - Fri, 05 Jul 2019 22:30:50 GMT expires: - '-1' pragma: @@ -816,10 +895,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -831,7 +910,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:37:06 GMT + - Fri, 05 Jul 2019 22:31:20 GMT expires: - '-1' pragma: @@ -859,10 +938,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -874,7 +953,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:37:36 GMT + - Fri, 05 Jul 2019 22:31:50 GMT expires: - '-1' pragma: @@ -902,10 +981,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -917,7 +996,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:38:07 GMT + - Fri, 05 Jul 2019 22:32:20 GMT expires: - '-1' pragma: @@ -945,10 +1024,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -960,7 +1039,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:38:37 GMT + - Fri, 05 Jul 2019 22:32:51 GMT expires: - '-1' pragma: @@ -988,10 +1067,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1003,7 +1082,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:39:08 GMT + - Fri, 05 Jul 2019 22:33:20 GMT expires: - '-1' pragma: @@ -1031,10 +1110,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1046,7 +1125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:39:37 GMT + - Fri, 05 Jul 2019 22:33:50 GMT expires: - '-1' pragma: @@ -1074,10 +1153,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1089,7 +1168,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:40:08 GMT + - Fri, 05 Jul 2019 22:34:21 GMT expires: - '-1' pragma: @@ -1117,10 +1196,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1132,7 +1211,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:40:38 GMT + - Fri, 05 Jul 2019 22:34:51 GMT expires: - '-1' pragma: @@ -1160,10 +1239,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1175,7 +1254,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:41:08 GMT + - Fri, 05 Jul 2019 22:35:21 GMT expires: - '-1' pragma: @@ -1203,10 +1282,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1218,7 +1297,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:41:39 GMT + - Fri, 05 Jul 2019 22:35:51 GMT expires: - '-1' pragma: @@ -1246,10 +1325,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1261,7 +1340,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:42:09 GMT + - Fri, 05 Jul 2019 22:36:22 GMT expires: - '-1' pragma: @@ -1289,10 +1368,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1304,7 +1383,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:42:39 GMT + - Fri, 05 Jul 2019 22:36:52 GMT expires: - '-1' pragma: @@ -1332,10 +1411,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1347,7 +1426,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:43:09 GMT + - Fri, 05 Jul 2019 22:37:22 GMT expires: - '-1' pragma: @@ -1375,10 +1454,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1390,7 +1469,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:43:40 GMT + - Fri, 05 Jul 2019 22:37:52 GMT expires: - '-1' pragma: @@ -1418,10 +1497,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1433,7 +1512,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:44:10 GMT + - Fri, 05 Jul 2019 22:38:23 GMT expires: - '-1' pragma: @@ -1461,10 +1540,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1476,7 +1555,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:44:41 GMT + - Fri, 05 Jul 2019 22:38:53 GMT expires: - '-1' pragma: @@ -1504,10 +1583,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1519,7 +1598,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:45:11 GMT + - Fri, 05 Jul 2019 22:39:23 GMT expires: - '-1' pragma: @@ -1547,10 +1626,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1562,7 +1641,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:45:41 GMT + - Fri, 05 Jul 2019 22:39:54 GMT expires: - '-1' pragma: @@ -1590,10 +1669,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1605,7 +1684,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:46:11 GMT + - Fri, 05 Jul 2019 22:40:24 GMT expires: - '-1' pragma: @@ -1633,10 +1712,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1648,7 +1727,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:46:41 GMT + - Fri, 05 Jul 2019 22:40:54 GMT expires: - '-1' pragma: @@ -1676,10 +1755,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1691,7 +1770,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:47:11 GMT + - Fri, 05 Jul 2019 22:41:25 GMT expires: - '-1' pragma: @@ -1719,10 +1798,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1734,7 +1813,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:47:42 GMT + - Fri, 05 Jul 2019 22:41:56 GMT expires: - '-1' pragma: @@ -1762,10 +1841,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1777,7 +1856,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:48:12 GMT + - Fri, 05 Jul 2019 22:42:25 GMT expires: - '-1' pragma: @@ -1805,10 +1884,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1820,7 +1899,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:48:42 GMT + - Fri, 05 Jul 2019 22:42:55 GMT expires: - '-1' pragma: @@ -1848,10 +1927,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1863,7 +1942,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:49:13 GMT + - Fri, 05 Jul 2019 22:43:26 GMT expires: - '-1' pragma: @@ -1891,10 +1970,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1906,7 +1985,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:49:42 GMT + - Fri, 05 Jul 2019 22:43:56 GMT expires: - '-1' pragma: @@ -1934,10 +2013,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1949,7 +2028,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:50:13 GMT + - Fri, 05 Jul 2019 22:44:27 GMT expires: - '-1' pragma: @@ -1977,10 +2056,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1992,7 +2071,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:50:43 GMT + - Fri, 05 Jul 2019 22:44:57 GMT expires: - '-1' pragma: @@ -2020,10 +2099,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -2035,7 +2114,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:51:14 GMT + - Fri, 05 Jul 2019 22:45:28 GMT expires: - '-1' pragma: @@ -2063,10 +2142,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -2078,7 +2157,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:51:43 GMT + - Fri, 05 Jul 2019 22:45:58 GMT expires: - '-1' pragma: @@ -2106,10 +2185,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -2121,7 +2200,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:52:14 GMT + - Fri, 05 Jul 2019 22:46:28 GMT expires: - '-1' pragma: @@ -2149,10 +2228,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -2164,7 +2243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:52:44 GMT + - Fri, 05 Jul 2019 22:46:58 GMT expires: - '-1' pragma: @@ -2192,10 +2271,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698225716941?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392414599370706?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -2207,7 +2286,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:53:14 GMT + - Fri, 05 Jul 2019 22:47:28 GMT expires: - '-1' pragma: @@ -2235,22 +2314,22 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/domaintemplate","name":"domaintemplate","properties":{"templateLink":{"uri":"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/active-directory-new-domain/azuredeploy.json","contentVersion":"1.0.0.0"},"templateHash":"4746737972103338440","parameters":{"adminUsername":{"type":"String","value":"admin123"},"adminPassword":{"type":"SecureString"},"domainName":{"type":"String","value":"domain.com"},"dnsPrefix":{"type":"String","value":"zpdht5"},"vmSize":{"type":"String","value":"Standard_D2s_v3"},"_artifactsLocation":{"type":"String","value":"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/active-directory-new-domain/azuredeploy.json"},"_artifactsLocationSasToken":{"type":"SecureString"},"location":{"type":"String","value":"westus"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-06-14T18:53:09.6375215Z","duration":"PT22M6.7315658S","correlationId":"aef00730-5f45-42d5-9b1a-a80e232ed1d0","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]},{"resourceType":"virtualMachines","locations":["westus"]},{"resourceType":"virtualMachines/extensions","locations":["westus"]}]},{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/adPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"adPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/adLoadBalancer","resourceType":"Microsoft.Network/loadBalancers","resourceName":"adLoadBalancer"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/VNet","resourceType":"Microsoft.Resources/deployments","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/adLoadBalancer","resourceType":"Microsoft.Network/loadBalancers","resourceName":"adLoadBalancer"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/adNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"adNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/adNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"adNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/availabilitySets/adAvailabiltySet","resourceType":"Microsoft.Compute/availabilitySets","resourceName":"adAvailabiltySet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/adLoadBalancer","resourceType":"Microsoft.Network/loadBalancers","resourceName":"adLoadBalancer"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/adVM","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"adVM"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/adVM","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"adVM"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/adVM/extensions/CreateADForest","resourceType":"Microsoft.Compute/virtualMachines/extensions","resourceName":"adVM/CreateADForest"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/adVM/extensions/CreateADForest","resourceType":"Microsoft.Compute/virtualMachines/extensions","resourceName":"adVM/CreateADForest"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/UpdateVNetDNS","resourceType":"Microsoft.Resources/deployments","resourceName":"UpdateVNetDNS"}],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/availabilitySets/adAvailabiltySet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/adVM"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/adVM/extensions/CreateADForest"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/adLoadBalancer"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/adNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/adPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/adVNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/domaintemplate","name":"domaintemplate","properties":{"templateLink":{"uri":"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/active-directory-new-domain/azuredeploy.json","contentVersion":"1.0.0.0"},"templateHash":"4746737972103338440","parameters":{"adminUsername":{"type":"String","value":"admin123"},"adminPassword":{"type":"SecureString"},"domainName":{"type":"String","value":"domain.com"},"dnsPrefix":{"type":"String","value":"av4dnq"},"vmSize":{"type":"String","value":"Standard_D2s_v3"},"_artifactsLocation":{"type":"String","value":"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/active-directory-new-domain/azuredeploy.json"},"_artifactsLocationSasToken":{"type":"SecureString"},"location":{"type":"String","value":"westus"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-07-05T22:47:14.8814756Z","duration":"PT23M29.3408868S","correlationId":"b318ce69-c4d1-4aff-9264-726730bcac3d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]},{"resourceType":"virtualMachines","locations":["westus"]},{"resourceType":"virtualMachines/extensions","locations":["westus"]}]},{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/adPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"adPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/adLoadBalancer","resourceType":"Microsoft.Network/loadBalancers","resourceName":"adLoadBalancer"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/VNet","resourceType":"Microsoft.Resources/deployments","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/adLoadBalancer","resourceType":"Microsoft.Network/loadBalancers","resourceName":"adLoadBalancer"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/adNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"adNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/adNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"adNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/availabilitySets/adAvailabiltySet","resourceType":"Microsoft.Compute/availabilitySets","resourceName":"adAvailabiltySet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/adLoadBalancer","resourceType":"Microsoft.Network/loadBalancers","resourceName":"adLoadBalancer"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/adVM","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"adVM"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/adVM","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"adVM"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/adVM/extensions/CreateADForest","resourceType":"Microsoft.Compute/virtualMachines/extensions","resourceName":"adVM/CreateADForest"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/adVM/extensions/CreateADForest","resourceType":"Microsoft.Compute/virtualMachines/extensions","resourceName":"adVM/CreateADForest"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/UpdateVNetDNS","resourceType":"Microsoft.Resources/deployments","resourceName":"UpdateVNetDNS"}],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/availabilitySets/adAvailabiltySet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/adVM"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/adVM/extensions/CreateADForest"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/adLoadBalancer"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/adNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/adPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/adVNET"}]}}' headers: cache-control: - no-cache content-length: - - '7098' + - '7099' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:53:14 GMT + - Fri, 05 Jul 2019 22:47:28 GMT expires: - '-1' pragma: @@ -2278,16 +2357,16 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2017-WS2016/skus/Enterprise/versions?$top=1&$orderby=name%20desc&api-version=2019-03-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.190409\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190409\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.190611\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190611\"\r\n \ }\r\n]" headers: cache-control: @@ -2297,7 +2376,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:53:18 GMT + - Fri, 05 Jul 2019 22:47:30 GMT expires: - '-1' pragma: @@ -2330,12 +2409,12 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2017-WS2016/skus/Enterprise/versions/14.1.190409?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2017-WS2016/skus/Enterprise/versions/14.1.190611?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": @@ -2343,7 +2422,7 @@ interactions: \ },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \ \"sizeInGb\": 128\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n - \ \"location\": \"westus\",\r\n \"name\": \"14.1.190409\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190409\"\r\n}" + \ \"location\": \"westus\",\r\n \"name\": \"14.1.190611\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190611\"\r\n}" headers: cache-control: - no-cache @@ -2352,7 +2431,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:53:18 GMT + - Fri, 05 Jul 2019 22:47:31 GMT expires: - '-1' pragma: @@ -2385,8 +2464,8 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 networkmanagementclient/3.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 networkmanagementclient/3.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -2395,16 +2474,16 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"adVNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n - \ \"etag\": \"W/\\\"60ef5c76-2703-406c-8dbb-59a0275de1c5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4b1b6b7a-5e08-4711-b1cd-125ae1465714\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"f6da4ed1-37e1-4a73-a8ec-622ae4422250\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d1737949-b27f-4f9b-8b68-0e9f7f01f3b7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \ \"10.0.0.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"adSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet\",\r\n - \ \"etag\": \"W/\\\"60ef5c76-2703-406c-8dbb-59a0275de1c5\\\"\",\r\n + \ \"etag\": \"W/\\\"4b1b6b7a-5e08-4711-b1cd-125ae1465714\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/adNic/ipConfigurations/ipconfig1\"\r\n @@ -2420,7 +2499,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:53:19 GMT + - Fri, 05 Jul 2019 22:47:31 GMT expires: - '-1' pragma: @@ -2453,8 +2532,8 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -2482,6 +2561,15 @@ interactions: \ {\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_DS1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n @@ -2731,9 +2819,15 @@ interactions: \ },\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\": + 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\": 1638400,\r\n \"memoryInMB\": 262144,\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 @@ -2755,6 +2849,9 @@ interactions: \ },\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_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 @@ -2800,6 +2897,9 @@ interactions: \ },\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 @@ -2929,6 +3029,9 @@ interactions: \ },\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 @@ -3001,25 +3104,16 @@ interactions: \ },\r\n {\r\n \"name\": \"Standard_NV48s_v3\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\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}" headers: cache-control: - no-cache content-length: - - '37831' + - '38880' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:53:19 GMT + - Fri, 05 Jul 2019 22:47:31 GMT expires: - '-1' pragma: @@ -3086,18 +3180,18 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_gpx1OAWMHlp2j1Y59gArwk3QFRO0srs0","name":"vm_deploy_gpx1OAWMHlp2j1Y59gArwk3QFRO0srs0","properties":{"templateHash":"12690996878899691553","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-06-14T18:53:21.6240079Z","duration":"PT0.5795153S","correlationId":"d343549e-5a37-4659-b24f-099552da0c4e","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000003"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_H4UqhmS97DJBzLQRtsxZRB8vlqVOEY0i","name":"vm_deploy_H4UqhmS97DJBzLQRtsxZRB8vlqVOEY0i","properties":{"templateHash":"11135997365525774818","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-07-05T22:47:33.5261455Z","duration":"PT0.5662231S","correlationId":"65bd0bf7-cab4-4a0e-9026-f9f1553f70dd","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000003"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_gpx1OAWMHlp2j1Y59gArwk3QFRO0srs0/operationStatuses/08586410684844331400?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_H4UqhmS97DJBzLQRtsxZRB8vlqVOEY0i/operationStatuses/08586392400325177049?api-version=2018-05-01 cache-control: - no-cache content-length: @@ -3105,7 +3199,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:53:21 GMT + - Fri, 05 Jul 2019 22:47:32 GMT expires: - '-1' pragma: @@ -3115,7 +3209,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -3133,10 +3227,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410684844331400?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392400325177049?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -3148,7 +3242,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:53:51 GMT + - Fri, 05 Jul 2019 22:48:03 GMT expires: - '-1' pragma: @@ -3176,10 +3270,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410684844331400?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392400325177049?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -3191,7 +3285,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:54:22 GMT + - Fri, 05 Jul 2019 22:48:33 GMT expires: - '-1' pragma: @@ -3219,10 +3313,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410684844331400?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392400325177049?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -3234,7 +3328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:54:51 GMT + - Fri, 05 Jul 2019 22:49:04 GMT expires: - '-1' pragma: @@ -3262,10 +3356,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410684844331400?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392400325177049?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -3277,7 +3371,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:55:21 GMT + - Fri, 05 Jul 2019 22:49:34 GMT expires: - '-1' pragma: @@ -3305,10 +3399,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410684844331400?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392400325177049?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -3320,7 +3414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:55:52 GMT + - Fri, 05 Jul 2019 22:50:04 GMT expires: - '-1' pragma: @@ -3348,10 +3442,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410684844331400?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392400325177049?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -3363,7 +3457,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:56:22 GMT + - Fri, 05 Jul 2019 22:50:34 GMT expires: - '-1' pragma: @@ -3391,22 +3485,22 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410684844331400?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392400325177049?api-version=2018-05-01 response: body: - string: '{"status":"Succeeded"}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '22' + - '20' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:56:52 GMT + - Fri, 05 Jul 2019 22:51:04 GMT expires: - '-1' pragma: @@ -3434,22 +3528,22 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392400325177049?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_gpx1OAWMHlp2j1Y59gArwk3QFRO0srs0","name":"vm_deploy_gpx1OAWMHlp2j1Y59gArwk3QFRO0srs0","properties":{"templateHash":"12690996878899691553","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-06-14T18:56:23.6731399Z","duration":"PT3M2.6286473S","correlationId":"d343549e-5a37-4659-b24f-099552da0c4e","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000003"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP"}]}}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '3433' + - '20' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:56:53 GMT + - Fri, 05 Jul 2019 22:51:35 GMT expires: - '-1' pragma: @@ -3477,76 +3571,32 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?$expand=instanceView&api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392400325177049?api-version=2018-05-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"ad565920-e3f8-4ec3-bf63-f55bbdd6e249\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"MicrosoftSQLServer\",\r\n \"offer\": \"SQL2017-WS2016\",\r\n \"sku\": - \"Enterprise\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Windows\",\r\n \"name\": \"clisqlvm000003_OsDisk_1_07d4cb73912e460da5ba59ce8d74213e\",\r\n - \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n - \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_07d4cb73912e460da5ba59ce8d74213e\"\r\n - \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": - []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n - \ \"adminUsername\": \"admin123\",\r\n \"windowsConfiguration\": - {\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 \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": - {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n - \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n - \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not - Ready\",\r\n \"message\": \"VM status blob is found but not yet - populated.\",\r\n \"time\": \"2019-06-14T18:56:54+00:00\"\r\n }\r\n - \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clisqlvm000003_OsDisk_1_07d4cb73912e460da5ba59ce8d74213e\",\r\n \"statuses\": - [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2019-06-14T18:54:00.9599514+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\": \"2019-06-14T18:56:21.122395+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 \"type\": \"Microsoft.Compute/virtualMachines\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003\",\r\n - \ \"name\": \"clisqlvm000003\"\r\n}" + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '3142' + - '20' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:56:53 GMT + - Fri, 05 Jul 2019 22:52: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/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31951 status: code: 200 message: OK @@ -3564,58 +3614,28 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 networkmanagementclient/3.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic?api-version=2018-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392400325177049?api-version=2018-05-01 response: body: - string: "{\r\n \"name\": \"clisqlvm000003VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\",\r\n - \ \"etag\": \"W/\\\"bf68bbfb-2b9f-4e60-8b1d-e06471f5b4a3\\\"\",\r\n \"location\": - \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"669a0eb4-a063-4015-b10f-bcb43f1d72d9\",\r\n - \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigclisqlvm000003\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic/ipConfigurations/ipconfigclisqlvm000003\",\r\n - \ \"etag\": \"W/\\\"bf68bbfb-2b9f-4e60-8b1d-e06471f5b4a3\\\"\",\r\n - \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": - \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP\"\r\n - \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet\"\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\": - \"0fhnv3xbg3zuvkhmmivoiqrcka.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-30-E6-DF\",\r\n \"enableAcceleratedNetworking\": false,\r\n - \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG\"\r\n - \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003\"\r\n - \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '2662' + - '22' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:56:54 GMT - etag: - - W/"bf68bbfb-2b9f-4e60-8b1d-e06471f5b4a3" + - Fri, 05 Jul 2019 22: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: @@ -3637,46 +3657,28 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 networkmanagementclient/3.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP?api-version=2018-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: "{\r\n \"name\": \"clisqlvm000003PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP\",\r\n - \ \"etag\": \"W/\\\"ca94b6b3-0b32-49e6-acff-08897d123d09\\\"\",\r\n \"location\": - \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"b9196dba-4caf-46a7-901f-95cfa631dd77\",\r\n - \ \"ipAddress\": \"40.112.194.61\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n - \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": - 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic/ipConfigurations/ipconfigclisqlvm000003\"\r\n - \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n - \ }\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_H4UqhmS97DJBzLQRtsxZRB8vlqVOEY0i","name":"vm_deploy_H4UqhmS97DJBzLQRtsxZRB8vlqVOEY0i","properties":{"templateHash":"11135997365525774818","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-07-05T22:52:18.8354298Z","duration":"PT4M45.8755074S","correlationId":"65bd0bf7-cab4-4a0e-9026-f9f1553f70dd","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000003"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '1070' + - '3434' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:56:54 GMT - etag: - - W/"ca94b6b3-0b32-49e6-acff-08897d123d09" + - Fri, 05 Jul 2019 22: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: @@ -3685,58 +3687,92 @@ interactions: code: 200 message: OK - request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - storage account create + - vm create Connection: - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -n -g -l --sku + - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004?api-version=2019-04-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?$expand=instanceView&api-version=2019-03-01 response: body: - string: '' + string: "{\r\n \"properties\": {\r\n \"vmId\": \"8287d9ff-3366-49a4-8f32-aefa8295c156\",\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2_v2\"\r\n },\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"MicrosoftSQLServer\",\r\n \"offer\": \"SQL2017-WS2016\",\r\n \"sku\": + \"Enterprise\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Windows\",\r\n \"name\": \"clisqlvm000003_OsDisk_1_9877e0eeea4e455ca0b6d7b1b14f43ce\",\r\n + \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n + \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_9877e0eeea4e455ca0b6d7b1b14f43ce\"\r\n + \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n + \ \"adminUsername\": \"admin123\",\r\n \"windowsConfiguration\": + {\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 \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": + {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n + \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n + \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not + Ready\",\r\n \"message\": \"VM status blob is found but not yet + populated.\",\r\n \"time\": \"2019-07-05T22:52:37+00:00\"\r\n }\r\n + \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": + \"clisqlvm000003_OsDisk_1_9877e0eeea4e455ca0b6d7b1b14f43ce\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2019-07-05T22:49:59.1829331+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\": \"2019-07-05T22:52:18.1829309+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 \"type\": \"Microsoft.Compute/virtualMachines\",\r\n + \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003\",\r\n + \ \"name\": \"clisqlvm000003\"\r\n}" headers: cache-control: - no-cache content-length: - - '0' + - '3143' content-type: - - text/plain; charset=utf-8 + - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:56:57 GMT + - Fri, 05 Jul 2019 22:52:37 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/63fdf328-41fb-4ea3-90cd-feeb650d4add?monitor=true&api-version=2019-04-01 pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - 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-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31958 status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3745,34 +3781,60 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - storage account create + - vm create Connection: - keep-alive ParameterSetName: - - -n -g -l --sku + - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 networkmanagementclient/3.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/63fdf328-41fb-4ea3-90cd-feeb650d4add?monitor=true&api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic?api-version=2018-01-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004","name":"clitest000004","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T18:56:57.2407604Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T18:56:57.2407604Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T18:56:57.1000859Z","primaryEndpoints":{"blob":"https://clitest000004.blob.core.windows.net/","queue":"https://clitest000004.queue.core.windows.net/","table":"https://clitest000004.table.core.windows.net/","file":"https://clitest000004.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: "{\r\n \"name\": \"clisqlvm000003VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\",\r\n + \ \"etag\": \"W/\\\"3f3b571e-1f79-44dc-a401-24a1a5d87f4f\\\"\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"resourceGuid\": \"84fd1530-c396-4cf9-8486-a2b18d83994b\",\r\n + \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigclisqlvm000003\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic/ipConfigurations/ipconfigclisqlvm000003\",\r\n + \ \"etag\": \"W/\\\"3f3b571e-1f79-44dc-a401-24a1a5d87f4f\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet\"\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\": + \"jf2xhul5wknu5c1ib0px4aptwh.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-30-4C-B7\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG\"\r\n + \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" headers: cache-control: - no-cache content-length: - - '1227' + - '2662' content-type: - - application/json + - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:57:14 GMT + - Fri, 05 Jul 2019 22:52:36 GMT + etag: + - W/"3f3b571e-1f79-44dc-a401-24a1a5d87f4f" expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3792,38 +3854,48 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - storage account keys list + - vm create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -n -g --query -o + - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 networkmanagementclient/3.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004/listKeys?api-version=2019-04-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP?api-version=2018-01-01 response: body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: "{\r\n \"name\": \"clisqlvm000003PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP\",\r\n + \ \"etag\": \"W/\\\"22432f43-351d-4cdf-85b3-1286d58c8e62\\\"\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"resourceGuid\": \"56c9355e-d38b-443e-aecb-b4741ef81c3b\",\r\n + \ \"ipAddress\": \"40.112.198.229\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic/ipConfigurations/ipconfigclisqlvm000003\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '288' + - '1071' content-type: - - application/json + - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:57:16 GMT + - Fri, 05 Jul 2019 22:52:38 GMT + etag: + - W/"22432f43-351d-4cdf-85b3-1286d58c8e62" expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3832,8 +3904,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -3857,8 +3927,8 @@ interactions: ParameterSetName: - -n -g --command-id --scripts User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: POST @@ -3868,17 +3938,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/52c6d4aa-5821-4ad4-a33f-e0fa098c71d5?api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/65875d5b-c9b5-472e-8353-f9972865a433?api-version=2019-03-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 14 Jun 2019 18:57:16 GMT + - Fri, 05 Jul 2019 22:53:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/52c6d4aa-5821-4ad4-a33f-e0fa098c71d5?monitor=true&api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/65875d5b-c9b5-472e-8353-f9972865a433?monitor=true&api-version=2019-03-01 pragma: - no-cache server: @@ -3889,7 +3959,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1194 + - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1196 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -3909,14 +3979,14 @@ interactions: ParameterSetName: - -n -g --command-id --scripts User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/52c6d4aa-5821-4ad4-a33f-e0fa098c71d5?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/65875d5b-c9b5-472e-8353-f9972865a433?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-06-14T18:57:16.9544833+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"52c6d4aa-5821-4ad4-a33f-e0fa098c71d5\"\r\n}" + string: "{\r\n \"startTime\": \"2019-07-05T22:53:00.5738276+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"65875d5b-c9b5-472e-8353-f9972865a433\"\r\n}" headers: cache-control: - no-cache @@ -3925,7 +3995,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:57:47 GMT + - Fri, 05 Jul 2019 22:53:30 GMT expires: - '-1' pragma: @@ -3942,7 +4012,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29852 + - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29822 status: code: 200 message: OK @@ -3960,26 +4030,26 @@ interactions: ParameterSetName: - -n -g --command-id --scripts User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/52c6d4aa-5821-4ad4-a33f-e0fa098c71d5?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/65875d5b-c9b5-472e-8353-f9972865a433?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-06-14T18:57:16.9544833+00:00\",\r\n \"endTime\": - \"2019-06-14T18:57:51.6420773+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2019-07-05T22:53:00.5738276+00:00\",\r\n \"endTime\": + \"2019-07-05T22:53:33.964645+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\"value\":[{\"code\":\"ComponentStatus/StdOut/succeeded\",\"level\":\"Info\",\"displayStatus\":\"Provisioning succeeded\",\"message\":\"\"},{\"code\":\"ComponentStatus/StdErr/succeeded\",\"level\":\"Info\",\"displayStatus\":\"Provisioning - succeeded\",\"message\":\"\"}]}\r\n },\r\n \"name\": \"52c6d4aa-5821-4ad4-a33f-e0fa098c71d5\"\r\n}" + succeeded\",\"message\":\"\"}]}\r\n },\r\n \"name\": \"65875d5b-c9b5-472e-8353-f9972865a433\"\r\n}" headers: cache-control: - no-cache content-length: - - '462' + - '461' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:58:18 GMT + - Fri, 05 Jul 2019 22:54:00 GMT expires: - '-1' pragma: @@ -3996,7 +4066,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29849 + - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29819 status: code: 200 message: OK @@ -4014,10 +4084,10 @@ interactions: ParameterSetName: - -n -g --command-id --scripts User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/52c6d4aa-5821-4ad4-a33f-e0fa098c71d5?monitor=true&api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/65875d5b-c9b5-472e-8353-f9972865a433?monitor=true&api-version=2019-03-01 response: body: string: '{"value":[{"code":"ComponentStatus/StdOut/succeeded","level":"Info","displayStatus":"Provisioning @@ -4031,7 +4101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:58:17 GMT + - Fri, 05 Jul 2019 22:54:01 GMT expires: - '-1' pragma: @@ -4048,7 +4118,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29848 + - Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29818 status: code: 200 message: OK @@ -4116,11 +4186,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 14 Jun 2019 18:58:19 GMT + - Fri, 05 Jul 2019 22:54:03 GMT etag: - '"fae783359107af21aac715d08b41f41150e65a32"' expires: - - Fri, 14 Jun 2019 19:03:19 GMT + - Fri, 05 Jul 2019 22:59:03 GMT source-age: - '0' strict-transport-security: @@ -4136,17 +4206,17 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 47e2a7113d32ce26294fd81b33c94ba5353bbd31 + - 9772c4393bc24a183ec5480a02f3e1884750105e x-frame-options: - deny x-geo-block-list: - '' x-github-request-id: - - 1394:4184:7A2F06:87D763:5D03EE43 + - 3DD2:450D:2F3548:351FEB:5D1FD50A x-served-by: - - cache-pao17436-PAO + - cache-sea1027-SEA x-timer: - - S1560538699.011222,VS0,VE153 + - S1562367243.022542,VS0,VE134 x-xss-protection: - 1; mode=block status: @@ -4174,18 +4244,18 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/joinvms","name":"joinvms","properties":{"templateLink":{"uri":"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/201-vm-domain-join-existing/azuredeploy.json","contentVersion":"1.0.0.0"},"templateHash":"2798557613200861831","parameters":{"vmList":{"type":"String","value":"clisqlvm000003"},"location":{"type":"String","value":"westus"},"domainJoinUserName":{"type":"String","value":"domain\\admin123"},"domainJoinUserPassword":{"type":"SecureString"},"domainFQDN":{"type":"String","value":"domain.com"},"ouPath":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-06-14T18:58:19.8168513Z","duration":"PT0.2578436S","correlationId":"bfceff81-3380-4cbb-b010-fd8887bcdcc8","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines/extensions","locations":["westus"]}]}],"dependencies":[]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/joinvms","name":"joinvms","properties":{"templateLink":{"uri":"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/201-vm-domain-join-existing/azuredeploy.json","contentVersion":"1.0.0.0"},"templateHash":"2798557613200861831","parameters":{"vmList":{"type":"String","value":"clisqlvm000003"},"location":{"type":"String","value":"westus"},"domainJoinUserName":{"type":"String","value":"domain\\admin123"},"domainJoinUserPassword":{"type":"SecureString"},"domainFQDN":{"type":"String","value":"domain.com"},"ouPath":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-07-05T22:54:04.6990676Z","duration":"PT0.3605094S","correlationId":"bca0c16e-d3b3-45ca-94b9-08d0e88c6e5e","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines/extensions","locations":["westus"]}]}],"dependencies":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/joinvms/operationStatuses/08586410681859186087?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/joinvms/operationStatuses/08586392396411390643?api-version=2018-05-01 cache-control: - no-cache content-length: @@ -4193,7 +4263,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:58:19 GMT + - Fri, 05 Jul 2019 22:54:04 GMT expires: - '-1' pragma: @@ -4221,10 +4291,53 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392396411390643?api-version=2018-05-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jul 2019 22:54:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group deployment create + Connection: + - keep-alive + ParameterSetName: + - --name -g --template-uri --parameters + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410681859186087?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392396411390643?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -4236,7 +4349,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:58:49 GMT + - Fri, 05 Jul 2019 22:55:04 GMT expires: - '-1' pragma: @@ -4264,10 +4377,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410681859186087?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392396411390643?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -4279,7 +4392,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:59:20 GMT + - Fri, 05 Jul 2019 22:55:35 GMT expires: - '-1' pragma: @@ -4307,10 +4420,10 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410681859186087?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392396411390643?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -4322,7 +4435,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:59:50 GMT + - Fri, 05 Jul 2019 22:56:05 GMT expires: - '-1' pragma: @@ -4350,13 +4463,13 @@ interactions: ParameterSetName: - --name -g --template-uri --parameters User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/joinvms","name":"joinvms","properties":{"templateLink":{"uri":"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/201-vm-domain-join-existing/azuredeploy.json","contentVersion":"1.0.0.0"},"templateHash":"2798557613200861831","parameters":{"vmList":{"type":"String","value":"clisqlvm000003"},"location":{"type":"String","value":"westus"},"domainJoinUserName":{"type":"String","value":"domain\\admin123"},"domainJoinUserPassword":{"type":"SecureString"},"domainFQDN":{"type":"String","value":"domain.com"},"ouPath":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-06-14T18:59:44.2564044Z","duration":"PT1M24.6973967S","correlationId":"bfceff81-3380-4cbb-b010-fd8887bcdcc8","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines/extensions","locations":["westus"]}]}],"dependencies":[],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/joindomain"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/joinvms","name":"joinvms","properties":{"templateLink":{"uri":"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/201-vm-domain-join-existing/azuredeploy.json","contentVersion":"1.0.0.0"},"templateHash":"2798557613200861831","parameters":{"vmList":{"type":"String","value":"clisqlvm000003"},"location":{"type":"String","value":"westus"},"domainJoinUserName":{"type":"String","value":"domain\\admin123"},"domainJoinUserPassword":{"type":"SecureString"},"domainFQDN":{"type":"String","value":"domain.com"},"ouPath":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-07-05T22:55:54.2437226Z","duration":"PT1M49.9051644S","correlationId":"bca0c16e-d3b3-45ca-94b9-08d0e88c6e5e","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines/extensions","locations":["westus"]}]}],"dependencies":[],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/joindomain"}]}}' headers: cache-control: - no-cache @@ -4365,17 +4478,125 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:59:50 GMT + - Fri, 05 Jul 2019 22:56:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account update + Connection: + - keep-alive + ParameterSetName: + - -n -g --set + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-storage/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004?api-version=2019-04-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004","name":"clitest000004","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-05T22:52:41.2177332Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-05T22:52:41.2177332Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-05T22:52:41.1552553Z","primaryEndpoints":{"blob":"https://clitest000004.blob.core.windows.net/","queue":"https://clitest000004.queue.core.windows.net/","table":"https://clitest000004.table.core.windows.net/","file":"https://clitest000004.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1168' + content-type: + - application/json + date: + - Fri, 05 Jul 2019 22:56:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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 + status: + code: 200 + message: OK +- request: + body: '{"sku": {"name": "Standard_LRS"}, "tags": {}, "properties": {"encryption": + {"services": {"blob": {"enabled": true}, "file": {"enabled": true}}, "keySource": + "Microsoft.Storage"}, "supportsHttpsTrafficOnly": true, "networkAcls": {"bypass": + "AzureServices", "virtualNetworkRules": [], "ipRules": [], "defaultAction": + "Allow"}}, "kind": "StorageV2"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account update + Connection: + - keep-alive + Content-Length: + - '346' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --set + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-storage/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004?api-version=2019-04-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004","name":"clitest000004","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-05T22:52:41.2177332Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-05T22:52:41.2177332Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-05T22:52:41.1552553Z","primaryEndpoints":{"dfs":"https://clitest000004.dfs.core.windows.net/","web":"https://clitest000004.z22.web.core.windows.net/","blob":"https://clitest000004.blob.core.windows.net/","queue":"https://clitest000004.queue.core.windows.net/","table":"https://clitest000004.table.core.windows.net/","file":"https://clitest000004.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1319' + content-type: + - application/json + date: + - Fri, 05 Jul 2019 22:56:07 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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-subscription-writes: + - '1199' status: code: 200 message: OK @@ -4393,24 +4614,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-storage/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004?api-version=2019-04-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004","name":"clitest000004","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T18:56:57.2407604Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T18:56:57.2407604Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T18:56:57.1000859Z","primaryEndpoints":{"blob":"https://clitest000004.blob.core.windows.net/","queue":"https://clitest000004.queue.core.windows.net/","table":"https://clitest000004.table.core.windows.net/","file":"https://clitest000004.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004","name":"clitest000004","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-05T22:52:41.2177332Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-05T22:52:41.2177332Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-05T22:52:41.1552553Z","primaryEndpoints":{"dfs":"https://clitest000004.dfs.core.windows.net/","web":"https://clitest000004.z22.web.core.windows.net/","blob":"https://clitest000004.blob.core.windows.net/","queue":"https://clitest000004.queue.core.windows.net/","table":"https://clitest000004.table.core.windows.net/","file":"https://clitest000004.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '1227' + - '1319' content-type: - application/json date: - - Fri, 14 Jun 2019 18:59:52 GMT + - Fri, 05 Jul 2019 22:56:08 GMT expires: - '-1' pragma: @@ -4444,8 +4665,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-storage/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: POST @@ -4461,7 +4682,7 @@ interactions: content-type: - application/json date: - - Fri, 14 Jun 2019 18:59:51 GMT + - Fri, 05 Jul 2019 22:56:08 GMT expires: - '-1' pragma: @@ -4477,7 +4698,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -4503,8 +4724,8 @@ interactions: ParameterSetName: - -n -g -l -i -s -f -p -k -e -u --bootstrap-acc User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT @@ -4514,7 +4735,7 @@ interactions: string: '{"properties":{"provisioningState":"ProvisioningDomainful","sqlImageOffer":"SQL2017-WS2016","sqlImageSku":"Enterprise","wsfcDomainProfile":{"storageAccountUrl":"https://clitest000004.blob.core.windows.net/"}},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/cligroup","name":"cligroup","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachinegroup/operationResults/5d34b351-a1da-46a1-a703-6108b267f2d2?api-version=2017-03-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachinegroup/operationResults/b6e38f4a-b94c-41a4-b39e-1d5f6fb3312d?api-version=2017-03-01-preview cache-control: - no-cache content-length: @@ -4522,7 +4743,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:59:55 GMT + - Fri, 05 Jul 2019 22:56:10 GMT expires: - '-1' pragma: @@ -4534,7 +4755,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -4552,22 +4773,22 @@ interactions: ParameterSetName: - -n -g -l -i -s -f -p -k -e -u --bootstrap-acc User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachinegroup/operationResults/5d34b351-a1da-46a1-a703-6108b267f2d2?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachinegroup/operationResults/b6e38f4a-b94c-41a4-b39e-1d5f6fb3312d?api-version=2017-03-01-preview response: body: - string: '{"name":"5d34b351-a1da-46a1-a703-6108b267f2d2","status":"Succeeded","startTime":"2019-06-14T18:59:53.873Z"}' + string: '{"name":"b6e38f4a-b94c-41a4-b39e-1d5f6fb3312d","status":"Succeeded","startTime":"2019-07-05T22:56:10Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '103' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:00:09 GMT + - Fri, 05 Jul 2019 22:56:25 GMT expires: - '-1' pragma: @@ -4599,8 +4820,8 @@ interactions: ParameterSetName: - -n -g -l -i -s -f -p -k -e -u --bootstrap-acc User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/cligroup?api-version=2017-03-01-preview response: @@ -4614,7 +4835,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:00:10 GMT + - Fri, 05 Jul 2019 22:56:26 GMT expires: - '-1' pragma: @@ -4646,8 +4867,8 @@ interactions: ParameterSetName: - -n -g -l -i -s -f -p -k -e -u --bootstrap-acc User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -4663,7 +4884,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:00:11 GMT + - Fri, 05 Jul 2019 22:56:26 GMT expires: - '-1' pragma: @@ -4684,8 +4905,8 @@ interactions: - request: body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003", - "sqlServerLicenseType": "PAYG", "autoPatchingSettings": {}, "autoBackupSettings": - {}, "keyVaultCredentialSettings": {}, "serverConfigurationsManagementSettings": + "sqlServerLicenseType": "PAYG", "sqlManagement": "Full", "autoPatchingSettings": + {}, "autoBackupSettings": {}, "keyVaultCredentialSettings": {}, "serverConfigurationsManagementSettings": {"sqlConnectivityUpdateSettings": {"connectivityType": "PRIVATE", "port": 1433, "sqlAuthUpdateUserName": "SecretPassword123", "sqlAuthUpdatePassword": "admin123"}, "sqlWorkloadTypeUpdateSettings": {}, "additionalFeaturesServerConfigurations": @@ -4699,33 +4920,176 @@ interactions: - sql vm create Connection: - keep-alive - Content-Length: - - '694' - Content-Type: - - application/json; charset=utf-8 + Content-Length: + - '719' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + --sql-mgmt-type + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview + response: + body: + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Provisioning","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Unknown"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0c73085c-5907-4d78-91cd-b599da0a434c?api-version=2017-03-01-preview + cache-control: + - no-cache + content-length: + - '694' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jul 2019 22:56:29 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-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + --sql-mgmt-type + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0c73085c-5907-4d78-91cd-b599da0a434c?api-version=2017-03-01-preview + response: + body: + string: '{"name":"0c73085c-5907-4d78-91cd-b599da0a434c","status":"InProgress","startTime":"2019-07-05T22:56:28.873Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jul 2019 22:56:44 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + --sql-mgmt-type + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0c73085c-5907-4d78-91cd-b599da0a434c?api-version=2017-03-01-preview + response: + body: + string: '{"name":"0c73085c-5907-4d78-91cd-b599da0a434c","status":"InProgress","startTime":"2019-07-05T22:56:28.873Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jul 2019 22:57:00 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql vm create + Connection: + - keep-alive ParameterSetName: - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0c73085c-5907-4d78-91cd-b599da0a434c?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Provisioning","sqlServerLicenseType":"PAYG","sqlImageSku":"Unknown"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"0c73085c-5907-4d78-91cd-b599da0a434c","status":"InProgress","startTime":"2019-07-05T22:56:28.873Z"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c6f1b0de-c72e-4c4d-92de-5c63a343a01c?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '671' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:00:13 GMT + - Fri, 05 Jul 2019 22:57:15 GMT expires: - '-1' pragma: @@ -4734,13 +5098,15 @@ 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-subscription-writes: - - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -4754,14 +5120,15 @@ interactions: - keep-alive ParameterSetName: - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c6f1b0de-c72e-4c4d-92de-5c63a343a01c?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0c73085c-5907-4d78-91cd-b599da0a434c?api-version=2017-03-01-preview response: body: - string: '{"name":"c6f1b0de-c72e-4c4d-92de-5c63a343a01c","status":"InProgress","startTime":"2019-06-14T19:00:12.373Z"}' + string: '{"name":"0c73085c-5907-4d78-91cd-b599da0a434c","status":"InProgress","startTime":"2019-07-05T22:56:28.873Z"}' headers: cache-control: - no-cache @@ -4770,7 +5137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:00:28 GMT + - Fri, 05 Jul 2019 22:57:30 GMT expires: - '-1' pragma: @@ -4801,14 +5168,15 @@ interactions: - keep-alive ParameterSetName: - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c6f1b0de-c72e-4c4d-92de-5c63a343a01c?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0c73085c-5907-4d78-91cd-b599da0a434c?api-version=2017-03-01-preview response: body: - string: '{"name":"c6f1b0de-c72e-4c4d-92de-5c63a343a01c","status":"InProgress","startTime":"2019-06-14T19:00:12.373Z"}' + string: '{"name":"0c73085c-5907-4d78-91cd-b599da0a434c","status":"InProgress","startTime":"2019-07-05T22:56:28.873Z"}' headers: cache-control: - no-cache @@ -4817,7 +5185,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:00:43 GMT + - Fri, 05 Jul 2019 22:57:46 GMT expires: - '-1' pragma: @@ -4848,14 +5216,15 @@ interactions: - keep-alive ParameterSetName: - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c6f1b0de-c72e-4c4d-92de-5c63a343a01c?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0c73085c-5907-4d78-91cd-b599da0a434c?api-version=2017-03-01-preview response: body: - string: '{"name":"c6f1b0de-c72e-4c4d-92de-5c63a343a01c","status":"InProgress","startTime":"2019-06-14T19:00:12.373Z"}' + string: '{"name":"0c73085c-5907-4d78-91cd-b599da0a434c","status":"InProgress","startTime":"2019-07-05T22:56:28.873Z"}' headers: cache-control: - no-cache @@ -4864,7 +5233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:00:59 GMT + - Fri, 05 Jul 2019 22:58:01 GMT expires: - '-1' pragma: @@ -4895,14 +5264,15 @@ interactions: - keep-alive ParameterSetName: - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c6f1b0de-c72e-4c4d-92de-5c63a343a01c?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0c73085c-5907-4d78-91cd-b599da0a434c?api-version=2017-03-01-preview response: body: - string: '{"name":"c6f1b0de-c72e-4c4d-92de-5c63a343a01c","status":"InProgress","startTime":"2019-06-14T19:00:12.373Z"}' + string: '{"name":"0c73085c-5907-4d78-91cd-b599da0a434c","status":"InProgress","startTime":"2019-07-05T22:56:28.873Z"}' headers: cache-control: - no-cache @@ -4911,7 +5281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:01:14 GMT + - Fri, 05 Jul 2019 22:58:16 GMT expires: - '-1' pragma: @@ -4942,14 +5312,15 @@ interactions: - keep-alive ParameterSetName: - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c6f1b0de-c72e-4c4d-92de-5c63a343a01c?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0c73085c-5907-4d78-91cd-b599da0a434c?api-version=2017-03-01-preview response: body: - string: '{"name":"c6f1b0de-c72e-4c4d-92de-5c63a343a01c","status":"InProgress","startTime":"2019-06-14T19:00:12.373Z"}' + string: '{"name":"0c73085c-5907-4d78-91cd-b599da0a434c","status":"InProgress","startTime":"2019-07-05T22:56:28.873Z"}' headers: cache-control: - no-cache @@ -4958,7 +5329,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:01:29 GMT + - Fri, 05 Jul 2019 22:58:31 GMT expires: - '-1' pragma: @@ -4989,14 +5360,15 @@ interactions: - keep-alive ParameterSetName: - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c6f1b0de-c72e-4c4d-92de-5c63a343a01c?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0c73085c-5907-4d78-91cd-b599da0a434c?api-version=2017-03-01-preview response: body: - string: '{"name":"c6f1b0de-c72e-4c4d-92de-5c63a343a01c","status":"InProgress","startTime":"2019-06-14T19:00:12.373Z"}' + string: '{"name":"0c73085c-5907-4d78-91cd-b599da0a434c","status":"InProgress","startTime":"2019-07-05T22:56:28.873Z"}' headers: cache-control: - no-cache @@ -5005,7 +5377,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:01:44 GMT + - Fri, 05 Jul 2019 22:58:46 GMT expires: - '-1' pragma: @@ -5036,23 +5408,24 @@ interactions: - keep-alive ParameterSetName: - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c6f1b0de-c72e-4c4d-92de-5c63a343a01c?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0c73085c-5907-4d78-91cd-b599da0a434c?api-version=2017-03-01-preview response: body: - string: '{"name":"c6f1b0de-c72e-4c4d-92de-5c63a343a01c","status":"InProgress","startTime":"2019-06-14T19:00:12.373Z"}' + string: '{"name":"0c73085c-5907-4d78-91cd-b599da0a434c","status":"Succeeded","startTime":"2019-07-05T22:56:28.873Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:02:00 GMT + - Fri, 05 Jul 2019 22:59:02 GMT expires: - '-1' pragma: @@ -5083,23 +5456,24 @@ interactions: - keep-alive ParameterSetName: - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c6f1b0de-c72e-4c4d-92de-5c63a343a01c?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview response: body: - string: '{"name":"c6f1b0de-c72e-4c4d-92de-5c63a343a01c","status":"InProgress","startTime":"2019-06-14T19:00:12.373Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '108' + - '727' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:02:16 GMT + - Fri, 05 Jul 2019 22:59:02 GMT expires: - '-1' pragma: @@ -5130,23 +5504,26 @@ interactions: - keep-alive ParameterSetName: - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c6f1b0de-c72e-4c4d-92de-5c63a343a01c?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview response: body: - string: '{"name":"c6f1b0de-c72e-4c4d-92de-5c63a343a01c","status":"InProgress","startTime":"2019-06-14T19:00:12.373Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '108' + - '727' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:02:31 GMT + - Fri, 05 Jul 2019 22:59:02 GMT expires: - '-1' pragma: @@ -5172,28 +5549,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm add-to-group Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c6f1b0de-c72e-4c4d-92de-5c63a343a01c?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview response: body: - string: '{"name":"c6f1b0de-c72e-4c4d-92de-5c63a343a01c","status":"InProgress","startTime":"2019-06-14T19:00:12.373Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '108' + - '727' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:02:47 GMT + - Fri, 05 Jul 2019 22:59:03 GMT expires: - '-1' pragma: @@ -5212,35 +5591,49 @@ interactions: code: 200 message: OK - request: - body: null + body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003", + "sqlImageOffer": "SQL2017-WS2016", "sqlServerLicenseType": "PAYG", "sqlManagement": + "Full", "sqlImageSku": "Enterprise", "sqlVirtualMachineGroupResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/cligroup", + "wsfcDomainCredentials": {"clusterBootstrapAccountPassword": "SecretPassword123", + "clusterOperatorAccountPassword": "SecretPassword123", "sqlServiceAccountPassword": + "SecretPassword123"}}}\''''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm add-to-group Connection: - keep-alive + Content-Length: + - '846' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c6f1b0de-c72e-4c4d-92de-5c63a343a01c?api-version=2017-03-01-preview + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview response: body: - string: '{"name":"c6f1b0de-c72e-4c4d-92de-5c63a343a01c","status":"InProgress","startTime":"2019-06-14T19:00:12.373Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Updating","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Enterprise","sqlVirtualMachineGroupResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/cligroup"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '108' + - '944' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:03:02 GMT + - Fri, 05 Jul 2019 22:59:05 GMT expires: - '-1' pragma: @@ -5255,6 +5648,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -5266,19 +5661,19 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm add-to-group Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c6f1b0de-c72e-4c4d-92de-5c63a343a01c?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"c6f1b0de-c72e-4c4d-92de-5c63a343a01c","status":"InProgress","startTime":"2019-06-14T19:00:12.373Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache @@ -5287,7 +5682,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:03:17 GMT + - Fri, 05 Jul 2019 22:59:20 GMT expires: - '-1' pragma: @@ -5313,19 +5708,19 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm add-to-group Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c6f1b0de-c72e-4c4d-92de-5c63a343a01c?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"c6f1b0de-c72e-4c4d-92de-5c63a343a01c","status":"InProgress","startTime":"2019-06-14T19:00:12.373Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache @@ -5334,7 +5729,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:03:32 GMT + - Fri, 05 Jul 2019 22:59:36 GMT expires: - '-1' pragma: @@ -5360,19 +5755,19 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm add-to-group Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c6f1b0de-c72e-4c4d-92de-5c63a343a01c?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"c6f1b0de-c72e-4c4d-92de-5c63a343a01c","status":"InProgress","startTime":"2019-06-14T19:00:12.373Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache @@ -5381,7 +5776,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:03:48 GMT + - Fri, 05 Jul 2019 22:59:51 GMT expires: - '-1' pragma: @@ -5407,19 +5802,19 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm add-to-group Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c6f1b0de-c72e-4c4d-92de-5c63a343a01c?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"c6f1b0de-c72e-4c4d-92de-5c63a343a01c","status":"InProgress","startTime":"2019-06-14T19:00:12.373Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache @@ -5428,7 +5823,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:04:04 GMT + - Fri, 05 Jul 2019 23:00:06 GMT expires: - '-1' pragma: @@ -5454,19 +5849,19 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm add-to-group Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c6f1b0de-c72e-4c4d-92de-5c63a343a01c?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"c6f1b0de-c72e-4c4d-92de-5c63a343a01c","status":"InProgress","startTime":"2019-06-14T19:00:12.373Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache @@ -5475,7 +5870,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:04:18 GMT + - Fri, 05 Jul 2019 23:00:22 GMT expires: - '-1' pragma: @@ -5501,19 +5896,19 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm add-to-group Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c6f1b0de-c72e-4c4d-92de-5c63a343a01c?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"c6f1b0de-c72e-4c4d-92de-5c63a343a01c","status":"InProgress","startTime":"2019-06-14T19:00:12.373Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache @@ -5522,7 +5917,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:04:33 GMT + - Fri, 05 Jul 2019 23:00:36 GMT expires: - '-1' pragma: @@ -5548,28 +5943,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm add-to-group Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c6f1b0de-c72e-4c4d-92de-5c63a343a01c?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"c6f1b0de-c72e-4c4d-92de-5c63a343a01c","status":"Succeeded","startTime":"2019-06-14T19:00:12.373Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:04:49 GMT + - Fri, 05 Jul 2019 23:00:52 GMT expires: - '-1' pragma: @@ -5595,28 +5990,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm add-to-group Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '704' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:04:49 GMT + - Fri, 05 Jul 2019 23:01:07 GMT expires: - '-1' pragma: @@ -5642,30 +6037,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm add-to-group Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-pwd --sql-auth-update-username + - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '704' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:04:50 GMT + - Fri, 05 Jul 2019 23:01:23 GMT expires: - '-1' pragma: @@ -5697,24 +6090,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '704' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:04:50 GMT + - Fri, 05 Jul 2019 23:01:37 GMT expires: - '-1' pragma: @@ -5733,13 +6124,7 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003", - "sqlServerLicenseType": "PAYG", "sqlImageSku": "Enterprise", "sqlVirtualMachineGroupResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/cligroup", - "wsfcDomainCredentials": {"clusterBootstrapAccountPassword": "SecretPassword123", - "clusterOperatorAccountPassword": "SecretPassword123", "sqlServiceAccountPassword": - "SecretPassword123"}}}\''''' + body: null headers: Accept: - application/json @@ -5749,33 +6134,25 @@ interactions: - sql vm add-to-group Connection: - keep-alive - Content-Length: - - '786' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Updating","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise","sqlVirtualMachineGroupResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/cligroup"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '921' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:04:52 GMT + - Fri, 05 Jul 2019 23:01:53 GMT expires: - '-1' pragma: @@ -5790,8 +6167,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: code: 200 message: OK @@ -5809,22 +6184,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:05:08 GMT + - Fri, 05 Jul 2019 23:02:08 GMT expires: - '-1' pragma: @@ -5856,22 +6231,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:05:23 GMT + - Fri, 05 Jul 2019 23:02:23 GMT expires: - '-1' pragma: @@ -5903,22 +6278,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:05:39 GMT + - Fri, 05 Jul 2019 23:02:38 GMT expires: - '-1' pragma: @@ -5950,22 +6325,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:05:53 GMT + - Fri, 05 Jul 2019 23:02:54 GMT expires: - '-1' pragma: @@ -5997,22 +6372,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:06:09 GMT + - Fri, 05 Jul 2019 23:03:09 GMT expires: - '-1' pragma: @@ -6044,22 +6419,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:06:24 GMT + - Fri, 05 Jul 2019 23:03:24 GMT expires: - '-1' pragma: @@ -6091,22 +6466,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:06:39 GMT + - Fri, 05 Jul 2019 23:03:39 GMT expires: - '-1' pragma: @@ -6138,22 +6513,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:06:54 GMT + - Fri, 05 Jul 2019 23:03:54 GMT expires: - '-1' pragma: @@ -6185,22 +6560,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:07:10 GMT + - Fri, 05 Jul 2019 23:04:10 GMT expires: - '-1' pragma: @@ -6232,22 +6607,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:07:25 GMT + - Fri, 05 Jul 2019 23:04:26 GMT expires: - '-1' pragma: @@ -6279,22 +6654,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:07:41 GMT + - Fri, 05 Jul 2019 23:04:41 GMT expires: - '-1' pragma: @@ -6326,22 +6701,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:07:56 GMT + - Fri, 05 Jul 2019 23:04:56 GMT expires: - '-1' pragma: @@ -6373,22 +6748,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:08:11 GMT + - Fri, 05 Jul 2019 23:05:11 GMT expires: - '-1' pragma: @@ -6420,22 +6795,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:08:26 GMT + - Fri, 05 Jul 2019 23:05:27 GMT expires: - '-1' pragma: @@ -6467,22 +6842,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:08:42 GMT + - Fri, 05 Jul 2019 23:05:42 GMT expires: - '-1' pragma: @@ -6514,22 +6889,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:08:57 GMT + - Fri, 05 Jul 2019 23:05:57 GMT expires: - '-1' pragma: @@ -6561,22 +6936,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:09:13 GMT + - Fri, 05 Jul 2019 23:06:12 GMT expires: - '-1' pragma: @@ -6608,22 +6983,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:09:27 GMT + - Fri, 05 Jul 2019 23:06:27 GMT expires: - '-1' pragma: @@ -6655,22 +7030,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:09:43 GMT + - Fri, 05 Jul 2019 23:06:43 GMT expires: - '-1' pragma: @@ -6702,22 +7077,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:09:58 GMT + - Fri, 05 Jul 2019 23:06:58 GMT expires: - '-1' pragma: @@ -6749,22 +7124,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:10:14 GMT + - Fri, 05 Jul 2019 23:07:13 GMT expires: - '-1' pragma: @@ -6796,22 +7171,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"InProgress","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:10:29 GMT + - Fri, 05 Jul 2019 23:07:29 GMT expires: - '-1' pragma: @@ -6843,22 +7218,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/f4c23eaa-bd19-4a70-9717-efcf121e92fd?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"name":"f4c23eaa-bd19-4a70-9717-efcf121e92fd","status":"Succeeded","startTime":"2019-07-05T22:59:04.753Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:10:44 GMT + - Fri, 05 Jul 2019 23:07:44 GMT expires: - '-1' pragma: @@ -6890,22 +7265,22 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Enterprise","sqlVirtualMachineGroupResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/cligroup"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '104' + - '978' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:11:00 GMT + - Fri, 05 Jul 2019 23:07:44 GMT expires: - '-1' pragma: @@ -6937,22 +7312,24 @@ interactions: ParameterSetName: - -n -g -r -p -s -b User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"InProgress","startTime":"2019-06-14T19:04:52Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Enterprise","sqlVirtualMachineGroupResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/cligroup"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '104' + - '978' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:11:15 GMT + - Fri, 05 Jul 2019 23:07:46 GMT expires: - '-1' pragma: @@ -6978,28 +7355,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm add-to-group + - sql vm remove-from-group Connection: - keep-alive ParameterSetName: - - -n -g -r -p -s -b + - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/9218c5ec-1365-4cd4-8f24-fed3d36ea3b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview response: body: - string: '{"name":"9218c5ec-1365-4cd4-8f24-fed3d36ea3b8","status":"Succeeded","startTime":"2019-06-14T19:04:52Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Enterprise","sqlVirtualMachineGroupResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/cligroup"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '103' + - '978' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:11:30 GMT + - Fri, 05 Jul 2019 23:07:46 GMT expires: - '-1' pragma: @@ -7018,35 +7397,46 @@ interactions: code: 200 message: OK - request: - body: null + body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003", + "sqlImageOffer": "SQL2017-WS2016", "sqlServerLicenseType": "PAYG", "sqlManagement": + "Full", "sqlImageSku": "Enterprise"}}\''''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - sql vm add-to-group + - sql vm remove-from-group Connection: - keep-alive + Content-Length: + - '405' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -n -g -r -p -s -b + - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise","sqlVirtualMachineGroupResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/cligroup"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Updating","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/0e8f9902-6d2b-4626-8dd8-b4d579afdf80?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '955' + - '693' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:11:30 GMT + - Fri, 05 Jul 2019 23:07:48 GMT expires: - '-1' pragma: @@ -7061,6 +7451,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -7072,30 +7464,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm add-to-group + - sql vm remove-from-group Connection: - keep-alive ParameterSetName: - - -n -g -r -p -s -b + - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/0e8f9902-6d2b-4626-8dd8-b4d579afdf80?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise","sqlVirtualMachineGroupResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/cligroup"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"0e8f9902-6d2b-4626-8dd8-b4d579afdf80","status":"InProgress","startTime":"2019-07-05T23:07:47.523Z"}' headers: cache-control: - no-cache content-length: - - '955' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:11:32 GMT + - Fri, 05 Jul 2019 23:08:03 GMT expires: - '-1' pragma: @@ -7127,24 +7517,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/0e8f9902-6d2b-4626-8dd8-b4d579afdf80?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise","sqlVirtualMachineGroupResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/cligroup"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"0e8f9902-6d2b-4626-8dd8-b4d579afdf80","status":"InProgress","startTime":"2019-07-05T23:07:47.523Z"}' headers: cache-control: - no-cache content-length: - - '955' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:11:32 GMT + - Fri, 05 Jul 2019 23:08:19 GMT expires: - '-1' pragma: @@ -7163,9 +7551,7 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003", - "sqlServerLicenseType": "PAYG", "sqlImageSku": "Enterprise"}}\''''' + body: null headers: Accept: - application/json @@ -7175,33 +7561,25 @@ interactions: - sql vm remove-from-group Connection: - keep-alive - Content-Length: - - '345' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/0e8f9902-6d2b-4626-8dd8-b4d579afdf80?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Updating","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"0e8f9902-6d2b-4626-8dd8-b4d579afdf80","status":"InProgress","startTime":"2019-07-05T23:07:47.523Z"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/ce38486f-7a47-4390-b56b-e117e1e8b12e?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '670' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:11:34 GMT + - Fri, 05 Jul 2019 23:08:33 GMT expires: - '-1' pragma: @@ -7216,8 +7594,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -7235,22 +7611,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/ce38486f-7a47-4390-b56b-e117e1e8b12e?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/0e8f9902-6d2b-4626-8dd8-b4d579afdf80?api-version=2017-03-01-preview response: body: - string: '{"name":"ce38486f-7a47-4390-b56b-e117e1e8b12e","status":"InProgress","startTime":"2019-06-14T19:11:33.61Z"}' + string: '{"name":"0e8f9902-6d2b-4626-8dd8-b4d579afdf80","status":"InProgress","startTime":"2019-07-05T23:07:47.523Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:11:49 GMT + - Fri, 05 Jul 2019 23:08:48 GMT expires: - '-1' pragma: @@ -7282,22 +7658,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/ce38486f-7a47-4390-b56b-e117e1e8b12e?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/0e8f9902-6d2b-4626-8dd8-b4d579afdf80?api-version=2017-03-01-preview response: body: - string: '{"name":"ce38486f-7a47-4390-b56b-e117e1e8b12e","status":"InProgress","startTime":"2019-06-14T19:11:33.61Z"}' + string: '{"name":"0e8f9902-6d2b-4626-8dd8-b4d579afdf80","status":"InProgress","startTime":"2019-07-05T23:07:47.523Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:12:04 GMT + - Fri, 05 Jul 2019 23:09:04 GMT expires: - '-1' pragma: @@ -7329,22 +7705,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/ce38486f-7a47-4390-b56b-e117e1e8b12e?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/0e8f9902-6d2b-4626-8dd8-b4d579afdf80?api-version=2017-03-01-preview response: body: - string: '{"name":"ce38486f-7a47-4390-b56b-e117e1e8b12e","status":"InProgress","startTime":"2019-06-14T19:11:33.61Z"}' + string: '{"name":"0e8f9902-6d2b-4626-8dd8-b4d579afdf80","status":"InProgress","startTime":"2019-07-05T23:07:47.523Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:12:20 GMT + - Fri, 05 Jul 2019 23:09:20 GMT expires: - '-1' pragma: @@ -7376,22 +7752,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/ce38486f-7a47-4390-b56b-e117e1e8b12e?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/0e8f9902-6d2b-4626-8dd8-b4d579afdf80?api-version=2017-03-01-preview response: body: - string: '{"name":"ce38486f-7a47-4390-b56b-e117e1e8b12e","status":"InProgress","startTime":"2019-06-14T19:11:33.61Z"}' + string: '{"name":"0e8f9902-6d2b-4626-8dd8-b4d579afdf80","status":"InProgress","startTime":"2019-07-05T23:07:47.523Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:12:35 GMT + - Fri, 05 Jul 2019 23:09:35 GMT expires: - '-1' pragma: @@ -7423,22 +7799,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/ce38486f-7a47-4390-b56b-e117e1e8b12e?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/0e8f9902-6d2b-4626-8dd8-b4d579afdf80?api-version=2017-03-01-preview response: body: - string: '{"name":"ce38486f-7a47-4390-b56b-e117e1e8b12e","status":"InProgress","startTime":"2019-06-14T19:11:33.61Z"}' + string: '{"name":"0e8f9902-6d2b-4626-8dd8-b4d579afdf80","status":"InProgress","startTime":"2019-07-05T23:07:47.523Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:12:50 GMT + - Fri, 05 Jul 2019 23:09:50 GMT expires: - '-1' pragma: @@ -7470,22 +7846,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/ce38486f-7a47-4390-b56b-e117e1e8b12e?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/0e8f9902-6d2b-4626-8dd8-b4d579afdf80?api-version=2017-03-01-preview response: body: - string: '{"name":"ce38486f-7a47-4390-b56b-e117e1e8b12e","status":"InProgress","startTime":"2019-06-14T19:11:33.61Z"}' + string: '{"name":"0e8f9902-6d2b-4626-8dd8-b4d579afdf80","status":"InProgress","startTime":"2019-07-05T23:07:47.523Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:13:06 GMT + - Fri, 05 Jul 2019 23:10:05 GMT expires: - '-1' pragma: @@ -7517,22 +7893,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/ce38486f-7a47-4390-b56b-e117e1e8b12e?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/0e8f9902-6d2b-4626-8dd8-b4d579afdf80?api-version=2017-03-01-preview response: body: - string: '{"name":"ce38486f-7a47-4390-b56b-e117e1e8b12e","status":"InProgress","startTime":"2019-06-14T19:11:33.61Z"}' + string: '{"name":"0e8f9902-6d2b-4626-8dd8-b4d579afdf80","status":"InProgress","startTime":"2019-07-05T23:07:47.523Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:13:21 GMT + - Fri, 05 Jul 2019 23:10:20 GMT expires: - '-1' pragma: @@ -7564,22 +7940,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/ce38486f-7a47-4390-b56b-e117e1e8b12e?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/0e8f9902-6d2b-4626-8dd8-b4d579afdf80?api-version=2017-03-01-preview response: body: - string: '{"name":"ce38486f-7a47-4390-b56b-e117e1e8b12e","status":"InProgress","startTime":"2019-06-14T19:11:33.61Z"}' + string: '{"name":"0e8f9902-6d2b-4626-8dd8-b4d579afdf80","status":"InProgress","startTime":"2019-07-05T23:07:47.523Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:13:36 GMT + - Fri, 05 Jul 2019 23:10:36 GMT expires: - '-1' pragma: @@ -7611,22 +7987,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/ce38486f-7a47-4390-b56b-e117e1e8b12e?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/0e8f9902-6d2b-4626-8dd8-b4d579afdf80?api-version=2017-03-01-preview response: body: - string: '{"name":"ce38486f-7a47-4390-b56b-e117e1e8b12e","status":"InProgress","startTime":"2019-06-14T19:11:33.61Z"}' + string: '{"name":"0e8f9902-6d2b-4626-8dd8-b4d579afdf80","status":"InProgress","startTime":"2019-07-05T23:07:47.523Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:13:52 GMT + - Fri, 05 Jul 2019 23:10:51 GMT expires: - '-1' pragma: @@ -7658,22 +8034,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/ce38486f-7a47-4390-b56b-e117e1e8b12e?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/0e8f9902-6d2b-4626-8dd8-b4d579afdf80?api-version=2017-03-01-preview response: body: - string: '{"name":"ce38486f-7a47-4390-b56b-e117e1e8b12e","status":"InProgress","startTime":"2019-06-14T19:11:33.61Z"}' + string: '{"name":"0e8f9902-6d2b-4626-8dd8-b4d579afdf80","status":"InProgress","startTime":"2019-07-05T23:07:47.523Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:14:07 GMT + - Fri, 05 Jul 2019 23:11:06 GMT expires: - '-1' pragma: @@ -7705,22 +8081,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/ce38486f-7a47-4390-b56b-e117e1e8b12e?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/0e8f9902-6d2b-4626-8dd8-b4d579afdf80?api-version=2017-03-01-preview response: body: - string: '{"name":"ce38486f-7a47-4390-b56b-e117e1e8b12e","status":"InProgress","startTime":"2019-06-14T19:11:33.61Z"}' + string: '{"name":"0e8f9902-6d2b-4626-8dd8-b4d579afdf80","status":"InProgress","startTime":"2019-07-05T23:07:47.523Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:14:22 GMT + - Fri, 05 Jul 2019 23:11:21 GMT expires: - '-1' pragma: @@ -7752,22 +8128,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/ce38486f-7a47-4390-b56b-e117e1e8b12e?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/0e8f9902-6d2b-4626-8dd8-b4d579afdf80?api-version=2017-03-01-preview response: body: - string: '{"name":"ce38486f-7a47-4390-b56b-e117e1e8b12e","status":"InProgress","startTime":"2019-06-14T19:11:33.61Z"}' + string: '{"name":"0e8f9902-6d2b-4626-8dd8-b4d579afdf80","status":"InProgress","startTime":"2019-07-05T23:07:47.523Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:14:38 GMT + - Fri, 05 Jul 2019 23:11:37 GMT expires: - '-1' pragma: @@ -7799,22 +8175,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/ce38486f-7a47-4390-b56b-e117e1e8b12e?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/0e8f9902-6d2b-4626-8dd8-b4d579afdf80?api-version=2017-03-01-preview response: body: - string: '{"name":"ce38486f-7a47-4390-b56b-e117e1e8b12e","status":"InProgress","startTime":"2019-06-14T19:11:33.61Z"}' + string: '{"name":"0e8f9902-6d2b-4626-8dd8-b4d579afdf80","status":"InProgress","startTime":"2019-07-05T23:07:47.523Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:14:52 GMT + - Fri, 05 Jul 2019 23:11:52 GMT expires: - '-1' pragma: @@ -7846,22 +8222,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/ce38486f-7a47-4390-b56b-e117e1e8b12e?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/0e8f9902-6d2b-4626-8dd8-b4d579afdf80?api-version=2017-03-01-preview response: body: - string: '{"name":"ce38486f-7a47-4390-b56b-e117e1e8b12e","status":"Succeeded","startTime":"2019-06-14T19:11:33.61Z"}' + string: '{"name":"0e8f9902-6d2b-4626-8dd8-b4d579afdf80","status":"InProgress","startTime":"2019-07-05T23:07:47.523Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:15:08 GMT + - Fri, 05 Jul 2019 23:12:07 GMT expires: - '-1' pragma: @@ -7893,22 +8269,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/0e8f9902-6d2b-4626-8dd8-b4d579afdf80?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"0e8f9902-6d2b-4626-8dd8-b4d579afdf80","status":"Succeeded","startTime":"2019-07-05T23:07:47.523Z"}' headers: cache-control: - no-cache content-length: - - '704' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:15:08 GMT + - Fri, 05 Jul 2019 23:12:22 GMT expires: - '-1' pragma: @@ -7940,24 +8316,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '704' + - '727' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:15:09 GMT + - Fri, 05 Jul 2019 23:12:22 GMT expires: - '-1' pragma: @@ -7983,43 +8357,45 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - group delete + - sql vm remove-from-group Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --name --yes --no-wait + - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview response: body: - string: '' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '0' + - '727' + content-type: + - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 19:15:10 GMT + - Fri, 05 Jul 2019 23:12:24 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdOVkVSVTZCWDZEUTRWS1VJRUI2WkdNNEJFMjNZV1ZDQVpMU3w1RkE3OEE0QzNCQUJCRkRBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 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-subscription-deletes: - - '14999' status: - code: 202 - message: Accepted + code: 200 + message: OK version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_create_and_delete.yaml b/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_create_and_delete.yaml index 87bb3795959..6d2adff8f99 100644 --- a/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_create_and_delete.yaml +++ b/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_create_and_delete.yaml @@ -1,54 +1,4 @@ interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-06-14T18:30:57Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001?api-version=2018-05-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001","name":"sqlvm_cli_test_create000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-14T18:30:57Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Jun 2019 18:31:00 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created - request: body: null headers: @@ -63,16 +13,16 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2017-WS2016/skus/Enterprise/versions?$top=1&$orderby=name%20desc&api-version=2019-03-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.190409\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190409\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.190611\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190611\"\r\n \ }\r\n]" headers: cache-control: @@ -82,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:31:00 GMT + - Fri, 05 Jul 2019 21:27:19 GMT expires: - '-1' pragma: @@ -115,12 +65,12 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2017-WS2016/skus/Enterprise/versions/14.1.190409?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2017-WS2016/skus/Enterprise/versions/14.1.190611?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": @@ -128,7 +78,7 @@ interactions: \ },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \ \"sizeInGb\": 128\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n - \ \"location\": \"westus\",\r\n \"name\": \"14.1.190409\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190409\"\r\n}" + \ \"location\": \"westus\",\r\n \"name\": \"14.1.190611\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190611\"\r\n}" headers: cache-control: - no-cache @@ -137,7 +87,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:31:00 GMT + - Fri, 05 Jul 2019 21:27:18 GMT expires: - '-1' pragma: @@ -170,8 +120,8 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 networkmanagementclient/3.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 networkmanagementclient/3.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -187,7 +137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:31:02 GMT + - Fri, 05 Jul 2019 21:27:19 GMT expires: - '-1' pragma: @@ -215,8 +165,8 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -244,6 +194,15 @@ interactions: \ {\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_DS1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n @@ -493,9 +452,15 @@ interactions: \ },\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\": + 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\": 1638400,\r\n \"memoryInMB\": 262144,\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 @@ -517,6 +482,9 @@ interactions: \ },\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_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 @@ -562,6 +530,9 @@ interactions: \ },\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 @@ -691,6 +662,9 @@ interactions: \ },\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 @@ -763,25 +737,16 @@ interactions: \ },\r\n {\r\n \"name\": \"Standard_NV48s_v3\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\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}" headers: cache-control: - no-cache content-length: - - '37831' + - '38880' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:31:02 GMT + - Fri, 05 Jul 2019 21:27:20 GMT expires: - '-1' pragma: @@ -852,26 +817,26 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/vm_deploy_YElsrl14K6Ubx3hEdxPioeFLzAk86NUk","name":"vm_deploy_YElsrl14K6Ubx3hEdxPioeFLzAk86NUk","properties":{"templateHash":"12236764259223421714","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-06-14T18:31:04.2570448Z","duration":"PT0.6820715S","correlationId":"0eabb650-5339-46ed-863f-1bc18dd7b68c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clisqlvm000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000002PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000002"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/vm_deploy_PaXixiXr3Ml6OmNaB4r1oocqfjarRVIW","name":"vm_deploy_PaXixiXr3Ml6OmNaB4r1oocqfjarRVIW","properties":{"templateHash":"511584932192543804","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-07-05T21:27:22.5931299Z","duration":"PT0.6735818S","correlationId":"2bcb49e7-81e3-428f-8fd9-7cf70240e243","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clisqlvm000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000002PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000002"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/vm_deploy_YElsrl14K6Ubx3hEdxPioeFLzAk86NUk/operationStatuses/08586410698219026548?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/vm_deploy_PaXixiXr3Ml6OmNaB4r1oocqfjarRVIW/operationStatuses/08586392448435580776?api-version=2018-05-01 cache-control: - no-cache content-length: - - '2885' + - '2883' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:31:04 GMT + - Fri, 05 Jul 2019 21:27:22 GMT expires: - '-1' pragma: @@ -881,7 +846,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -899,10 +864,96 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392448435580776?api-version=2018-05-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jul 2019 21:27:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -l -g -n --admin-username --admin-password --image --size + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392448435580776?api-version=2018-05-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jul 2019 21:28:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -l -g -n --admin-username --admin-password --image --size + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698219026548?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392448435580776?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -914,7 +965,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:31:34 GMT + - Fri, 05 Jul 2019 21:28:53 GMT expires: - '-1' pragma: @@ -942,10 +993,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698219026548?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392448435580776?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -957,7 +1008,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:32:04 GMT + - Fri, 05 Jul 2019 21:29:23 GMT expires: - '-1' pragma: @@ -985,10 +1036,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698219026548?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392448435580776?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1000,7 +1051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:32:34 GMT + - Fri, 05 Jul 2019 21:29:54 GMT expires: - '-1' pragma: @@ -1028,10 +1079,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698219026548?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392448435580776?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1043,7 +1094,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:33:05 GMT + - Fri, 05 Jul 2019 21:30:23 GMT expires: - '-1' pragma: @@ -1071,10 +1122,96 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698219026548?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392448435580776?api-version=2018-05-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jul 2019 21:30:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -l -g -n --admin-username --admin-password --image --size + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392448435580776?api-version=2018-05-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jul 2019 21:31:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -l -g -n --admin-username --admin-password --image --size + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392448435580776?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -1086,7 +1223,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:33:35 GMT + - Fri, 05 Jul 2019 21:31:54 GMT expires: - '-1' pragma: @@ -1114,22 +1251,22 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/vm_deploy_YElsrl14K6Ubx3hEdxPioeFLzAk86NUk","name":"vm_deploy_YElsrl14K6Ubx3hEdxPioeFLzAk86NUk","properties":{"templateHash":"12236764259223421714","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-06-14T18:33:22.7620742Z","duration":"PT2M19.1871009S","correlationId":"0eabb650-5339-46ed-863f-1bc18dd7b68c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clisqlvm000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000002PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000002"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/vm_deploy_PaXixiXr3Ml6OmNaB4r1oocqfjarRVIW","name":"vm_deploy_PaXixiXr3Ml6OmNaB4r1oocqfjarRVIW","properties":{"templateHash":"511584932192543804","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-07-05T21:31:52.8661287Z","duration":"PT4M30.9465806S","correlationId":"2bcb49e7-81e3-428f-8fd9-7cf70240e243","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clisqlvm000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000002PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000002"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET"}]}}' headers: cache-control: - no-cache content-length: - - '4012' + - '4010' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:33:35 GMT + - Fri, 05 Jul 2019 21:31:54 GMT expires: - '-1' pragma: @@ -1157,23 +1294,23 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002?$expand=instanceView&api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"c304e689-98c1-4224-93ae-6a2251436422\",\r\n + string: "{\r\n \"properties\": {\r\n \"vmId\": \"79e5f7f4-d554-4c94-8783-1e33c130311a\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftSQLServer\",\r\n \"offer\": \"SQL2017-WS2016\",\r\n \"sku\": \"Enterprise\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Windows\",\r\n \"name\": \"clisqlvm000002_OsDisk_1_da445dd43e824d8a88de28dc55cf5c2b\",\r\n + {\r\n \"osType\": \"Windows\",\r\n \"name\": \"clisqlvm000002_OsDisk_1_d0948bb003e144dcaeec7b3921879cb4\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/disks/clisqlvm000002_OsDisk_1_da445dd43e824d8a88de28dc55cf5c2b\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/disks/clisqlvm000002_OsDisk_1_d0948bb003e144dcaeec7b3921879cb4\"\r\n \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000002\",\r\n \ \"adminUsername\": \"admin123\",\r\n \"windowsConfiguration\": @@ -1186,16 +1323,16 @@ interactions: \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet - populated.\",\r\n \"time\": \"2019-06-14T18:33:36+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2019-07-05T21:31:56+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clisqlvm000002_OsDisk_1_da445dd43e824d8a88de28dc55cf5c2b\",\r\n \"statuses\": + \"clisqlvm000002_OsDisk_1_d0948bb003e144dcaeec7b3921879cb4\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2019-06-14T18:31:14.2078008+00:00\"\r\n + succeeded\",\r\n \"time\": \"2019-07-05T21:27:59.5382806+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\": \"2019-06-14T18:33:22.3531745+00:00\"\r\n + succeeded\",\r\n \"time\": \"2019-07-05T21:31:51.7595529+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 \"type\": \"Microsoft.Compute/virtualMachines\",\r\n @@ -1209,7 +1346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:33:35 GMT + - Fri, 05 Jul 2019 21:31:55 GMT expires: - '-1' pragma: @@ -1226,7 +1363,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31995 + - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31982 status: code: 200 message: OK @@ -1244,8 +1381,8 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 networkmanagementclient/3.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 networkmanagementclient/3.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -1253,12 +1390,12 @@ interactions: response: body: string: "{\r\n \"name\": \"clisqlvm000002VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic\",\r\n - \ \"etag\": \"W/\\\"ec01ec13-2388-4e33-8abf-2b37cd339fe6\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"b7b3c3da-abdc-48f4-85e7-77ac7c094b5b\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"82be84bd-e61d-4c58-bde4-bdaa4e13cd28\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"c7422cd2-2bd6-4e26-85a6-b10679cbde2a\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigclisqlvm000002\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic/ipConfigurations/ipconfigclisqlvm000002\",\r\n - \ \"etag\": \"W/\\\"ec01ec13-2388-4e33-8abf-2b37cd339fe6\\\"\",\r\n + \ \"etag\": \"W/\\\"b7b3c3da-abdc-48f4-85e7-77ac7c094b5b\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1267,8 +1404,8 @@ interactions: \ },\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\": - \"2h0rw2sui5iu5mc5oi3cqqxwch.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-34-CD-EB\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"sqj13mkqrsfure3wjvw02hazxc.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-30-9C-EC\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -1282,9 +1419,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:33:36 GMT + - Fri, 05 Jul 2019 21:31:55 GMT etag: - - W/"ec01ec13-2388-4e33-8abf-2b37cd339fe6" + - W/"b7b3c3da-abdc-48f4-85e7-77ac7c094b5b" expires: - '-1' pragma: @@ -1317,8 +1454,8 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 networkmanagementclient/3.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 networkmanagementclient/3.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -1326,11 +1463,11 @@ interactions: response: body: string: "{\r\n \"name\": \"clisqlvm000002PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP\",\r\n - \ \"etag\": \"W/\\\"0befe6c7-e949-4148-9452-259a15abf2ab\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"2318ae51-6842-4656-a683-4ea617afc751\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"3b289dc7-0c6b-4410-9079-8e5c4c3dfb54\",\r\n - \ \"ipAddress\": \"40.78.120.129\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n - \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"17cd913f-a3ec-4704-b61d-58520d720308\",\r\n + \ \"ipAddress\": \"137.117.17.181\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic/ipConfigurations/ipconfigclisqlvm000002\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n @@ -1339,13 +1476,13 @@ interactions: cache-control: - no-cache content-length: - - '1070' + - '1071' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:33:37 GMT + - Fri, 05 Jul 2019 21:31:57 GMT etag: - - W/"0befe6c7-e949-4148-9452-259a15abf2ab" + - W/"2318ae51-6842-4656-a683-4ea617afc751" expires: - '-1' pragma: @@ -1378,16 +1515,16 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2017-WS2016/skus/Enterprise/versions?$top=1&$orderby=name%20desc&api-version=2019-03-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.190409\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190409\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.190611\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190611\"\r\n \ }\r\n]" headers: cache-control: @@ -1397,7 +1534,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:33:38 GMT + - Fri, 05 Jul 2019 21:31:57 GMT expires: - '-1' pragma: @@ -1430,12 +1567,12 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2017-WS2016/skus/Enterprise/versions/14.1.190409?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2017-WS2016/skus/Enterprise/versions/14.1.190611?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": @@ -1443,7 +1580,7 @@ interactions: \ },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \ \"sizeInGb\": 128\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n - \ \"location\": \"westus\",\r\n \"name\": \"14.1.190409\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190409\"\r\n}" + \ \"location\": \"westus\",\r\n \"name\": \"14.1.190611\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190611\"\r\n}" headers: cache-control: - no-cache @@ -1452,7 +1589,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:33:38 GMT + - Fri, 05 Jul 2019 21:31:57 GMT expires: - '-1' pragma: @@ -1485,8 +1622,8 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 networkmanagementclient/3.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 networkmanagementclient/3.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -1495,14 +1632,14 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"clisqlvm000002VNET\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET\",\r\n - \ \"etag\": \"W/\\\"c5fe34ff-1f76-4d96-b495-8afc2cec72f8\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c87f2e2d-e1ec-4b09-a399-0428023ff19b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"721bf5e1-4754-4fd1-b05f-723a2842f617\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"b1be1394-8c50-488b-93b6-4d6dae1c19ba\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"clisqlvm000002Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET/subnets/clisqlvm000002Subnet\",\r\n - \ \"etag\": \"W/\\\"c5fe34ff-1f76-4d96-b495-8afc2cec72f8\\\"\",\r\n + \ \"etag\": \"W/\\\"c87f2e2d-e1ec-4b09-a399-0428023ff19b\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic/ipConfigurations/ipconfigclisqlvm000002\"\r\n @@ -1518,7 +1655,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:33:38 GMT + - Fri, 05 Jul 2019 21:31:58 GMT expires: - '-1' pragma: @@ -1551,8 +1688,8 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -1580,6 +1717,15 @@ interactions: \ {\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_DS1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n @@ -1829,9 +1975,15 @@ interactions: \ },\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\": + 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\": 1638400,\r\n \"memoryInMB\": 262144,\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 @@ -1853,6 +2005,9 @@ interactions: \ },\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_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 @@ -1898,6 +2053,9 @@ interactions: \ },\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 @@ -2027,6 +2185,9 @@ interactions: \ },\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 @@ -2099,25 +2260,16 @@ interactions: \ },\r\n {\r\n \"name\": \"Standard_NV48s_v3\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\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}" headers: cache-control: - no-cache content-length: - - '37831' + - '38880' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:33:39 GMT + - Fri, 05 Jul 2019 21:31:58 GMT expires: - '-1' pragma: @@ -2134,7 +2286,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetSubscriptionInfo3Min;417 + - Microsoft.Compute/GetSubscriptionInfo3Min;419 status: code: 200 message: OK @@ -2184,18 +2336,18 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/vm_deploy_QBcyZlhQyCta76EnnVkzzfSlNyBXkDHv","name":"vm_deploy_QBcyZlhQyCta76EnnVkzzfSlNyBXkDHv","properties":{"templateHash":"17462381896220469536","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-06-14T18:33:40.661955Z","duration":"PT0.4611968S","correlationId":"f05ed757-fe5b-438f-92dc-2b0efe055ad2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000003"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/vm_deploy_DcBgxcoOeGyusoL3y4Y7BBAtBfBQEWkI","name":"vm_deploy_DcBgxcoOeGyusoL3y4Y7BBAtBfBQEWkI","properties":{"templateHash":"1801789505807313745","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-07-05T21:32:00.3932495Z","duration":"PT0.4299181S","correlationId":"867562a9-7cd2-4d86-9449-b79d8783e118","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000003"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/vm_deploy_QBcyZlhQyCta76EnnVkzzfSlNyBXkDHv/operationStatuses/08586410696652768692?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/vm_deploy_DcBgxcoOeGyusoL3y4Y7BBAtBfBQEWkI/operationStatuses/08586392445655142984?api-version=2018-05-01 cache-control: - no-cache content-length: @@ -2203,7 +2355,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:33:40 GMT + - Fri, 05 Jul 2019 21:32:00 GMT expires: - '-1' pragma: @@ -2231,10 +2383,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410696652768692?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392445655142984?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -2246,7 +2398,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:34:10 GMT + - Fri, 05 Jul 2019 21:32:29 GMT expires: - '-1' pragma: @@ -2274,10 +2426,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410696652768692?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392445655142984?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -2289,7 +2441,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:34:41 GMT + - Fri, 05 Jul 2019 21:33:00 GMT expires: - '-1' pragma: @@ -2317,10 +2469,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410696652768692?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392445655142984?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -2332,7 +2484,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:35:10 GMT + - Fri, 05 Jul 2019 21:33:30 GMT expires: - '-1' pragma: @@ -2360,10 +2512,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410696652768692?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392445655142984?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -2375,7 +2527,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:35:41 GMT + - Fri, 05 Jul 2019 21:34:01 GMT expires: - '-1' pragma: @@ -2403,10 +2555,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410696652768692?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392445655142984?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -2418,7 +2570,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:36:11 GMT + - Fri, 05 Jul 2019 21:34:30 GMT expires: - '-1' pragma: @@ -2446,10 +2598,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410696652768692?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392445655142984?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -2461,7 +2613,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:36:41 GMT + - Fri, 05 Jul 2019 21:35:02 GMT expires: - '-1' pragma: @@ -2489,22 +2641,22 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/vm_deploy_QBcyZlhQyCta76EnnVkzzfSlNyBXkDHv","name":"vm_deploy_QBcyZlhQyCta76EnnVkzzfSlNyBXkDHv","properties":{"templateHash":"17462381896220469536","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-06-14T18:36:32.9281836Z","duration":"PT2M52.7274254S","correlationId":"f05ed757-fe5b-438f-92dc-2b0efe055ad2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000003"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/vm_deploy_DcBgxcoOeGyusoL3y4Y7BBAtBfBQEWkI","name":"vm_deploy_DcBgxcoOeGyusoL3y4Y7BBAtBfBQEWkI","properties":{"templateHash":"1801789505807313745","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-07-05T21:34:45.792262Z","duration":"PT2M45.8289306S","correlationId":"867562a9-7cd2-4d86-9449-b79d8783e118","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000003"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '3434' + - '3432' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:36:41 GMT + - Fri, 05 Jul 2019 21:35:01 GMT expires: - '-1' pragma: @@ -2532,23 +2684,23 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?$expand=instanceView&api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"5a85b57d-82cd-44f7-b2c8-1819aa870292\",\r\n + string: "{\r\n \"properties\": {\r\n \"vmId\": \"2d7318ea-97be-46a8-a108-c96097c42ca3\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftSQLServer\",\r\n \"offer\": \"SQL2017-WS2016\",\r\n \"sku\": \"Enterprise\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Windows\",\r\n \"name\": \"clisqlvm000003_OsDisk_1_2df07a2d47244271817b2c40ff101ffa\",\r\n + {\r\n \"osType\": \"Windows\",\r\n \"name\": \"clisqlvm000003_OsDisk_1_951f4f571f494dc882b9b330c2b90355\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_2df07a2d47244271817b2c40ff101ffa\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_951f4f571f494dc882b9b330c2b90355\"\r\n \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n \ \"adminUsername\": \"admin123\",\r\n \"windowsConfiguration\": @@ -2561,16 +2713,16 @@ interactions: \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet - populated.\",\r\n \"time\": \"2019-06-14T18:36:43+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2019-07-05T21:35:02+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clisqlvm000003_OsDisk_1_2df07a2d47244271817b2c40ff101ffa\",\r\n \"statuses\": + \"clisqlvm000003_OsDisk_1_951f4f571f494dc882b9b330c2b90355\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2019-06-14T18:34:14.8219629+00:00\"\r\n + succeeded\",\r\n \"time\": \"2019-07-05T21:32:07.2127053+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\": \"2019-06-14T18:36:26.9938573+00:00\"\r\n + succeeded\",\r\n \"time\": \"2019-07-05T21:34:41.5564388+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 \"type\": \"Microsoft.Compute/virtualMachines\",\r\n @@ -2584,7 +2736,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:36:42 GMT + - Fri, 05 Jul 2019 21:35:02 GMT expires: - '-1' pragma: @@ -2601,7 +2753,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31988 + - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31971 status: code: 200 message: OK @@ -2619,8 +2771,8 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 networkmanagementclient/3.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 networkmanagementclient/3.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -2628,12 +2780,12 @@ interactions: response: body: string: "{\r\n \"name\": \"clisqlvm000003VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\",\r\n - \ \"etag\": \"W/\\\"1b6629ea-b0fc-4c9e-899e-bc164d73c5c8\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"8f59b00d-bd57-42f6-82f4-b63de51e8959\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"91e8e2d0-6a30-4378-bc45-ea5851446ec3\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"8b0530fd-b7dc-479f-a7a1-dbe3dd25b2be\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigclisqlvm000003\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic/ipConfigurations/ipconfigclisqlvm000003\",\r\n - \ \"etag\": \"W/\\\"1b6629ea-b0fc-4c9e-899e-bc164d73c5c8\\\"\",\r\n + \ \"etag\": \"W/\\\"8f59b00d-bd57-42f6-82f4-b63de51e8959\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -2642,8 +2794,8 @@ interactions: \ },\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\": - \"2h0rw2sui5iu5mc5oi3cqqxwch.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-34-D2-BB\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"sqj13mkqrsfure3wjvw02hazxc.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-31-25-18\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -2657,9 +2809,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:36:43 GMT + - Fri, 05 Jul 2019 21:35:02 GMT etag: - - W/"1b6629ea-b0fc-4c9e-899e-bc164d73c5c8" + - W/"8f59b00d-bd57-42f6-82f4-b63de51e8959" expires: - '-1' pragma: @@ -2692,8 +2844,8 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 networkmanagementclient/3.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 networkmanagementclient/3.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -2701,10 +2853,10 @@ interactions: response: body: string: "{\r\n \"name\": \"clisqlvm000003PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP\",\r\n - \ \"etag\": \"W/\\\"02134982-f6fc-4a01-9443-da6b3361cb18\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"78bd977c-f452-4e6c-850c-fb63599977a6\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"66eed113-d332-4786-87fa-7dce137537d5\",\r\n - \ \"ipAddress\": \"13.64.238.52\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"c252ed6f-9091-427a-9857-8e2d99a28517\",\r\n + \ \"ipAddress\": \"104.42.64.147\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic/ipConfigurations/ipconfigclisqlvm000003\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -2714,13 +2866,13 @@ interactions: cache-control: - no-cache content-length: - - '1069' + - '1070' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:36:43 GMT + - Fri, 05 Jul 2019 21:35:04 GMT etag: - - W/"02134982-f6fc-4a01-9443-da6b3361cb18" + - W/"78bd977c-f452-4e6c-850c-fb63599977a6" expires: - '-1' pragma: @@ -2753,16 +2905,16 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2017-WS2016/skus/Enterprise/versions?$top=1&$orderby=name%20desc&api-version=2019-03-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.190409\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190409\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.190611\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190611\"\r\n \ }\r\n]" headers: cache-control: @@ -2772,7 +2924,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:36:44 GMT + - Fri, 05 Jul 2019 21:35:04 GMT expires: - '-1' pragma: @@ -2805,12 +2957,12 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2017-WS2016/skus/Enterprise/versions/14.1.190409?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2017-WS2016/skus/Enterprise/versions/14.1.190611?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": @@ -2818,7 +2970,7 @@ interactions: \ },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \ \"sizeInGb\": 128\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n - \ \"location\": \"westus\",\r\n \"name\": \"14.1.190409\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190409\"\r\n}" + \ \"location\": \"westus\",\r\n \"name\": \"14.1.190611\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190611\"\r\n}" headers: cache-control: - no-cache @@ -2827,7 +2979,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:36:44 GMT + - Fri, 05 Jul 2019 21:35:04 GMT expires: - '-1' pragma: @@ -2860,8 +3012,8 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 networkmanagementclient/3.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 networkmanagementclient/3.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -2870,17 +3022,19 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"clisqlvm000002VNET\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET\",\r\n - \ \"etag\": \"W/\\\"e5268138-dfaa-474f-8ee7-ebe69c7283c6\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4e69488e-388c-45e1-8f8e-6b2971d10929\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"721bf5e1-4754-4fd1-b05f-723a2842f617\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"b1be1394-8c50-488b-93b6-4d6dae1c19ba\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"clisqlvm000002Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET/subnets/clisqlvm000002Subnet\",\r\n - \ \"etag\": \"W/\\\"e5268138-dfaa-474f-8ee7-ebe69c7283c6\\\"\",\r\n + \ \"etag\": \"W/\\\"4e69488e-388c-45e1-8f8e-6b2971d10929\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic/ipConfigurations/ipconfigclisqlvm000002\"\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"networkSecurityGroup\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg1\"\r\n + \ },\r\n \"ipConfigurations\": [\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic/ipConfigurations/ipconfigclisqlvm000002\"\r\n \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic/ipConfigurations/ipconfigclisqlvm000003\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n @@ -2890,11 +3044,11 @@ interactions: cache-control: - no-cache content-length: - - '2151' + - '2390' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:36:45 GMT + - Fri, 05 Jul 2019 21:35:04 GMT expires: - '-1' pragma: @@ -2927,8 +3081,8 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -2956,6 +3110,15 @@ interactions: \ {\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_DS1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n @@ -3205,9 +3368,15 @@ interactions: \ },\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\": + 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\": 1638400,\r\n \"memoryInMB\": 262144,\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 @@ -3229,6 +3398,9 @@ interactions: \ },\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_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 @@ -3274,6 +3446,9 @@ interactions: \ },\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 @@ -3403,6 +3578,9 @@ interactions: \ },\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 @@ -3475,25 +3653,16 @@ interactions: \ },\r\n {\r\n \"name\": \"Standard_NV48s_v3\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\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}" headers: cache-control: - no-cache content-length: - - '37831' + - '38880' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:36:45 GMT + - Fri, 05 Jul 2019 21:35:05 GMT expires: - '-1' pragma: @@ -3560,18 +3729,18 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/vm_deploy_epHADUbmO1NvzQFncR0dr8CXeb87GhWs","name":"vm_deploy_epHADUbmO1NvzQFncR0dr8CXeb87GhWs","properties":{"templateHash":"3742466382381441767","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-06-14T18:36:47.2497071Z","duration":"PT0.6975119S","correlationId":"ad8ab1d3-37bc-41bf-8859-b9236e51af8b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000004NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000004PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000004PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000004VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000004VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000004"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/vm_deploy_BIFWpdUm1HoHOIDqj5WrBUDJhIHdZfdB","name":"vm_deploy_BIFWpdUm1HoHOIDqj5WrBUDJhIHdZfdB","properties":{"templateHash":"4379476332445343197","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-07-05T21:35:07.2189671Z","duration":"PT0.5208525S","correlationId":"cfbbf5dc-fb93-4405-b63d-cc338b5b4285","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000004NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000004PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000004PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000004VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000004VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000004"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/vm_deploy_epHADUbmO1NvzQFncR0dr8CXeb87GhWs/operationStatuses/08586410694789254324?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/vm_deploy_BIFWpdUm1HoHOIDqj5WrBUDJhIHdZfdB/operationStatuses/08586392443787795110?api-version=2018-05-01 cache-control: - no-cache content-length: @@ -3579,7 +3748,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:36:47 GMT + - Fri, 05 Jul 2019 21:35:06 GMT expires: - '-1' pragma: @@ -3607,10 +3776,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410694789254324?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392443787795110?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -3622,7 +3791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:37:17 GMT + - Fri, 05 Jul 2019 21:35:37 GMT expires: - '-1' pragma: @@ -3650,10 +3819,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410694789254324?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392443787795110?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -3665,7 +3834,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:37:47 GMT + - Fri, 05 Jul 2019 21:36:07 GMT expires: - '-1' pragma: @@ -3693,10 +3862,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410694789254324?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392443787795110?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -3708,7 +3877,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:38:17 GMT + - Fri, 05 Jul 2019 21:36:37 GMT expires: - '-1' pragma: @@ -3736,10 +3905,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410694789254324?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392443787795110?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -3751,7 +3920,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:38:47 GMT + - Fri, 05 Jul 2019 21:37:07 GMT expires: - '-1' pragma: @@ -3779,10 +3948,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410694789254324?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392443787795110?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -3794,7 +3963,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:39:18 GMT + - Fri, 05 Jul 2019 21:37:37 GMT expires: - '-1' pragma: @@ -3822,22 +3991,22 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410694789254324?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392443787795110?api-version=2018-05-01 response: body: - string: '{"status":"Running"}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '20' + - '22' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:39:48 GMT + - Fri, 05 Jul 2019 21:38:08 GMT expires: - '-1' pragma: @@ -3865,22 +4034,22 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410694789254324?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"status":"Succeeded"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/vm_deploy_BIFWpdUm1HoHOIDqj5WrBUDJhIHdZfdB","name":"vm_deploy_BIFWpdUm1HoHOIDqj5WrBUDJhIHdZfdB","properties":{"templateHash":"4379476332445343197","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-07-05T21:37:57.0417221Z","duration":"PT2M50.3436075S","correlationId":"cfbbf5dc-fb93-4405-b63d-cc338b5b4285","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000004NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000004PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000004PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000004VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000004VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000004"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000004VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000004PublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '22' + - '3433' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:40:18 GMT + - Fri, 05 Jul 2019 21:38:08 GMT expires: - '-1' pragma: @@ -3908,66 +4077,23 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004?$expand=instanceView&api-version=2019-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Resources/deployments/vm_deploy_epHADUbmO1NvzQFncR0dr8CXeb87GhWs","name":"vm_deploy_epHADUbmO1NvzQFncR0dr8CXeb87GhWs","properties":{"templateHash":"3742466382381441767","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-06-14T18:39:53.8637468Z","duration":"PT3M7.3115516S","correlationId":"ad8ab1d3-37bc-41bf-8859-b9236e51af8b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000004NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000004PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000004PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000004VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000004VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000004"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000004VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000004PublicIP"}]}}' - headers: - cache-control: - - no-cache - content-length: - - '3432' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Jun 2019 18:40:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -l -g -n --admin-username --admin-password --image --size - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004?$expand=instanceView&api-version=2019-03-01 - response: - body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"25062abc-2a0c-4632-a688-9b58a7c91283\",\r\n + string: "{\r\n \"properties\": {\r\n \"vmId\": \"5cf65f98-ed8a-4192-ac6b-ad977f9515d9\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftSQLServer\",\r\n \"offer\": \"SQL2017-WS2016\",\r\n \"sku\": \"Enterprise\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Windows\",\r\n \"name\": \"clisqlvm000004_OsDisk_1_beac40e5bb0d421f8160a40411af4dde\",\r\n + {\r\n \"osType\": \"Windows\",\r\n \"name\": \"clisqlvm000004_OsDisk_1_1dad43c053fa4163ad2a156f7bb839b8\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/disks/clisqlvm000004_OsDisk_1_beac40e5bb0d421f8160a40411af4dde\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/disks/clisqlvm000004_OsDisk_1_1dad43c053fa4163ad2a156f7bb839b8\"\r\n \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000004\",\r\n \ \"adminUsername\": \"admin123\",\r\n \"windowsConfiguration\": @@ -3980,16 +4106,16 @@ interactions: \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet - populated.\",\r\n \"time\": \"2019-06-14T18:40:19+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2019-07-05T21:38:09+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clisqlvm000004_OsDisk_1_beac40e5bb0d421f8160a40411af4dde\",\r\n \"statuses\": + \"clisqlvm000004_OsDisk_1_1dad43c053fa4163ad2a156f7bb839b8\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2019-06-14T18:37:25.8219389+00:00\"\r\n + succeeded\",\r\n \"time\": \"2019-07-05T21:35:28.9939235+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\": \"2019-06-14T18:39:49.5875597+00:00\"\r\n + succeeded\",\r\n \"time\": \"2019-07-05T21:37:55.4157959+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 \"type\": \"Microsoft.Compute/virtualMachines\",\r\n @@ -4003,7 +4129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:40:19 GMT + - Fri, 05 Jul 2019 21:38:08 GMT expires: - '-1' pragma: @@ -4020,7 +4146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31975 + - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31968 status: code: 200 message: OK @@ -4038,8 +4164,8 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 networkmanagementclient/3.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 networkmanagementclient/3.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -4047,12 +4173,12 @@ interactions: response: body: string: "{\r\n \"name\": \"clisqlvm000004VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000004VMNic\",\r\n - \ \"etag\": \"W/\\\"1904fcd5-57d1-4ca4-919c-367fa0a17556\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"41864918-d5c6-4adb-8542-66ed486b21a0\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"4bc78e55-95d9-49e0-9a43-420f1ddeefb1\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"2bdd4c3f-f5dc-45e0-8c77-f47e2634f799\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigclisqlvm000004\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000004VMNic/ipConfigurations/ipconfigclisqlvm000004\",\r\n - \ \"etag\": \"W/\\\"1904fcd5-57d1-4ca4-919c-367fa0a17556\\\"\",\r\n + \ \"etag\": \"W/\\\"41864918-d5c6-4adb-8542-66ed486b21a0\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": @@ -4061,8 +4187,8 @@ interactions: \ },\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\": - \"2h0rw2sui5iu5mc5oi3cqqxwch.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-35-95-07\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"sqj13mkqrsfure3wjvw02hazxc.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-31-2B-C4\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000004NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -4076,9 +4202,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:40:19 GMT + - Fri, 05 Jul 2019 21:38:10 GMT etag: - - W/"1904fcd5-57d1-4ca4-919c-367fa0a17556" + - W/"41864918-d5c6-4adb-8542-66ed486b21a0" expires: - '-1' pragma: @@ -4111,8 +4237,8 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 networkmanagementclient/3.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 networkmanagementclient/3.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -4120,10 +4246,10 @@ interactions: response: body: string: "{\r\n \"name\": \"clisqlvm000004PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000004PublicIP\",\r\n - \ \"etag\": \"W/\\\"5d2bb038-30c0-4718-9dc0-ebc4a1e70147\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"4069dc68-d231-4d4e-b3f4-d4be9f5f997b\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"1bca7869-c85c-41ca-8d4d-f1849ab842ac\",\r\n - \ \"ipAddress\": \"13.64.233.57\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"82000d5b-6ddd-4932-abba-142bf22f3781\",\r\n + \ \"ipAddress\": \"104.42.3.103\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000004VMNic/ipConfigurations/ipconfigclisqlvm000004\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -4137,9 +4263,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:40:20 GMT + - Fri, 05 Jul 2019 21:38:10 GMT etag: - - W/"5d2bb038-30c0-4718-9dc0-ebc4a1e70147" + - W/"4069dc68-d231-4d4e-b3f4-d4be9f5f997b" expires: - '-1' pragma: @@ -4159,49 +4285,54 @@ interactions: code: 200 message: OK - request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}' + body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002", + "sqlServerLicenseType": "PAYG", "sqlManagement": "LightWeight", "autoPatchingSettings": + {}, "autoBackupSettings": {}, "keyVaultCredentialSettings": {}, "serverConfigurationsManagementSettings": + {"sqlConnectivityUpdateSettings": {}, "sqlWorkloadTypeUpdateSettings": {}, "additionalFeaturesServerConfigurations": + {}}}}\''''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - storage account create + - sql vm create Connection: - keep-alive Content-Length: - - '74' + - '600' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -n -g -l --sku + - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Storage/storageAccounts/clitest000005?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Provisioning","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","sqlImageSku":"Unknown"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/fa0a4eab-7c28-4666-b65d-a63908f83d11?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '0' + - '701' content-type: - - text/plain; charset=utf-8 + - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:40:22 GMT + - Fri, 05 Jul 2019 21:38:33 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/94fccf3e-3a04-4cff-8ed7-c6d3813cc2d0?monitor=true&api-version=2019-04-01 pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -4209,8 +4340,8 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -4219,34 +4350,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - storage account create + - sql vm create Connection: - keep-alive ParameterSetName: - - -n -g -l --sku + - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/94fccf3e-3a04-4cff-8ed7-c6d3813cc2d0?monitor=true&api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/fa0a4eab-7c28-4666-b65d-a63908f83d11?api-version=2017-03-01-preview response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Storage/storageAccounts/clitest000005","name":"clitest000005","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T18:40:22.9460316Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T18:40:22.9460316Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T18:40:22.7741537Z","primaryEndpoints":{"blob":"https://clitest000005.blob.core.windows.net/","queue":"https://clitest000005.queue.core.windows.net/","table":"https://clitest000005.table.core.windows.net/","file":"https://clitest000005.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"name":"fa0a4eab-7c28-4666-b65d-a63908f83d11","status":"InProgress","startTime":"2019-07-05T21:38:32.613Z"}' headers: cache-control: - no-cache content-length: - - '1227' + - '108' content-type: - - application/json + - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:40:39 GMT + - Fri, 05 Jul 2019 21:38:48 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4266,38 +4397,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - storage account keys list + - sql vm create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -n -g --query -o + - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Storage/storageAccounts/clitest000005/listKeys?api-version=2019-04-01 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/fa0a4eab-7c28-4666-b65d-a63908f83d11?api-version=2017-03-01-preview response: body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"name":"fa0a4eab-7c28-4666-b65d-a63908f83d11","status":"InProgress","startTime":"2019-07-05T21:38:32.613Z"}' headers: cache-control: - no-cache content-length: - - '288' + - '108' content-type: - - application/json + - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:40:41 GMT + - Fri, 05 Jul 2019 21:39:03 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4306,18 +4433,11 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002", - "sqlServerLicenseType": "PAYG", "autoPatchingSettings": {}, "autoBackupSettings": - {}, "keyVaultCredentialSettings": {}, "serverConfigurationsManagementSettings": - {"sqlConnectivityUpdateSettings": {}, "sqlWorkloadTypeUpdateSettings": {}, "additionalFeaturesServerConfigurations": - {}}}}\''''' + body: null headers: Accept: - application/json @@ -4327,33 +4447,25 @@ interactions: - sql vm create Connection: - keep-alive - Content-Length: - - '568' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/fa0a4eab-7c28-4666-b65d-a63908f83d11?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Provisioning","sqlServerLicenseType":"PAYG","sqlImageSku":"Unknown"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"fa0a4eab-7c28-4666-b65d-a63908f83d11","status":"InProgress","startTime":"2019-07-05T21:38:32.613Z"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/602035e5-1fa7-49ca-92ee-8ac97a1aca96?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '671' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:40:43 GMT + - Fri, 05 Jul 2019 21:39:19 GMT expires: - '-1' pragma: @@ -4362,13 +4474,15 @@ 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-subscription-writes: - - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -4383,13 +4497,13 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/602035e5-1fa7-49ca-92ee-8ac97a1aca96?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/fa0a4eab-7c28-4666-b65d-a63908f83d11?api-version=2017-03-01-preview response: body: - string: '{"name":"602035e5-1fa7-49ca-92ee-8ac97a1aca96","status":"InProgress","startTime":"2019-06-14T18:40:43.023Z"}' + string: '{"name":"fa0a4eab-7c28-4666-b65d-a63908f83d11","status":"InProgress","startTime":"2019-07-05T21:38:32.613Z"}' headers: cache-control: - no-cache @@ -4398,7 +4512,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:40:59 GMT + - Fri, 05 Jul 2019 21:39:34 GMT expires: - '-1' pragma: @@ -4430,22 +4544,22 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/602035e5-1fa7-49ca-92ee-8ac97a1aca96?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/fa0a4eab-7c28-4666-b65d-a63908f83d11?api-version=2017-03-01-preview response: body: - string: '{"name":"602035e5-1fa7-49ca-92ee-8ac97a1aca96","status":"InProgress","startTime":"2019-06-14T18:40:43.023Z"}' + string: '{"name":"fa0a4eab-7c28-4666-b65d-a63908f83d11","status":"Succeeded","startTime":"2019-07-05T21:38:32.613Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:41:14 GMT + - Fri, 05 Jul 2019 21:39:49 GMT expires: - '-1' pragma: @@ -4477,22 +4591,22 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/602035e5-1fa7-49ca-92ee-8ac97a1aca96?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"name":"602035e5-1fa7-49ca-92ee-8ac97a1aca96","status":"InProgress","startTime":"2019-06-14T18:40:43.023Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '108' + - '734' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:41:30 GMT + - Fri, 05 Jul 2019 21:39:50 GMT expires: - '-1' pragma: @@ -4524,22 +4638,24 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/602035e5-1fa7-49ca-92ee-8ac97a1aca96?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"name":"602035e5-1fa7-49ca-92ee-8ac97a1aca96","status":"InProgress","startTime":"2019-06-14T18:40:43.023Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '108' + - '734' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:41:45 GMT + - Fri, 05 Jul 2019 21:39:50 GMT expires: - '-1' pragma: @@ -4558,7 +4674,12 @@ interactions: code: 200 message: OK - request: - body: null + body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003", + "sqlServerLicenseType": "AHUB", "sqlManagement": "LightWeight", "autoPatchingSettings": + {}, "autoBackupSettings": {}, "keyVaultCredentialSettings": {}, "serverConfigurationsManagementSettings": + {"sqlConnectivityUpdateSettings": {}, "sqlWorkloadTypeUpdateSettings": {}, "additionalFeaturesServerConfigurations": + {}}}}\''''' headers: Accept: - application/json @@ -4568,25 +4689,33 @@ interactions: - sql vm create Connection: - keep-alive + Content-Length: + - '600' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/602035e5-1fa7-49ca-92ee-8ac97a1aca96?api-version=2017-03-01-preview + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview response: body: - string: '{"name":"602035e5-1fa7-49ca-92ee-8ac97a1aca96","status":"InProgress","startTime":"2019-06-14T18:40:43.023Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Provisioning","sqlServerLicenseType":"AHUB","sqlManagement":"LightWeight","sqlImageSku":"Unknown"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/a683b98a-092b-461a-ad6f-8ac9c92b9489?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '108' + - '701' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:42:00 GMT + - Fri, 05 Jul 2019 21:39:52 GMT expires: - '-1' pragma: @@ -4595,15 +4724,13 @@ 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-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -4618,13 +4745,13 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/602035e5-1fa7-49ca-92ee-8ac97a1aca96?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/a683b98a-092b-461a-ad6f-8ac9c92b9489?api-version=2017-03-01-preview response: body: - string: '{"name":"602035e5-1fa7-49ca-92ee-8ac97a1aca96","status":"InProgress","startTime":"2019-06-14T18:40:43.023Z"}' + string: '{"name":"a683b98a-092b-461a-ad6f-8ac9c92b9489","status":"InProgress","startTime":"2019-07-05T21:39:52.077Z"}' headers: cache-control: - no-cache @@ -4633,7 +4760,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:42:15 GMT + - Fri, 05 Jul 2019 21:40:07 GMT expires: - '-1' pragma: @@ -4665,13 +4792,13 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/602035e5-1fa7-49ca-92ee-8ac97a1aca96?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/a683b98a-092b-461a-ad6f-8ac9c92b9489?api-version=2017-03-01-preview response: body: - string: '{"name":"602035e5-1fa7-49ca-92ee-8ac97a1aca96","status":"InProgress","startTime":"2019-06-14T18:40:43.023Z"}' + string: '{"name":"a683b98a-092b-461a-ad6f-8ac9c92b9489","status":"InProgress","startTime":"2019-07-05T21:39:52.077Z"}' headers: cache-control: - no-cache @@ -4680,7 +4807,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:42:31 GMT + - Fri, 05 Jul 2019 21:40:23 GMT expires: - '-1' pragma: @@ -4712,13 +4839,13 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/602035e5-1fa7-49ca-92ee-8ac97a1aca96?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/a683b98a-092b-461a-ad6f-8ac9c92b9489?api-version=2017-03-01-preview response: body: - string: '{"name":"602035e5-1fa7-49ca-92ee-8ac97a1aca96","status":"InProgress","startTime":"2019-06-14T18:40:43.023Z"}' + string: '{"name":"a683b98a-092b-461a-ad6f-8ac9c92b9489","status":"InProgress","startTime":"2019-07-05T21:39:52.077Z"}' headers: cache-control: - no-cache @@ -4727,7 +4854,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:42:45 GMT + - Fri, 05 Jul 2019 21:40:38 GMT expires: - '-1' pragma: @@ -4759,13 +4886,13 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/602035e5-1fa7-49ca-92ee-8ac97a1aca96?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/a683b98a-092b-461a-ad6f-8ac9c92b9489?api-version=2017-03-01-preview response: body: - string: '{"name":"602035e5-1fa7-49ca-92ee-8ac97a1aca96","status":"InProgress","startTime":"2019-06-14T18:40:43.023Z"}' + string: '{"name":"a683b98a-092b-461a-ad6f-8ac9c92b9489","status":"InProgress","startTime":"2019-07-05T21:39:52.077Z"}' headers: cache-control: - no-cache @@ -4774,7 +4901,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:43:00 GMT + - Fri, 05 Jul 2019 21:40:54 GMT expires: - '-1' pragma: @@ -4806,13 +4933,13 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/602035e5-1fa7-49ca-92ee-8ac97a1aca96?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/a683b98a-092b-461a-ad6f-8ac9c92b9489?api-version=2017-03-01-preview response: body: - string: '{"name":"602035e5-1fa7-49ca-92ee-8ac97a1aca96","status":"Succeeded","startTime":"2019-06-14T18:40:43.023Z"}' + string: '{"name":"a683b98a-092b-461a-ad6f-8ac9c92b9489","status":"Succeeded","startTime":"2019-07-05T21:39:52.077Z"}' headers: cache-control: - no-cache @@ -4821,7 +4948,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:43:16 GMT + - Fri, 05 Jul 2019 21:41:09 GMT expires: - '-1' pragma: @@ -4853,22 +4980,22 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlManagement":"LightWeight","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '704' + - '734' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:43:16 GMT + - Fri, 05 Jul 2019 21:41:09 GMT expires: - '-1' pragma: @@ -4900,24 +5027,24 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlManagement":"LightWeight","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '704' + - '734' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:43:18 GMT + - Fri, 05 Jul 2019 21:41:10 GMT expires: - '-1' pragma: @@ -4937,10 +5064,12 @@ interactions: message: OK - request: body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003", - "sqlServerLicenseType": "AHUB", "autoPatchingSettings": {}, "autoBackupSettings": - {}, "keyVaultCredentialSettings": {}, "serverConfigurationsManagementSettings": - {"sqlConnectivityUpdateSettings": {}, "sqlWorkloadTypeUpdateSettings": {}, "additionalFeaturesServerConfigurations": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004", + "sqlServerLicenseType": "PAYG", "sqlManagement": "Full", "autoPatchingSettings": + {}, "autoBackupSettings": {}, "keyVaultCredentialSettings": {}, "serverConfigurationsManagementSettings": + {"sqlConnectivityUpdateSettings": {"connectivityType": "PUBLIC", "port": 1433, + "sqlAuthUpdateUserName": "sqladmin123", "sqlAuthUpdatePassword": "SecretPassword123"}, + "sqlWorkloadTypeUpdateSettings": {}, "additionalFeaturesServerConfigurations": {}}}}\''''' headers: Accept: @@ -4952,32 +5081,33 @@ interactions: Connection: - keep-alive Content-Length: - - '568' + - '721' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -n -g -l --license-type + - -n -g -l --license-type --sql-mgmt-type --connectivity-type --port --sql-auth-update-username + --sql-auth-update-pwd User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Provisioning","sqlServerLicenseType":"AHUB","sqlImageSku":"Unknown"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004","provisioningState":"Provisioning","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Unknown"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004","name":"clisqlvm000004","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/e84008e0-9e50-4f45-bc10-b71fb416a28b?api-version=2017-03-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/418b4de4-af4c-4f27-be35-2ede9bc3a1c5?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '671' + - '694' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:43:19 GMT + - Fri, 05 Jul 2019 21:41:12 GMT expires: - '-1' pragma: @@ -5005,15 +5135,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type + - -n -g -l --license-type --sql-mgmt-type --connectivity-type --port --sql-auth-update-username + --sql-auth-update-pwd User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/e84008e0-9e50-4f45-bc10-b71fb416a28b?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/418b4de4-af4c-4f27-be35-2ede9bc3a1c5?api-version=2017-03-01-preview response: body: - string: '{"name":"e84008e0-9e50-4f45-bc10-b71fb416a28b","status":"InProgress","startTime":"2019-06-14T18:43:19.57Z"}' + string: '{"name":"418b4de4-af4c-4f27-be35-2ede9bc3a1c5","status":"InProgress","startTime":"2019-07-05T21:41:11.66Z"}' headers: cache-control: - no-cache @@ -5022,7 +5153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:43:35 GMT + - Fri, 05 Jul 2019 21:41:28 GMT expires: - '-1' pragma: @@ -5052,15 +5183,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type + - -n -g -l --license-type --sql-mgmt-type --connectivity-type --port --sql-auth-update-username + --sql-auth-update-pwd User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/e84008e0-9e50-4f45-bc10-b71fb416a28b?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/418b4de4-af4c-4f27-be35-2ede9bc3a1c5?api-version=2017-03-01-preview response: body: - string: '{"name":"e84008e0-9e50-4f45-bc10-b71fb416a28b","status":"InProgress","startTime":"2019-06-14T18:43:19.57Z"}' + string: '{"name":"418b4de4-af4c-4f27-be35-2ede9bc3a1c5","status":"InProgress","startTime":"2019-07-05T21:41:11.66Z"}' headers: cache-control: - no-cache @@ -5069,7 +5201,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:43:50 GMT + - Fri, 05 Jul 2019 21:41:43 GMT expires: - '-1' pragma: @@ -5099,15 +5231,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type + - -n -g -l --license-type --sql-mgmt-type --connectivity-type --port --sql-auth-update-username + --sql-auth-update-pwd User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/e84008e0-9e50-4f45-bc10-b71fb416a28b?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/418b4de4-af4c-4f27-be35-2ede9bc3a1c5?api-version=2017-03-01-preview response: body: - string: '{"name":"e84008e0-9e50-4f45-bc10-b71fb416a28b","status":"InProgress","startTime":"2019-06-14T18:43:19.57Z"}' + string: '{"name":"418b4de4-af4c-4f27-be35-2ede9bc3a1c5","status":"InProgress","startTime":"2019-07-05T21:41:11.66Z"}' headers: cache-control: - no-cache @@ -5116,7 +5249,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:44:05 GMT + - Fri, 05 Jul 2019 21:41:58 GMT expires: - '-1' pragma: @@ -5146,15 +5279,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type + - -n -g -l --license-type --sql-mgmt-type --connectivity-type --port --sql-auth-update-username + --sql-auth-update-pwd User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/e84008e0-9e50-4f45-bc10-b71fb416a28b?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/418b4de4-af4c-4f27-be35-2ede9bc3a1c5?api-version=2017-03-01-preview response: body: - string: '{"name":"e84008e0-9e50-4f45-bc10-b71fb416a28b","status":"InProgress","startTime":"2019-06-14T18:43:19.57Z"}' + string: '{"name":"418b4de4-af4c-4f27-be35-2ede9bc3a1c5","status":"InProgress","startTime":"2019-07-05T21:41:11.66Z"}' headers: cache-control: - no-cache @@ -5163,7 +5297,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:44:21 GMT + - Fri, 05 Jul 2019 21:42:13 GMT expires: - '-1' pragma: @@ -5193,15 +5327,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type + - -n -g -l --license-type --sql-mgmt-type --connectivity-type --port --sql-auth-update-username + --sql-auth-update-pwd User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/e84008e0-9e50-4f45-bc10-b71fb416a28b?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/418b4de4-af4c-4f27-be35-2ede9bc3a1c5?api-version=2017-03-01-preview response: body: - string: '{"name":"e84008e0-9e50-4f45-bc10-b71fb416a28b","status":"InProgress","startTime":"2019-06-14T18:43:19.57Z"}' + string: '{"name":"418b4de4-af4c-4f27-be35-2ede9bc3a1c5","status":"InProgress","startTime":"2019-07-05T21:41:11.66Z"}' headers: cache-control: - no-cache @@ -5210,7 +5345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:44:37 GMT + - Fri, 05 Jul 2019 21:42:28 GMT expires: - '-1' pragma: @@ -5240,15 +5375,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type + - -n -g -l --license-type --sql-mgmt-type --connectivity-type --port --sql-auth-update-username + --sql-auth-update-pwd User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/e84008e0-9e50-4f45-bc10-b71fb416a28b?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/418b4de4-af4c-4f27-be35-2ede9bc3a1c5?api-version=2017-03-01-preview response: body: - string: '{"name":"e84008e0-9e50-4f45-bc10-b71fb416a28b","status":"InProgress","startTime":"2019-06-14T18:43:19.57Z"}' + string: '{"name":"418b4de4-af4c-4f27-be35-2ede9bc3a1c5","status":"InProgress","startTime":"2019-07-05T21:41:11.66Z"}' headers: cache-control: - no-cache @@ -5257,7 +5393,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:44:52 GMT + - Fri, 05 Jul 2019 21:42:43 GMT expires: - '-1' pragma: @@ -5287,15 +5423,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type + - -n -g -l --license-type --sql-mgmt-type --connectivity-type --port --sql-auth-update-username + --sql-auth-update-pwd User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/e84008e0-9e50-4f45-bc10-b71fb416a28b?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/418b4de4-af4c-4f27-be35-2ede9bc3a1c5?api-version=2017-03-01-preview response: body: - string: '{"name":"e84008e0-9e50-4f45-bc10-b71fb416a28b","status":"InProgress","startTime":"2019-06-14T18:43:19.57Z"}' + string: '{"name":"418b4de4-af4c-4f27-be35-2ede9bc3a1c5","status":"InProgress","startTime":"2019-07-05T21:41:11.66Z"}' headers: cache-control: - no-cache @@ -5304,7 +5441,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:45:07 GMT + - Fri, 05 Jul 2019 21:42:58 GMT expires: - '-1' pragma: @@ -5334,15 +5471,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type + - -n -g -l --license-type --sql-mgmt-type --connectivity-type --port --sql-auth-update-username + --sql-auth-update-pwd User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/e84008e0-9e50-4f45-bc10-b71fb416a28b?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/418b4de4-af4c-4f27-be35-2ede9bc3a1c5?api-version=2017-03-01-preview response: body: - string: '{"name":"e84008e0-9e50-4f45-bc10-b71fb416a28b","status":"InProgress","startTime":"2019-06-14T18:43:19.57Z"}' + string: '{"name":"418b4de4-af4c-4f27-be35-2ede9bc3a1c5","status":"InProgress","startTime":"2019-07-05T21:41:11.66Z"}' headers: cache-control: - no-cache @@ -5351,7 +5489,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:45:22 GMT + - Fri, 05 Jul 2019 21:43:14 GMT expires: - '-1' pragma: @@ -5381,15 +5519,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type + - -n -g -l --license-type --sql-mgmt-type --connectivity-type --port --sql-auth-update-username + --sql-auth-update-pwd User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/e84008e0-9e50-4f45-bc10-b71fb416a28b?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/418b4de4-af4c-4f27-be35-2ede9bc3a1c5?api-version=2017-03-01-preview response: body: - string: '{"name":"e84008e0-9e50-4f45-bc10-b71fb416a28b","status":"InProgress","startTime":"2019-06-14T18:43:19.57Z"}' + string: '{"name":"418b4de4-af4c-4f27-be35-2ede9bc3a1c5","status":"InProgress","startTime":"2019-07-05T21:41:11.66Z"}' headers: cache-control: - no-cache @@ -5398,7 +5537,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:45:37 GMT + - Fri, 05 Jul 2019 21:43:29 GMT expires: - '-1' pragma: @@ -5428,15 +5567,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type + - -n -g -l --license-type --sql-mgmt-type --connectivity-type --port --sql-auth-update-username + --sql-auth-update-pwd User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/e84008e0-9e50-4f45-bc10-b71fb416a28b?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/418b4de4-af4c-4f27-be35-2ede9bc3a1c5?api-version=2017-03-01-preview response: body: - string: '{"name":"e84008e0-9e50-4f45-bc10-b71fb416a28b","status":"Succeeded","startTime":"2019-06-14T18:43:19.57Z"}' + string: '{"name":"418b4de4-af4c-4f27-be35-2ede9bc3a1c5","status":"Succeeded","startTime":"2019-07-05T21:41:11.66Z"}' headers: cache-control: - no-cache @@ -5445,7 +5585,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:45:53 GMT + - Fri, 05 Jul 2019 21:43:45 GMT expires: - '-1' pragma: @@ -5475,24 +5615,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type + - -n -g -l --license-type --sql-mgmt-type --connectivity-type --port --sql-auth-update-username + --sql-auth-update-pwd User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004","name":"clisqlvm000004","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '704' + - '727' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:45:54 GMT + - Fri, 05 Jul 2019 21:43:45 GMT expires: - '-1' pragma: @@ -5522,26 +5663,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type + - -n -g -l --license-type --sql-mgmt-type --connectivity-type --port --sql-auth-update-username + --sql-auth-update-pwd User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004","name":"clisqlvm000004","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '704' + - '727' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:45:54 GMT + - Fri, 05 Jul 2019 21:43:46 GMT expires: - '-1' pragma: @@ -5560,53 +5702,41 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004", - "sqlServerLicenseType": "PAYG", "autoPatchingSettings": {}, "autoBackupSettings": - {}, "keyVaultCredentialSettings": {}, "serverConfigurationsManagementSettings": - {"sqlConnectivityUpdateSettings": {"connectivityType": "PUBLIC", "port": 1433, - "sqlAuthUpdateUserName": "sqladmin123", "sqlAuthUpdatePassword": "SecretPassword123"}, - "sqlWorkloadTypeUpdateSettings": {}, "additionalFeaturesServerConfigurations": - {}}}}\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm delete Connection: - keep-alive Content-Length: - - '696' - Content-Type: - - application/json; charset=utf-8 + - '0' ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-username - --sql-auth-update-pwd + - -n -g --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004?api-version=2017-03-01-preview + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004","provisioningState":"Provisioning","sqlServerLicenseType":"PAYG","sqlImageSku":"Unknown"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004","name":"clisqlvm000004","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c0ba57f9-5b42-4923-a6a5-c9df79f08559?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '671' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 14 Jun 2019 18:45:56 GMT + - Fri, 05 Jul 2019 21:43:46 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineOperationResults/965e4193-5672-477d-a613-c23e3bf0b2cc?api-version=2017-03-01-preview pragma: - no-cache server: @@ -5615,11 +5745,11 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: - code: 201 - message: Created + code: 202 + message: Accepted - request: body: null headers: @@ -5628,29 +5758,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm delete Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-username - --sql-auth-update-pwd + - -n -g --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c0ba57f9-5b42-4923-a6a5-c9df79f08559?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineOperationResults/965e4193-5672-477d-a613-c23e3bf0b2cc?api-version=2017-03-01-preview response: body: - string: '{"name":"c0ba57f9-5b42-4923-a6a5-c9df79f08559","status":"InProgress","startTime":"2019-06-14T18:45:55.917Z"}' + string: '' headers: cache-control: - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:46:11 GMT + - Fri, 05 Jul 2019 21:44:02 GMT expires: - '-1' pragma: @@ -5659,15 +5784,11 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -5676,46 +5797,47 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-username - --sql-auth-update-pwd + - -n -g --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c0ba57f9-5b42-4923-a6a5-c9df79f08559?api-version=2017-03-01-preview + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview response: body: - string: '{"name":"c0ba57f9-5b42-4923-a6a5-c9df79f08559","status":"InProgress","startTime":"2019-06-14T18:45:55.917Z"}' + string: '' headers: cache-control: - no-cache content-length: - - '108' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 14 Jun 2019 18:46:26 GMT + - Fri, 05 Jul 2019 21:44:05 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineOperationResults/d0282837-1fd4-42bd-81a0-e19475d84f69?api-version=2017-03-01-preview 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-subscription-deletes: + - '14999' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5724,29 +5846,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm delete Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-username - --sql-auth-update-pwd + - -n -g --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c0ba57f9-5b42-4923-a6a5-c9df79f08559?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineOperationResults/d0282837-1fd4-42bd-81a0-e19475d84f69?api-version=2017-03-01-preview response: body: - string: '{"name":"c0ba57f9-5b42-4923-a6a5-c9df79f08559","status":"InProgress","startTime":"2019-06-14T18:45:55.917Z"}' + string: '' headers: cache-control: - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:46:42 GMT + - Fri, 05 Jul 2019 21:44:20 GMT expires: - '-1' pragma: @@ -5755,15 +5872,11 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -5772,46 +5885,47 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-username - --sql-auth-update-pwd + - -n -g --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c0ba57f9-5b42-4923-a6a5-c9df79f08559?api-version=2017-03-01-preview + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004?api-version=2017-03-01-preview response: body: - string: '{"name":"c0ba57f9-5b42-4923-a6a5-c9df79f08559","status":"InProgress","startTime":"2019-06-14T18:45:55.917Z"}' + string: '' headers: cache-control: - no-cache content-length: - - '108' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 14 Jun 2019 18:46:58 GMT + - Fri, 05 Jul 2019 21:44:23 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineOperationResults/e72ded23-97d4-4314-85d9-c7cc36d62d36?api-version=2017-03-01-preview 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-subscription-deletes: + - '14999' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5820,29 +5934,83 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm delete Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-username - --sql-auth-update-pwd + - -n -g --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c0ba57f9-5b42-4923-a6a5-c9df79f08559?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineOperationResults/e72ded23-97d4-4314-85d9-c7cc36d62d36?api-version=2017-03-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Fri, 05 Jul 2019 21:44:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002", + "sqlServerLicenseType": "PAYG", "sqlManagement": "Full", "autoPatchingSettings": + {"enable": true, "dayOfWeek": "Monday", "maintenanceWindowStartingHour": 22, + "maintenanceWindowDuration": 60}, "autoBackupSettings": {}, "keyVaultCredentialSettings": + {}, "serverConfigurationsManagementSettings": {"sqlConnectivityUpdateSettings": + {}, "sqlWorkloadTypeUpdateSettings": {}, "additionalFeaturesServerConfigurations": + {}}}}\''''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql vm create + Connection: + - keep-alive + Content-Length: + - '700' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g -l --license-type --sql-mgmt-type --day-of-week --maintenance-window-duration + --maintenance-window-start-hour + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"name":"c0ba57f9-5b42-4923-a6a5-c9df79f08559","status":"InProgress","startTime":"2019-06-14T18:45:55.917Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Provisioning","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Unknown"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/eae76fd3-538b-49fa-8d96-d1fa2cc4ac6d?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '108' + - '694' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:47:13 GMT + - Fri, 05 Jul 2019 21:44:40 GMT expires: - '-1' pragma: @@ -5851,15 +6019,13 @@ 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-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -5872,16 +6038,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-username - --sql-auth-update-pwd + - -n -g -l --license-type --sql-mgmt-type --day-of-week --maintenance-window-duration + --maintenance-window-start-hour User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c0ba57f9-5b42-4923-a6a5-c9df79f08559?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/eae76fd3-538b-49fa-8d96-d1fa2cc4ac6d?api-version=2017-03-01-preview response: body: - string: '{"name":"c0ba57f9-5b42-4923-a6a5-c9df79f08559","status":"InProgress","startTime":"2019-06-14T18:45:55.917Z"}' + string: '{"name":"eae76fd3-538b-49fa-8d96-d1fa2cc4ac6d","status":"InProgress","startTime":"2019-07-05T21:44:40.223Z"}' headers: cache-control: - no-cache @@ -5890,7 +6056,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:47:27 GMT + - Fri, 05 Jul 2019 21:44:55 GMT expires: - '-1' pragma: @@ -5920,16 +6086,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-username - --sql-auth-update-pwd + - -n -g -l --license-type --sql-mgmt-type --day-of-week --maintenance-window-duration + --maintenance-window-start-hour User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c0ba57f9-5b42-4923-a6a5-c9df79f08559?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/eae76fd3-538b-49fa-8d96-d1fa2cc4ac6d?api-version=2017-03-01-preview response: body: - string: '{"name":"c0ba57f9-5b42-4923-a6a5-c9df79f08559","status":"InProgress","startTime":"2019-06-14T18:45:55.917Z"}' + string: '{"name":"eae76fd3-538b-49fa-8d96-d1fa2cc4ac6d","status":"InProgress","startTime":"2019-07-05T21:44:40.223Z"}' headers: cache-control: - no-cache @@ -5938,7 +6104,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:47:43 GMT + - Fri, 05 Jul 2019 21:45:11 GMT expires: - '-1' pragma: @@ -5968,16 +6134,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-username - --sql-auth-update-pwd + - -n -g -l --license-type --sql-mgmt-type --day-of-week --maintenance-window-duration + --maintenance-window-start-hour User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c0ba57f9-5b42-4923-a6a5-c9df79f08559?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/eae76fd3-538b-49fa-8d96-d1fa2cc4ac6d?api-version=2017-03-01-preview response: body: - string: '{"name":"c0ba57f9-5b42-4923-a6a5-c9df79f08559","status":"InProgress","startTime":"2019-06-14T18:45:55.917Z"}' + string: '{"name":"eae76fd3-538b-49fa-8d96-d1fa2cc4ac6d","status":"InProgress","startTime":"2019-07-05T21:44:40.223Z"}' headers: cache-control: - no-cache @@ -5986,7 +6152,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:47:58 GMT + - Fri, 05 Jul 2019 21:45:26 GMT expires: - '-1' pragma: @@ -6016,16 +6182,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-username - --sql-auth-update-pwd + - -n -g -l --license-type --sql-mgmt-type --day-of-week --maintenance-window-duration + --maintenance-window-start-hour User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c0ba57f9-5b42-4923-a6a5-c9df79f08559?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/eae76fd3-538b-49fa-8d96-d1fa2cc4ac6d?api-version=2017-03-01-preview response: body: - string: '{"name":"c0ba57f9-5b42-4923-a6a5-c9df79f08559","status":"InProgress","startTime":"2019-06-14T18:45:55.917Z"}' + string: '{"name":"eae76fd3-538b-49fa-8d96-d1fa2cc4ac6d","status":"InProgress","startTime":"2019-07-05T21:44:40.223Z"}' headers: cache-control: - no-cache @@ -6034,7 +6200,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:48:13 GMT + - Fri, 05 Jul 2019 21:45:41 GMT expires: - '-1' pragma: @@ -6064,25 +6230,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-username - --sql-auth-update-pwd + - -n -g -l --license-type --sql-mgmt-type --day-of-week --maintenance-window-duration + --maintenance-window-start-hour User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c0ba57f9-5b42-4923-a6a5-c9df79f08559?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/eae76fd3-538b-49fa-8d96-d1fa2cc4ac6d?api-version=2017-03-01-preview response: body: - string: '{"name":"c0ba57f9-5b42-4923-a6a5-c9df79f08559","status":"Succeeded","startTime":"2019-06-14T18:45:55.917Z"}' + string: '{"name":"eae76fd3-538b-49fa-8d96-d1fa2cc4ac6d","status":"InProgress","startTime":"2019-07-05T21:44:40.223Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:48:29 GMT + - Fri, 05 Jul 2019 21:45:56 GMT expires: - '-1' pragma: @@ -6112,25 +6278,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-username - --sql-auth-update-pwd + - -n -g -l --license-type --sql-mgmt-type --day-of-week --maintenance-window-duration + --maintenance-window-start-hour User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/eae76fd3-538b-49fa-8d96-d1fa2cc4ac6d?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004","name":"clisqlvm000004","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"eae76fd3-538b-49fa-8d96-d1fa2cc4ac6d","status":"InProgress","startTime":"2019-07-05T21:44:40.223Z"}' headers: cache-control: - no-cache content-length: - - '704' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:48:29 GMT + - Fri, 05 Jul 2019 21:46:12 GMT expires: - '-1' pragma: @@ -6160,27 +6326,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --connectivity-type --port --sql-auth-update-username - --sql-auth-update-pwd + - -n -g -l --license-type --sql-mgmt-type --day-of-week --maintenance-window-duration + --maintenance-window-start-hour User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/eae76fd3-538b-49fa-8d96-d1fa2cc4ac6d?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004","name":"clisqlvm000004","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"eae76fd3-538b-49fa-8d96-d1fa2cc4ac6d","status":"InProgress","startTime":"2019-07-05T21:44:40.223Z"}' headers: cache-control: - no-cache content-length: - - '704' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:48:29 GMT + - Fri, 05 Jul 2019 21:46:27 GMT expires: - '-1' pragma: @@ -6206,47 +6370,46 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm delete + - sql vm create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -n -g --yes + - -n -g -l --license-type --sql-mgmt-type --day-of-week --maintenance-window-duration + --maintenance-window-start-hour User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/eae76fd3-538b-49fa-8d96-d1fa2cc4ac6d?api-version=2017-03-01-preview response: body: - string: '' + string: '{"name":"eae76fd3-538b-49fa-8d96-d1fa2cc4ac6d","status":"Succeeded","startTime":"2019-07-05T21:44:40.223Z"}' headers: cache-control: - no-cache content-length: - - '0' + - '107' + content-type: + - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:48:31 GMT + - Fri, 05 Jul 2019 21:46:42 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineOperationResults/60c08bd4-d20f-4a34-9e18-22bbf32075e3?api-version=2017-03-01-preview 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-subscription-deletes: - - '14999' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6255,24 +6418,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm delete + - sql vm create Connection: - keep-alive ParameterSetName: - - -n -g --yes + - -n -g -l --license-type --sql-mgmt-type --day-of-week --maintenance-window-duration + --maintenance-window-start-hour User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineOperationResults/60c08bd4-d20f-4a34-9e18-22bbf32075e3?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache + content-length: + - '727' + content-type: + - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:48:46 GMT + - Fri, 05 Jul 2019 21:46:43 GMT expires: - '-1' pragma: @@ -6281,11 +6449,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -6294,47 +6466,48 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm delete + - sql vm create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -n -g --yes + - -n -g -l --license-type --sql-mgmt-type --day-of-week --maintenance-window-duration + --maintenance-window-start-hour User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '0' + - '727' + content-type: + - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:48:49 GMT + - Fri, 05 Jul 2019 21:46:44 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineOperationResults/3f189e31-938a-4823-aa13-b907e5b786c7?api-version=2017-03-01-preview 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-subscription-deletes: - - '14999' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6343,86 +6516,106 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm delete + - storage account update Connection: - keep-alive ParameterSetName: - - -n -g --yes + - -n -g --set User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-storage/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineOperationResults/3f189e31-938a-4823-aa13-b907e5b786c7?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Storage/storageAccounts/clitest000005?api-version=2019-04-01 response: body: - string: '' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Storage/storageAccounts/clitest000005","name":"clitest000005","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-05T21:38:11.9402043Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-05T21:38:11.9402043Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-05T21:38:11.8308333Z","primaryEndpoints":{"blob":"https://clitest000005.blob.core.windows.net/","queue":"https://clitest000005.queue.core.windows.net/","table":"https://clitest000005.table.core.windows.net/","file":"https://clitest000005.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache + content-length: + - '1168' + content-type: + - application/json date: - - Fri, 14 Jun 2019 18:49:04 GMT + - Fri, 05 Jul 2019 21:46:44 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,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 status: - code: 204 - message: No Content + code: 200 + message: OK - request: - body: null + body: '{"sku": {"name": "Standard_LRS"}, "tags": {}, "properties": {"encryption": + {"services": {"blob": {"enabled": true}, "file": {"enabled": true}}, "keySource": + "Microsoft.Storage"}, "supportsHttpsTrafficOnly": true, "networkAcls": {"bypass": + "AzureServices", "virtualNetworkRules": [], "ipRules": [], "defaultAction": + "Allow"}}, "kind": "StorageV2"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - sql vm delete + - storage account update Connection: - keep-alive Content-Length: - - '0' + - '346' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -n -g --yes + - -n -g --set User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-storage/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004?api-version=2017-03-01-preview + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Storage/storageAccounts/clitest000005?api-version=2019-04-01 response: body: - string: '' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Storage/storageAccounts/clitest000005","name":"clitest000005","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-05T21:38:11.9402043Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-05T21:38:11.9402043Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-05T21:38:11.8308333Z","primaryEndpoints":{"dfs":"https://clitest000005.dfs.core.windows.net/","web":"https://clitest000005.z22.web.core.windows.net/","blob":"https://clitest000005.blob.core.windows.net/","queue":"https://clitest000005.queue.core.windows.net/","table":"https://clitest000005.table.core.windows.net/","file":"https://clitest000005.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '0' + - '1319' + content-type: + - application/json date: - - Fri, 14 Jun 2019 18:49:07 GMT + - Fri, 05 Jul 2019 21:46:45 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineOperationResults/85779627-28d5-4d54-aeee-d2ffe3543db1?api-version=2017-03-01-preview pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,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-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6431,98 +6624,111 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm delete + - storage account show Connection: - keep-alive ParameterSetName: - - -n -g --yes + - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-storage/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineOperationResults/85779627-28d5-4d54-aeee-d2ffe3543db1?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Storage/storageAccounts/clitest000005?api-version=2019-04-01 response: body: - string: '' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Storage/storageAccounts/clitest000005","name":"clitest000005","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-05T21:38:11.9402043Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-05T21:38:11.9402043Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-05T21:38:11.8308333Z","primaryEndpoints":{"dfs":"https://clitest000005.dfs.core.windows.net/","web":"https://clitest000005.z22.web.core.windows.net/","blob":"https://clitest000005.blob.core.windows.net/","queue":"https://clitest000005.queue.core.windows.net/","table":"https://clitest000005.table.core.windows.net/","file":"https://clitest000005.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache + content-length: + - '1319' + content-type: + - application/json date: - - Fri, 14 Jun 2019 18:49:22 GMT + - Fri, 05 Jul 2019 21:46:46 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,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 status: - code: 204 - message: No Content + code: 200 + message: OK - request: - body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002", - "sqlServerLicenseType": "PAYG", "autoPatchingSettings": {"enable": true, "dayOfWeek": - "Monday", "maintenanceWindowStartingHour": 22, "maintenanceWindowDuration": - 60}, "autoBackupSettings": {}, "keyVaultCredentialSettings": {}, "serverConfigurationsManagementSettings": - {"sqlConnectivityUpdateSettings": {}, "sqlWorkloadTypeUpdateSettings": {}, "additionalFeaturesServerConfigurations": - {}}}}\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - storage account keys list Connection: - keep-alive Content-Length: - - '675' - Content-Type: - - application/json; charset=utf-8 + - '0' ParameterSetName: - - -n -g -l --license-type --day-of-week --maintenance-window-duration --maintenance-window-start-hour + - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-storage/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Storage/storageAccounts/clitest000005/listKeys?api-version=2019-04-01 response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Provisioning","sqlServerLicenseType":"PAYG","sqlImageSku":"Unknown"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/b864a5d3-6377-4cf7-84be-7220dfea8933?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '671' + - '288' content-type: - - application/json; charset=utf-8 + - application/json date: - - Fri, 14 Jun 2019 18:49:25 GMT + - Fri, 05 Jul 2019 21:46:46 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,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-subscription-writes: - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: - body: null + body: 'b''b\''b\\\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003", + "sqlServerLicenseType": "PAYG", "sqlManagement": "Full", "autoPatchingSettings": + {}, "autoBackupSettings": {"enable": true, "enableEncryption": false, "retentionPeriod": + 30, "storageAccountUrl": "https://clitest000005.blob.core.windows.net/", "storageAccessKey": + "veryFakedStorageAccountKey==", "backupSystemDbs": false, "backupScheduleType": + "Manual", "fullBackupFrequency": "Weekly", "fullBackupStartTime": 2, "fullBackupWindowHours": + 2, "logBackupFrequency": 60}, "keyVaultCredentialSettings": {}, "serverConfigurationsManagementSettings": + {"sqlConnectivityUpdateSettings": {}, "sqlWorkloadTypeUpdateSettings": {}, "additionalFeaturesServerConfigurations": + {}}}}\\\''\''''' headers: Accept: - application/json @@ -6532,25 +6738,35 @@ interactions: - sql vm create Connection: - keep-alive + Content-Length: + - '1020' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -n -g -l --license-type --day-of-week --maintenance-window-duration --maintenance-window-start-hour + - -n -g -l --license-type --backup-schedule-type --full-backup-frequency --full-backup-start-hour + --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/b864a5d3-6377-4cf7-84be-7220dfea8933?api-version=2017-03-01-preview + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview response: body: - string: '{"name":"b864a5d3-6377-4cf7-84be-7220dfea8933","status":"InProgress","startTime":"2019-06-14T18:49:24.237Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Provisioning","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Unknown"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/686fe3c7-7931-497f-9de4-43973c475ac4?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '108' + - '694' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:49:40 GMT + - Fri, 05 Jul 2019 21:46:48 GMT expires: - '-1' pragma: @@ -6559,15 +6775,13 @@ 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-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -6580,15 +6794,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --day-of-week --maintenance-window-duration --maintenance-window-start-hour + - -n -g -l --license-type --backup-schedule-type --full-backup-frequency --full-backup-start-hour + --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/b864a5d3-6377-4cf7-84be-7220dfea8933?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/686fe3c7-7931-497f-9de4-43973c475ac4?api-version=2017-03-01-preview response: body: - string: '{"name":"b864a5d3-6377-4cf7-84be-7220dfea8933","status":"InProgress","startTime":"2019-06-14T18:49:24.237Z"}' + string: '{"name":"686fe3c7-7931-497f-9de4-43973c475ac4","status":"InProgress","startTime":"2019-07-05T21:46:47.837Z"}' headers: cache-control: - no-cache @@ -6597,7 +6813,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:49:56 GMT + - Fri, 05 Jul 2019 21:47:03 GMT expires: - '-1' pragma: @@ -6627,15 +6843,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --day-of-week --maintenance-window-duration --maintenance-window-start-hour + - -n -g -l --license-type --backup-schedule-type --full-backup-frequency --full-backup-start-hour + --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/b864a5d3-6377-4cf7-84be-7220dfea8933?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/686fe3c7-7931-497f-9de4-43973c475ac4?api-version=2017-03-01-preview response: body: - string: '{"name":"b864a5d3-6377-4cf7-84be-7220dfea8933","status":"InProgress","startTime":"2019-06-14T18:49:24.237Z"}' + string: '{"name":"686fe3c7-7931-497f-9de4-43973c475ac4","status":"InProgress","startTime":"2019-07-05T21:46:47.837Z"}' headers: cache-control: - no-cache @@ -6644,7 +6862,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:50:11 GMT + - Fri, 05 Jul 2019 21:47:18 GMT expires: - '-1' pragma: @@ -6674,24 +6892,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --day-of-week --maintenance-window-duration --maintenance-window-start-hour + - -n -g -l --license-type --backup-schedule-type --full-backup-frequency --full-backup-start-hour + --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/b864a5d3-6377-4cf7-84be-7220dfea8933?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/686fe3c7-7931-497f-9de4-43973c475ac4?api-version=2017-03-01-preview response: body: - string: '{"name":"b864a5d3-6377-4cf7-84be-7220dfea8933","status":"Succeeded","startTime":"2019-06-14T18:49:24.237Z"}' + string: '{"name":"686fe3c7-7931-497f-9de4-43973c475ac4","status":"InProgress","startTime":"2019-07-05T21:46:47.837Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:50:26 GMT + - Fri, 05 Jul 2019 21:47:34 GMT expires: - '-1' pragma: @@ -6721,24 +6941,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --day-of-week --maintenance-window-duration --maintenance-window-start-hour + - -n -g -l --license-type --backup-schedule-type --full-backup-frequency --full-backup-start-hour + --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/686fe3c7-7931-497f-9de4-43973c475ac4?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"686fe3c7-7931-497f-9de4-43973c475ac4","status":"InProgress","startTime":"2019-07-05T21:46:47.837Z"}' headers: cache-control: - no-cache content-length: - - '704' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:50:26 GMT + - Fri, 05 Jul 2019 21:47:48 GMT expires: - '-1' pragma: @@ -6768,26 +6990,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --day-of-week --maintenance-window-duration --maintenance-window-start-hour + - -n -g -l --license-type --backup-schedule-type --full-backup-frequency --full-backup-start-hour + --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/686fe3c7-7931-497f-9de4-43973c475ac4?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"686fe3c7-7931-497f-9de4-43973c475ac4","status":"InProgress","startTime":"2019-07-05T21:46:47.837Z"}' headers: cache-control: - no-cache content-length: - - '704' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:50:27 GMT + - Fri, 05 Jul 2019 21:48:04 GMT expires: - '-1' pragma: @@ -6813,36 +7035,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - storage account show + - sql vm create Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g -l --license-type --backup-schedule-type --full-backup-frequency --full-backup-start-hour + --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Storage/storageAccounts/clitest000005?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/686fe3c7-7931-497f-9de4-43973c475ac4?api-version=2017-03-01-preview response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Storage/storageAccounts/clitest000005","name":"clitest000005","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T18:40:22.9460316Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T18:40:22.9460316Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T18:40:22.7741537Z","primaryEndpoints":{"blob":"https://clitest000005.blob.core.windows.net/","queue":"https://clitest000005.queue.core.windows.net/","table":"https://clitest000005.table.core.windows.net/","file":"https://clitest000005.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"name":"686fe3c7-7931-497f-9de4-43973c475ac4","status":"InProgress","startTime":"2019-07-05T21:46:47.837Z"}' headers: cache-control: - no-cache content-length: - - '1227' + - '108' content-type: - - application/json + - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:50:28 GMT + - Fri, 05 Jul 2019 21:48:19 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6862,38 +7084,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - storage account keys list + - sql vm create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -n -g + - -n -g -l --license-type --backup-schedule-type --full-backup-frequency --full-backup-start-hour + --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Storage/storageAccounts/clitest000005/listKeys?api-version=2019-04-01 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/686fe3c7-7931-497f-9de4-43973c475ac4?api-version=2017-03-01-preview response: body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"name":"686fe3c7-7931-497f-9de4-43973c475ac4","status":"InProgress","startTime":"2019-07-05T21:46:47.837Z"}' headers: cache-control: - no-cache content-length: - - '288' + - '108' content-type: - - application/json + - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:50:28 GMT + - Fri, 05 Jul 2019 21:48:35 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6902,22 +7122,11 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK - request: - body: 'b''b\''b\\\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003", - "sqlServerLicenseType": "PAYG", "autoPatchingSettings": {}, "autoBackupSettings": - {"enable": true, "enableEncryption": false, "retentionPeriod": 30, "storageAccountUrl": - "https://clitest000005.blob.core.windows.net/", "storageAccessKey": "veryFakedStorageAccountKey==", - "backupSystemDbs": false, "backupScheduleType": "Manual", "fullBackupFrequency": - "Weekly", "fullBackupStartTime": 2, "fullBackupWindowHours": 2, "logBackupFrequency": - 60}, "keyVaultCredentialSettings": {}, "serverConfigurationsManagementSettings": - {"sqlConnectivityUpdateSettings": {}, "sqlWorkloadTypeUpdateSettings": {}, "additionalFeaturesServerConfigurations": - {}}}}\\\''\''''' + body: null headers: Accept: - application/json @@ -6927,34 +7136,27 @@ interactions: - sql vm create Connection: - keep-alive - Content-Length: - - '995' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -n -g -l --license-type --backup-schedule-type --full-backup-frequency --full-backup-start-hour --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/686fe3c7-7931-497f-9de4-43973c475ac4?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Provisioning","sqlServerLicenseType":"PAYG","sqlImageSku":"Unknown"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"686fe3c7-7931-497f-9de4-43973c475ac4","status":"InProgress","startTime":"2019-07-05T21:46:47.837Z"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c58db802-315a-4ce2-b0e8-a07201ccaf1e?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '671' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:50:30 GMT + - Fri, 05 Jul 2019 21:48:50 GMT expires: - '-1' pragma: @@ -6963,13 +7165,15 @@ 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-subscription-writes: - - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -6984,14 +7188,15 @@ interactions: ParameterSetName: - -n -g -l --license-type --backup-schedule-type --full-backup-frequency --full-backup-start-hour --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c58db802-315a-4ce2-b0e8-a07201ccaf1e?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/686fe3c7-7931-497f-9de4-43973c475ac4?api-version=2017-03-01-preview response: body: - string: '{"name":"c58db802-315a-4ce2-b0e8-a07201ccaf1e","status":"InProgress","startTime":"2019-06-14T18:50:29.923Z"}' + string: '{"name":"686fe3c7-7931-497f-9de4-43973c475ac4","status":"InProgress","startTime":"2019-07-05T21:46:47.837Z"}' headers: cache-control: - no-cache @@ -7000,7 +7205,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:50:45 GMT + - Fri, 05 Jul 2019 21:49:05 GMT expires: - '-1' pragma: @@ -7032,14 +7237,15 @@ interactions: ParameterSetName: - -n -g -l --license-type --backup-schedule-type --full-backup-frequency --full-backup-start-hour --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c58db802-315a-4ce2-b0e8-a07201ccaf1e?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/686fe3c7-7931-497f-9de4-43973c475ac4?api-version=2017-03-01-preview response: body: - string: '{"name":"c58db802-315a-4ce2-b0e8-a07201ccaf1e","status":"InProgress","startTime":"2019-06-14T18:50:29.923Z"}' + string: '{"name":"686fe3c7-7931-497f-9de4-43973c475ac4","status":"InProgress","startTime":"2019-07-05T21:46:47.837Z"}' headers: cache-control: - no-cache @@ -7048,7 +7254,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:51:01 GMT + - Fri, 05 Jul 2019 21:49:21 GMT expires: - '-1' pragma: @@ -7080,14 +7286,15 @@ interactions: ParameterSetName: - -n -g -l --license-type --backup-schedule-type --full-backup-frequency --full-backup-start-hour --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c58db802-315a-4ce2-b0e8-a07201ccaf1e?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/686fe3c7-7931-497f-9de4-43973c475ac4?api-version=2017-03-01-preview response: body: - string: '{"name":"c58db802-315a-4ce2-b0e8-a07201ccaf1e","status":"InProgress","startTime":"2019-06-14T18:50:29.923Z"}' + string: '{"name":"686fe3c7-7931-497f-9de4-43973c475ac4","status":"InProgress","startTime":"2019-07-05T21:46:47.837Z"}' headers: cache-control: - no-cache @@ -7096,7 +7303,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:51:16 GMT + - Fri, 05 Jul 2019 21:49:35 GMT expires: - '-1' pragma: @@ -7128,23 +7335,24 @@ interactions: ParameterSetName: - -n -g -l --license-type --backup-schedule-type --full-backup-frequency --full-backup-start-hour --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c58db802-315a-4ce2-b0e8-a07201ccaf1e?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/686fe3c7-7931-497f-9de4-43973c475ac4?api-version=2017-03-01-preview response: body: - string: '{"name":"c58db802-315a-4ce2-b0e8-a07201ccaf1e","status":"InProgress","startTime":"2019-06-14T18:50:29.923Z"}' + string: '{"name":"686fe3c7-7931-497f-9de4-43973c475ac4","status":"Succeeded","startTime":"2019-07-05T21:46:47.837Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:51:32 GMT + - Fri, 05 Jul 2019 21:49:51 GMT expires: - '-1' pragma: @@ -7176,23 +7384,24 @@ interactions: ParameterSetName: - -n -g -l --license-type --backup-schedule-type --full-backup-frequency --full-backup-start-hour --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c58db802-315a-4ce2-b0e8-a07201ccaf1e?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview response: body: - string: '{"name":"c58db802-315a-4ce2-b0e8-a07201ccaf1e","status":"InProgress","startTime":"2019-06-14T18:50:29.923Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '108' + - '727' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:51:47 GMT + - Fri, 05 Jul 2019 21:49:51 GMT expires: - '-1' pragma: @@ -7224,23 +7433,26 @@ interactions: ParameterSetName: - -n -g -l --license-type --backup-schedule-type --full-backup-frequency --full-backup-start-hour --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency + --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c58db802-315a-4ce2-b0e8-a07201ccaf1e?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview response: body: - string: '{"name":"c58db802-315a-4ce2-b0e8-a07201ccaf1e","status":"Succeeded","startTime":"2019-06-14T18:50:29.923Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '107' + - '727' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:52:02 GMT + - Fri, 05 Jul 2019 21:49:52 GMT expires: - '-1' pragma: @@ -7259,7 +7471,12 @@ interactions: code: 200 message: OK - request: - body: null + body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004", + "sqlServerLicenseType": "PAYG", "sqlManagement": "Full", "autoPatchingSettings": + {}, "autoBackupSettings": {}, "keyVaultCredentialSettings": {}, "serverConfigurationsManagementSettings": + {"sqlConnectivityUpdateSettings": {}, "sqlWorkloadTypeUpdateSettings": {}, "additionalFeaturesServerConfigurations": + {"isRServicesEnabled": true}}}}\''''' headers: Accept: - application/json @@ -7269,26 +7486,33 @@ interactions: - sql vm create Connection: - keep-alive + Content-Length: + - '619' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -n -g -l --license-type --backup-schedule-type --full-backup-frequency --full-backup-start-hour - --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency + - -n -g -l --license-type --enable-r-services --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004","provisioningState":"Provisioning","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Unknown"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004","name":"clisqlvm000004","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/9028d93c-e984-4055-9577-aea045614bf8?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '704' + - '694' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:52:02 GMT + - Fri, 05 Jul 2019 21:49:54 GMT expires: - '-1' pragma: @@ -7297,15 +7521,13 @@ 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-subscription-writes: + - '1198' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -7318,27 +7540,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --backup-schedule-type --full-backup-frequency --full-backup-start-hour - --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency + - -n -g -l --license-type --enable-r-services --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/9028d93c-e984-4055-9577-aea045614bf8?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"9028d93c-e984-4055-9577-aea045614bf8","status":"InProgress","startTime":"2019-07-05T21:49:53.21Z"}' headers: cache-control: - no-cache content-length: - - '704' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:52:03 GMT + - Fri, 05 Jul 2019 21:50:09 GMT expires: - '-1' pragma: @@ -7357,12 +7576,7 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004", - "sqlServerLicenseType": "PAYG", "autoPatchingSettings": {}, "autoBackupSettings": - {}, "keyVaultCredentialSettings": {}, "serverConfigurationsManagementSettings": - {"sqlConnectivityUpdateSettings": {}, "sqlWorkloadTypeUpdateSettings": {}, "additionalFeaturesServerConfigurations": - {"isRServicesEnabled": true}}}}\''''' + body: null headers: Accept: - application/json @@ -7372,33 +7586,25 @@ interactions: - sql vm create Connection: - keep-alive - Content-Length: - - '594' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -n -g -l --license-type --enable-r-services + - -n -g -l --license-type --enable-r-services --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004?api-version=2017-03-01-preview + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/9028d93c-e984-4055-9577-aea045614bf8?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004","provisioningState":"Provisioning","sqlServerLicenseType":"PAYG","sqlImageSku":"Unknown"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004","name":"clisqlvm000004","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"9028d93c-e984-4055-9577-aea045614bf8","status":"InProgress","startTime":"2019-07-05T21:49:53.21Z"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/b2048f19-92b2-4430-8cd9-9b1a221c6b83?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '671' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:52:06 GMT + - Fri, 05 Jul 2019 21:50:24 GMT expires: - '-1' pragma: @@ -7407,13 +7613,15 @@ 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-subscription-writes: - - '1197' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -7426,24 +7634,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --enable-r-services + - -n -g -l --license-type --enable-r-services --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/b2048f19-92b2-4430-8cd9-9b1a221c6b83?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/9028d93c-e984-4055-9577-aea045614bf8?api-version=2017-03-01-preview response: body: - string: '{"name":"b2048f19-92b2-4430-8cd9-9b1a221c6b83","status":"InProgress","startTime":"2019-06-14T18:52:05.377Z"}' + string: '{"name":"9028d93c-e984-4055-9577-aea045614bf8","status":"InProgress","startTime":"2019-07-05T21:49:53.21Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:52:21 GMT + - Fri, 05 Jul 2019 21:50:39 GMT expires: - '-1' pragma: @@ -7473,15 +7681,15 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --enable-r-services + - -n -g -l --license-type --enable-r-services --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/b2048f19-92b2-4430-8cd9-9b1a221c6b83?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/9028d93c-e984-4055-9577-aea045614bf8?api-version=2017-03-01-preview response: body: - string: '{"name":"b2048f19-92b2-4430-8cd9-9b1a221c6b83","status":"Succeeded","startTime":"2019-06-14T18:52:05.377Z"}' + string: '{"name":"9028d93c-e984-4055-9577-aea045614bf8","status":"InProgress","startTime":"2019-07-05T21:49:53.21Z"}' headers: cache-control: - no-cache @@ -7490,7 +7698,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:52:37 GMT + - Fri, 05 Jul 2019 21:50:55 GMT expires: - '-1' pragma: @@ -7520,24 +7728,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --enable-r-services + - -n -g -l --license-type --enable-r-services --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/9028d93c-e984-4055-9577-aea045614bf8?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004","name":"clisqlvm000004","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"9028d93c-e984-4055-9577-aea045614bf8","status":"Succeeded","startTime":"2019-07-05T21:49:53.21Z"}' headers: cache-control: - no-cache content-length: - - '704' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:52:36 GMT + - Fri, 05 Jul 2019 21:51:09 GMT expires: - '-1' pragma: @@ -7567,26 +7775,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type --enable-r-services + - -n -g -l --license-type --enable-r-services --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004","name":"clisqlvm000004","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004","name":"clisqlvm000004","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '704' + - '727' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:52:37 GMT + - Fri, 05 Jul 2019 21:51:10 GMT expires: - '-1' pragma: @@ -7612,43 +7818,45 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - group delete + - sql vm create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --name --yes --no-wait + - -n -g -l --license-type --enable-r-services --sql-mgmt-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_create000001?api-version=2018-05-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004?api-version=2017-03-01-preview response: body: - string: '' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000004","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_create000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000004","name":"clisqlvm000004","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '0' + - '727' + content-type: + - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:52:38 GMT + - Fri, 05 Jul 2019 21:51:10 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxWTTo1RkNMSTo1RlRFU1Q6NUZDUkVBVEVMWUtPUDRQSllZQUdYQzRCNkpDS3wyQzEzOTEyNUU2RTA5MDJFLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 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-subscription-deletes: - - '14999' status: - code: 202 - message: Accepted + code: 200 + message: OK version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_group_mgmt.yaml b/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_group_mgmt.yaml index f97b9542ce3..4cdf4d1ec08 100644 --- a/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_group_mgmt.yaml +++ b/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_group_mgmt.yaml @@ -1,137 +1,36 @@ interactions: - request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-06-14T18:30:57Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-14T18:30:57Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Jun 2019 18:31:00 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created -- request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - storage account create + - storage account update Connection: - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -n -g -l --sku + - -n -g --set User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-storage/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Fri, 14 Jun 2019 18:31:01 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/d0985918-3478-41af-955a-c5aeaed1cd81?monitor=true&api-version=2019-04-01 - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/d0985918-3478-41af-955a-c5aeaed1cd81?monitor=true&api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T18:31:01.8278884Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T18:31:01.8278884Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T18:31:01.6716934Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-05T23:26:25.5043227Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-05T23:26:25.5043227Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-05T23:26:25.4262182Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '1227' + - '1168' content-type: - application/json date: - - Fri, 14 Jun 2019 18:31:19 GMT + - Fri, 05 Jul 2019 23:27:05 GMT expires: - '-1' pragma: @@ -150,39 +49,45 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"sku": {"name": "Standard_LRS"}, "tags": {}, "properties": {"encryption": + {"services": {"blob": {"enabled": true}, "file": {"enabled": true}}, "keySource": + "Microsoft.Storage"}, "supportsHttpsTrafficOnly": true, "networkAcls": {"bypass": + "AzureServices", "virtualNetworkRules": [], "ipRules": [], "defaultAction": + "Allow"}}, "kind": "StorageV2"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - storage account keys list + - storage account update Connection: - keep-alive Content-Length: - - '0' + - '346' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -n -g --query -o + - -n -g --set User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-storage/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2019-04-01 + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 response: body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-05T23:26:25.5043227Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-05T23:26:25.5043227Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-05T23:26:25.4262182Z","primaryEndpoints":{"dfs":"https://clitest000002.dfs.core.windows.net/","web":"https://clitest000002.z22.web.core.windows.net/","blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '288' + - '1319' content-type: - application/json date: - - Fri, 14 Jun 2019 18:31:20 GMT + - Fri, 05 Jul 2019 23:27:05 GMT expires: - '-1' pragma: @@ -203,88 +108,37 @@ interactions: code: 200 message: OK - request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - storage account create + - storage account show Connection: - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -n -g -l --sku + - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-storage/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Fri, 14 Jun 2019 18:31:21 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/4f3cf94d-a318-4c00-9f24-0262f284a09a?monitor=true&api-version=2019-04-01 - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/4f3cf94d-a318-4c00-9f24-0262f284a09a?monitor=true&api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T18:31:21.7813444Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T18:31:21.7813444Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T18:31:21.6563017Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-05T23:26:25.5043227Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-05T23:26:25.5043227Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-05T23:26:25.4262182Z","primaryEndpoints":{"dfs":"https://clitest000002.dfs.core.windows.net/","web":"https://clitest000002.z22.web.core.windows.net/","blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '1227' + - '1319' content-type: - application/json date: - - Fri, 14 Jun 2019 18:31:38 GMT + - Fri, 05 Jul 2019 23:27:06 GMT expires: - '-1' pragma: @@ -316,14 +170,14 @@ interactions: Content-Length: - '0' ParameterSetName: - - -n -g --query -o + - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-storage/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2019-04-01 response: body: string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' @@ -335,7 +189,7 @@ interactions: content-type: - application/json date: - - Fri, 14 Jun 2019 18:31:40 GMT + - Fri, 05 Jul 2019 23:27:06 GMT expires: - '-1' pragma: @@ -351,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -363,30 +217,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - storage account show + - storage account update Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g --set User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-storage/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2019-04-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T18:31:01.8278884Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T18:31:01.8278884Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T18:31:01.6716934Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-05T23:26:45.9930460Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-05T23:26:45.9930460Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-05T23:26:45.8836696Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '1227' + - '1168' content-type: - application/json date: - - Fri, 14 Jun 2019 18:31:41 GMT + - Fri, 05 Jul 2019 23:27:07 GMT expires: - '-1' pragma: @@ -405,39 +259,45 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"sku": {"name": "Standard_LRS"}, "tags": {}, "properties": {"encryption": + {"services": {"blob": {"enabled": true}, "file": {"enabled": true}}, "keySource": + "Microsoft.Storage"}, "supportsHttpsTrafficOnly": true, "networkAcls": {"bypass": + "AzureServices", "virtualNetworkRules": [], "ipRules": [], "defaultAction": + "Allow"}}, "kind": "StorageV2"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - storage account keys list + - storage account update Connection: - keep-alive Content-Length: - - '0' + - '346' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -n -g + - -n -g --set User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-storage/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2019-04-01 + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2019-04-01 response: body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-05T23:26:45.9930460Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-05T23:26:45.9930460Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-05T23:26:45.8836696Z","primaryEndpoints":{"dfs":"https://clitest000003.dfs.core.windows.net/","web":"https://clitest000003.z22.web.core.windows.net/","blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '288' + - '1319' content-type: - application/json date: - - Fri, 14 Jun 2019 18:31:41 GMT + - Fri, 05 Jul 2019 23:27:08 GMT expires: - '-1' pragma: @@ -453,7 +313,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -471,24 +331,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-storage/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2019-04-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T18:31:21.7813444Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T18:31:21.7813444Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T18:31:21.6563017Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-05T23:26:45.9930460Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-05T23:26:45.9930460Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-05T23:26:45.8836696Z","primaryEndpoints":{"dfs":"https://clitest000003.dfs.core.windows.net/","web":"https://clitest000003.z22.web.core.windows.net/","blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '1227' + - '1319' content-type: - application/json date: - - Fri, 14 Jun 2019 18:31:41 GMT + - Fri, 05 Jul 2019 23:27:08 GMT expires: - '-1' pragma: @@ -522,8 +382,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-storage/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: POST @@ -539,7 +399,7 @@ interactions: content-type: - application/json date: - - Fri, 14 Jun 2019 18:31:42 GMT + - Fri, 05 Jul 2019 23:27:09 GMT expires: - '-1' pragma: @@ -555,7 +415,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -581,8 +441,8 @@ interactions: ParameterSetName: - -n -g -l -i -s -f -p -k -e -u User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT @@ -592,7 +452,7 @@ interactions: string: '{"properties":{"provisioningState":"ProvisioningDomainful","sqlImageOffer":"SQL2017-WS2016","sqlImageSku":"Enterprise","wsfcDomainProfile":{"storageAccountUrl":"https://clitest000002.blob.core.windows.net/"}},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/sqlvmgroup","name":"sqlvmgroup","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachinegroup/operationResults/31408feb-0fbd-4a5f-9298-bf3d4de7a783?api-version=2017-03-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachinegroup/operationResults/68d5503d-b4f7-4ace-89fa-a5318199b6eb?api-version=2017-03-01-preview cache-control: - no-cache content-length: @@ -600,7 +460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:31:44 GMT + - Fri, 05 Jul 2019 23:27:11 GMT expires: - '-1' pragma: @@ -612,7 +472,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -630,22 +490,22 @@ interactions: ParameterSetName: - -n -g -l -i -s -f -p -k -e -u User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachinegroup/operationResults/31408feb-0fbd-4a5f-9298-bf3d4de7a783?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachinegroup/operationResults/68d5503d-b4f7-4ace-89fa-a5318199b6eb?api-version=2017-03-01-preview response: body: - string: '{"name":"31408feb-0fbd-4a5f-9298-bf3d4de7a783","status":"Succeeded","startTime":"2019-06-14T18:31:43.5Z"}' + string: '{"name":"68d5503d-b4f7-4ace-89fa-a5318199b6eb","status":"Succeeded","startTime":"2019-07-05T23:27:10.51Z"}' headers: cache-control: - no-cache content-length: - - '105' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:31:59 GMT + - Fri, 05 Jul 2019 23:27:27 GMT expires: - '-1' pragma: @@ -677,8 +537,8 @@ interactions: ParameterSetName: - -n -g -l -i -s -f -p -k -e -u User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/sqlvmgroup?api-version=2017-03-01-preview response: @@ -692,7 +552,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:31:59 GMT + - Fri, 05 Jul 2019 23:27:27 GMT expires: - '-1' pragma: @@ -724,8 +584,8 @@ interactions: ParameterSetName: - -n -g -l -i -s -f -p -k -e -u User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -741,7 +601,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:32:00 GMT + - Fri, 05 Jul 2019 23:27:27 GMT expires: - '-1' pragma: @@ -773,8 +633,8 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -790,7 +650,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:32:00 GMT + - Fri, 05 Jul 2019 23:27:28 GMT expires: - '-1' pragma: @@ -822,8 +682,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -839,7 +699,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:32:01 GMT + - Fri, 05 Jul 2019 23:27:28 GMT expires: - '-1' pragma: @@ -871,8 +731,8 @@ interactions: ParameterSetName: - -n -g -u -k User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -888,7 +748,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:32:02 GMT + - Fri, 05 Jul 2019 23:27:28 GMT expires: - '-1' pragma: @@ -910,7 +770,8 @@ interactions: body: 'b''{"location": "westus", "tags": {}, "properties": {"sqlImageOffer": "SQL2017-WS2016", "sqlImageSku": "Enterprise", "wsfcDomainProfile": {"domainFqdn": "domain.com", "clusterOperatorAccount": "myvmadmin", "sqlServiceAccount": "sqlservice", "storageAccountUrl": - "https://clitest000003.blob.core.windows.net/"}}}''' + "https://clitest000003.blob.core.windows.net/", "storageAccountPrimaryKey": + "veryFakedStorageAccountKey=="}}}''' headers: Accept: - application/json @@ -921,14 +782,14 @@ interactions: Connection: - keep-alive Content-Length: - - '319' + - '439' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g -u -k User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT @@ -938,7 +799,7 @@ interactions: string: '{"properties":{"provisioningState":"UpdatingDomainful","sqlImageOffer":"SQL2017-WS2016","sqlImageSku":"Enterprise","wsfcDomainProfile":{"storageAccountUrl":"https://clitest000003.blob.core.windows.net/"}},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/sqlvmgroup","name":"sqlvmgroup","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachinegroup/operationResults/f62b7e02-bcfe-4ed6-9c23-cdf6fa422634?api-version=2017-03-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachinegroup/operationResults/75a48d85-9411-4f2a-996d-ab897c2e2404?api-version=2017-03-01-preview cache-control: - no-cache content-length: @@ -946,7 +807,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:32:04 GMT + - Fri, 05 Jul 2019 23:27:30 GMT expires: - '-1' pragma: @@ -980,13 +841,13 @@ interactions: ParameterSetName: - -n -g -u -k User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachinegroup/operationResults/f62b7e02-bcfe-4ed6-9c23-cdf6fa422634?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachinegroup/operationResults/75a48d85-9411-4f2a-996d-ab897c2e2404?api-version=2017-03-01-preview response: body: - string: '{"name":"f62b7e02-bcfe-4ed6-9c23-cdf6fa422634","status":"Succeeded","startTime":"2019-06-14T18:32:02.953Z"}' + string: '{"name":"75a48d85-9411-4f2a-996d-ab897c2e2404","status":"Succeeded","startTime":"2019-07-05T23:27:29.887Z"}' headers: cache-control: - no-cache @@ -995,7 +856,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:32:18 GMT + - Fri, 05 Jul 2019 23:27:46 GMT expires: - '-1' pragma: @@ -1027,8 +888,8 @@ interactions: ParameterSetName: - -n -g -u -k User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/sqlvmgroup?api-version=2017-03-01-preview response: @@ -1042,7 +903,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:32:19 GMT + - Fri, 05 Jul 2019 23:27:46 GMT expires: - '-1' pragma: @@ -1072,10 +933,10 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -f + - -n -g -f -k User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -1091,7 +952,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:32:19 GMT + - Fri, 05 Jul 2019 23:27:46 GMT expires: - '-1' pragma: @@ -1113,7 +974,8 @@ interactions: body: 'b''{"location": "westus", "tags": {}, "properties": {"sqlImageOffer": "SQL2017-WS2016", "sqlImageSku": "Enterprise", "wsfcDomainProfile": {"domainFqdn": "mydomain.com", "clusterOperatorAccount": "myvmadmin", "sqlServiceAccount": "sqlservice", "storageAccountUrl": - "https://clitest000003.blob.core.windows.net/"}}}''' + "https://clitest000003.blob.core.windows.net/", "storageAccountPrimaryKey": + "veryFakedStorageAccountKey=="}}}''' headers: Accept: - application/json @@ -1124,14 +986,14 @@ interactions: Connection: - keep-alive Content-Length: - - '321' + - '441' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -n -g -f + - -n -g -f -k User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT @@ -1141,7 +1003,7 @@ interactions: string: '{"properties":{"provisioningState":"UpdatingDomainful","sqlImageOffer":"SQL2017-WS2016","sqlImageSku":"Enterprise","wsfcDomainProfile":{"storageAccountUrl":"https://clitest000003.blob.core.windows.net/"}},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/sqlvmgroup","name":"sqlvmgroup","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachinegroup/operationResults/7ccc8953-8a7c-4b6f-ada9-032b348bfa50?api-version=2017-03-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachinegroup/operationResults/f175b94a-91a6-481b-9e86-dcd05e645822?api-version=2017-03-01-preview cache-control: - no-cache content-length: @@ -1149,7 +1011,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:32:21 GMT + - Fri, 05 Jul 2019 23:27:47 GMT expires: - '-1' pragma: @@ -1181,24 +1043,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -f + - -n -g -f -k User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachinegroup/operationResults/7ccc8953-8a7c-4b6f-ada9-032b348bfa50?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachinegroup/operationResults/f175b94a-91a6-481b-9e86-dcd05e645822?api-version=2017-03-01-preview response: body: - string: '{"name":"7ccc8953-8a7c-4b6f-ada9-032b348bfa50","status":"Succeeded","startTime":"2019-06-14T18:32:20.81Z"}' + string: '{"name":"f175b94a-91a6-481b-9e86-dcd05e645822","status":"Succeeded","startTime":"2019-07-05T23:27:47.447Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:32:36 GMT + - Fri, 05 Jul 2019 23:28:02 GMT expires: - '-1' pragma: @@ -1228,10 +1090,10 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -f + - -n -g -f -k User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/sqlvmgroup?api-version=2017-03-01-preview response: @@ -1245,7 +1107,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:32:37 GMT + - Fri, 05 Jul 2019 23:28:03 GMT expires: - '-1' pragma: @@ -1275,10 +1137,10 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -p + - -n -g -p -k User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -1294,7 +1156,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:32:37 GMT + - Fri, 05 Jul 2019 23:28:04 GMT expires: - '-1' pragma: @@ -1316,7 +1178,8 @@ interactions: body: 'b''{"location": "westus", "tags": {}, "properties": {"sqlImageOffer": "SQL2017-WS2016", "sqlImageSku": "Enterprise", "wsfcDomainProfile": {"domainFqdn": "mydomain.com", "clusterOperatorAccount": "mymyvmadmin", "sqlServiceAccount": "sqlservice", - "storageAccountUrl": "https://clitest000003.blob.core.windows.net/"}}}''' + "storageAccountUrl": "https://clitest000003.blob.core.windows.net/", "storageAccountPrimaryKey": + "veryFakedStorageAccountKey=="}}}''' headers: Accept: - application/json @@ -1327,14 +1190,14 @@ interactions: Connection: - keep-alive Content-Length: - - '323' + - '443' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -n -g -p + - -n -g -p -k User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT @@ -1344,7 +1207,7 @@ interactions: string: '{"properties":{"provisioningState":"UpdatingDomainful","sqlImageOffer":"SQL2017-WS2016","sqlImageSku":"Enterprise","wsfcDomainProfile":{"storageAccountUrl":"https://clitest000003.blob.core.windows.net/"}},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/sqlvmgroup","name":"sqlvmgroup","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachinegroup/operationResults/53e1ca8a-c3cb-4e14-9788-bcbd804572e4?api-version=2017-03-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachinegroup/operationResults/5892c9ed-0707-472d-bbb6-5bc9279d861c?api-version=2017-03-01-preview cache-control: - no-cache content-length: @@ -1352,7 +1215,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:32:38 GMT + - Fri, 05 Jul 2019 23:28:06 GMT expires: - '-1' pragma: @@ -1368,7 +1231,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1384,15 +1247,15 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -p + - -n -g -p -k User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachinegroup/operationResults/53e1ca8a-c3cb-4e14-9788-bcbd804572e4?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachinegroup/operationResults/5892c9ed-0707-472d-bbb6-5bc9279d861c?api-version=2017-03-01-preview response: body: - string: '{"name":"53e1ca8a-c3cb-4e14-9788-bcbd804572e4","status":"Succeeded","startTime":"2019-06-14T18:32:38.343Z"}' + string: '{"name":"5892c9ed-0707-472d-bbb6-5bc9279d861c","status":"Succeeded","startTime":"2019-07-05T23:28:04.947Z"}' headers: cache-control: - no-cache @@ -1401,7 +1264,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:32:54 GMT + - Fri, 05 Jul 2019 23:28:21 GMT expires: - '-1' pragma: @@ -1431,10 +1294,10 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g -p + - -n -g -p -k User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/sqlvmgroup?api-version=2017-03-01-preview response: @@ -1448,7 +1311,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:32:55 GMT + - Fri, 05 Jul 2019 23:28:21 GMT expires: - '-1' pragma: @@ -1482,8 +1345,8 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: DELETE @@ -1497,11 +1360,11 @@ interactions: content-length: - '0' date: - - Fri, 14 Jun 2019 18:32:55 GMT + - Fri, 05 Jul 2019 23:28:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineGroupOperationResults/80a5110f-4b12-40c2-950b-ddb4a335a0db?api-version=2017-03-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineGroupOperationResults/27fd319c-9d43-4550-b897-edcd34d8af8f?api-version=2017-03-01-preview pragma: - no-cache server: @@ -1529,10 +1392,10 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineGroupOperationResults/80a5110f-4b12-40c2-950b-ddb4a335a0db?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineGroupOperationResults/27fd319c-9d43-4550-b897-edcd34d8af8f?api-version=2017-03-01-preview response: body: string: '' @@ -1540,7 +1403,7 @@ interactions: cache-control: - no-cache date: - - Fri, 14 Jun 2019 18:33:11 GMT + - Fri, 05 Jul 2019 23:28:37 GMT expires: - '-1' pragma: @@ -1568,8 +1431,8 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -1585,13 +1448,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:33:13 GMT + - Fri, 05 Jul 2019 23:28:39 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: @@ -1599,51 +1466,4 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 14 Jun 2019 18:33:13 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdOS1U1Qk9EVjdKNjdLNE1IU1FJT0hYREZQNDRKTE03WlVHUHxBQjkyMUUxQzYxQzk5MzI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_mgmt.yaml b/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_mgmt.yaml index acbd4542ce6..7c2c24bfb6b 100644 --- a/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_mgmt.yaml +++ b/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_mgmt.yaml @@ -1,54 +1,4 @@ interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-06-14T18:30:57Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-14T18:30:57Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Jun 2019 18:31:00 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created - request: body: null headers: @@ -63,16 +13,16 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2017-WS2016/skus/Enterprise/versions?$top=1&$orderby=name%20desc&api-version=2019-03-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.190409\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190409\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.190611\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190611\"\r\n \ }\r\n]" headers: cache-control: @@ -82,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:31:00 GMT + - Mon, 08 Jul 2019 20:46:10 GMT expires: - '-1' pragma: @@ -115,12 +65,12 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2017-WS2016/skus/Enterprise/versions/14.1.190409?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2017-WS2016/skus/Enterprise/versions/14.1.190611?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": @@ -128,7 +78,7 @@ interactions: \ },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \ \"sizeInGb\": 128\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n - \ \"location\": \"westus\",\r\n \"name\": \"14.1.190409\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190409\"\r\n}" + \ \"location\": \"westus\",\r\n \"name\": \"14.1.190611\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190611\"\r\n}" headers: cache-control: - no-cache @@ -137,7 +87,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:31:01 GMT + - Mon, 08 Jul 2019 20:46:11 GMT expires: - '-1' pragma: @@ -170,8 +120,8 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 networkmanagementclient/3.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 networkmanagementclient/3.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -187,7 +137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:31:02 GMT + - Mon, 08 Jul 2019 20:46:11 GMT expires: - '-1' pragma: @@ -215,8 +165,8 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -244,6 +194,15 @@ interactions: \ {\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_DS1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n @@ -493,9 +452,15 @@ interactions: \ },\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\": + 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\": 1638400,\r\n \"memoryInMB\": 262144,\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 @@ -517,6 +482,9 @@ interactions: \ },\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_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 @@ -562,6 +530,9 @@ interactions: \ },\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 @@ -691,6 +662,9 @@ interactions: \ },\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 @@ -763,25 +737,16 @@ interactions: \ },\r\n {\r\n \"name\": \"Standard_NV48s_v3\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\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}" headers: cache-control: - no-cache content-length: - - '37831' + - '38880' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:31:02 GMT + - Mon, 08 Jul 2019 20:46:12 GMT expires: - '-1' pragma: @@ -798,7 +763,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetSubscriptionInfo3Min;418 + - Microsoft.Compute/GetSubscriptionInfo3Min;419 status: code: 200 message: OK @@ -852,18 +817,18 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_0x4udWpmhoRK4dLxds533VPuy5mWO7wz","name":"vm_deploy_0x4udWpmhoRK4dLxds533VPuy5mWO7wz","properties":{"templateHash":"11514009591919557293","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-06-14T18:31:04.0285299Z","duration":"PT0.5908312S","correlationId":"4de6ea9c-a78e-4e75-84b1-83ae99e01310","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clisqlvm000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000002PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000002"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_QVmyxhnyQ6PTsLMjY8HigrQVWbr2nrW8","name":"vm_deploy_QVmyxhnyQ6PTsLMjY8HigrQVWbr2nrW8","properties":{"templateHash":"10393860493748946480","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-07-08T20:46:14.4421288Z","duration":"PT0.6773884S","correlationId":"813fae32-9729-4939-995c-bd7db0987fa5","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clisqlvm000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000002PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000002"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_0x4udWpmhoRK4dLxds533VPuy5mWO7wz/operationStatuses/08586410698220399373?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_QVmyxhnyQ6PTsLMjY8HigrQVWbr2nrW8/operationStatuses/08586389881117128902?api-version=2018-05-01 cache-control: - no-cache content-length: @@ -871,7 +836,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:31:03 GMT + - Mon, 08 Jul 2019 20:46:13 GMT expires: - '-1' pragma: @@ -899,10 +864,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698220399373?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586389881117128902?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -914,7 +879,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:31:34 GMT + - Mon, 08 Jul 2019 20:46:44 GMT expires: - '-1' pragma: @@ -942,10 +907,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698220399373?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586389881117128902?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -957,7 +922,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:32:04 GMT + - Mon, 08 Jul 2019 20:47:14 GMT expires: - '-1' pragma: @@ -985,10 +950,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698220399373?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586389881117128902?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1000,7 +965,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:32:34 GMT + - Mon, 08 Jul 2019 20:47:45 GMT expires: - '-1' pragma: @@ -1028,10 +993,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698220399373?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586389881117128902?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1043,7 +1008,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:33:04 GMT + - Mon, 08 Jul 2019 20:48:15 GMT expires: - '-1' pragma: @@ -1071,10 +1036,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698220399373?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586389881117128902?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1086,7 +1051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:33:35 GMT + - Mon, 08 Jul 2019 20:48:46 GMT expires: - '-1' pragma: @@ -1114,10 +1079,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586410698220399373?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586389881117128902?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -1129,7 +1094,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:34:05 GMT + - Mon, 08 Jul 2019 20:49:16 GMT expires: - '-1' pragma: @@ -1157,13 +1122,13 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_0x4udWpmhoRK4dLxds533VPuy5mWO7wz","name":"vm_deploy_0x4udWpmhoRK4dLxds533VPuy5mWO7wz","properties":{"templateHash":"11514009591919557293","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-06-14T18:33:36.6761258Z","duration":"PT2M33.2384271S","correlationId":"4de6ea9c-a78e-4e75-84b1-83ae99e01310","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clisqlvm000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000002PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000002"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_QVmyxhnyQ6PTsLMjY8HigrQVWbr2nrW8","name":"vm_deploy_QVmyxhnyQ6PTsLMjY8HigrQVWbr2nrW8","properties":{"templateHash":"10393860493748946480","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-07-08T20:48:58.4860662Z","duration":"PT2M44.7213258S","correlationId":"813fae32-9729-4939-995c-bd7db0987fa5","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clisqlvm000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000002PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000002"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET"}]}}' headers: cache-control: - no-cache @@ -1172,7 +1137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:34:05 GMT + - Mon, 08 Jul 2019 20:49:16 GMT expires: - '-1' pragma: @@ -1200,23 +1165,23 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 computemanagementclient/5.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 computemanagementclient/5.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002?$expand=instanceView&api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"b626080f-978c-4d6b-ae58-feb48e34eea0\",\r\n + string: "{\r\n \"properties\": {\r\n \"vmId\": \"3877959c-1688-498f-b3b9-7708f63fba4c\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftSQLServer\",\r\n \"offer\": \"SQL2017-WS2016\",\r\n \"sku\": \"Enterprise\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Windows\",\r\n \"name\": \"clisqlvm000002_OsDisk_1_a155cc90b2e0499eb65df1b5a22e488c\",\r\n + {\r\n \"osType\": \"Windows\",\r\n \"name\": \"clisqlvm000002_OsDisk_1_52c1e790ec2f4c8882642d27f04d4a22\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clisqlvm000002_OsDisk_1_a155cc90b2e0499eb65df1b5a22e488c\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clisqlvm000002_OsDisk_1_52c1e790ec2f4c8882642d27f04d4a22\"\r\n \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000002\",\r\n \ \"adminUsername\": \"admin123\",\r\n \"windowsConfiguration\": @@ -1229,16 +1194,16 @@ interactions: \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet - populated.\",\r\n \"time\": \"2019-06-14T18:34:06+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2019-07-08T20:49:17+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clisqlvm000002_OsDisk_1_a155cc90b2e0499eb65df1b5a22e488c\",\r\n \"statuses\": + \"clisqlvm000002_OsDisk_1_52c1e790ec2f4c8882642d27f04d4a22\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2019-06-14T18:31:14.2078008+00:00\"\r\n + succeeded\",\r\n \"time\": \"2019-07-08T20:46:22.2856766+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\": \"2019-06-14T18:33:30.3219463+00:00\"\r\n + succeeded\",\r\n \"time\": \"2019-07-08T20:48:55.6938485+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 \"type\": \"Microsoft.Compute/virtualMachines\",\r\n @@ -1252,7 +1217,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:34:05 GMT + - Mon, 08 Jul 2019 20:49:17 GMT expires: - '-1' pragma: @@ -1269,7 +1234,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31994 + - Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31965 status: code: 200 message: OK @@ -1287,8 +1252,8 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 networkmanagementclient/3.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 networkmanagementclient/3.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -1296,12 +1261,12 @@ interactions: response: body: string: "{\r\n \"name\": \"clisqlvm000002VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic\",\r\n - \ \"etag\": \"W/\\\"d438a199-34ac-4ee8-a5f9-df73106866d8\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"6a4f3145-55f9-4a21-9469-4ec80cb0199e\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"5b91543d-c4a9-49a7-b9c2-9581dae08827\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"d11b2780-44aa-472d-a970-ece5bee133bb\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigclisqlvm000002\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic/ipConfigurations/ipconfigclisqlvm000002\",\r\n - \ \"etag\": \"W/\\\"d438a199-34ac-4ee8-a5f9-df73106866d8\\\"\",\r\n + \ \"etag\": \"W/\\\"6a4f3145-55f9-4a21-9469-4ec80cb0199e\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1310,8 +1275,8 @@ interactions: \ },\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\": - \"clp54qmwiixebjjhhtjnnlicfg.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-34-CE-17\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"kiw4ljbvttluhg0noakzbymvbc.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-31-85-1D\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -1325,9 +1290,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:34:06 GMT + - Mon, 08 Jul 2019 20:49:17 GMT etag: - - W/"d438a199-34ac-4ee8-a5f9-df73106866d8" + - W/"6a4f3145-55f9-4a21-9469-4ec80cb0199e" expires: - '-1' pragma: @@ -1360,8 +1325,8 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 networkmanagementclient/3.0.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 networkmanagementclient/3.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -1369,10 +1334,10 @@ interactions: response: body: string: "{\r\n \"name\": \"clisqlvm000002PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP\",\r\n - \ \"etag\": \"W/\\\"9b7fcfc5-2dee-484d-a1b0-2af8e6c6a0cb\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"74ef2c27-7b7e-416d-a9fc-ed20fa3f2e79\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"15404dd9-077e-4233-98eb-78075a4bd6ca\",\r\n - \ \"ipAddress\": \"40.78.120.149\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"ad2800d1-a5a4-4c4d-8bd4-5646c88f33ed\",\r\n + \ \"ipAddress\": \"104.40.79.21\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic/ipConfigurations/ipconfigclisqlvm000002\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -1382,13 +1347,13 @@ interactions: cache-control: - no-cache content-length: - - '1070' + - '1069' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:34:07 GMT + - Mon, 08 Jul 2019 20:49:18 GMT etag: - - W/"9b7fcfc5-2dee-484d-a1b0-2af8e6c6a0cb" + - W/"74ef2c27-7b7e-416d-a9fc-ed20fa3f2e79" expires: - '-1' pragma: @@ -1408,88 +1373,37 @@ interactions: code: 200 message: OK - request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - storage account create + - storage account update Connection: - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -n -g -l --sku + - -n -g --set User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-storage/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Fri, 14 Jun 2019 18:34:08 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/611e8cd3-6dfb-4ebe-994e-5f51502e1e39?monitor=true&api-version=2019-04-01 - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/611e8cd3-6dfb-4ebe-994e-5f51502e1e39?monitor=true&api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2019-04-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T18:34:08.5573494Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T18:34:08.5573494Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T18:34:08.4010327Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-08T20:49:19.9871289Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-08T20:49:19.9871289Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-08T20:49:19.8621546Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '1227' + - '1168' content-type: - application/json date: - - Fri, 14 Jun 2019 18:34:25 GMT + - Mon, 08 Jul 2019 20:51:09 GMT expires: - '-1' pragma: @@ -1508,39 +1422,45 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"sku": {"name": "Standard_LRS"}, "tags": {}, "properties": {"encryption": + {"services": {"blob": {"enabled": true}, "file": {"enabled": true}}, "keySource": + "Microsoft.Storage"}, "supportsHttpsTrafficOnly": true, "networkAcls": {"bypass": + "AzureServices", "virtualNetworkRules": [], "ipRules": [], "defaultAction": + "Allow"}}, "kind": "StorageV2"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - storage account keys list + - storage account update Connection: - keep-alive Content-Length: - - '0' + - '346' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -n -g --query -o + - -n -g --set User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-storage/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2019-04-01 + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2019-04-01 response: body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-08T20:49:19.9871289Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-08T20:49:19.9871289Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-08T20:49:19.8621546Z","primaryEndpoints":{"dfs":"https://clitest000003.dfs.core.windows.net/","web":"https://clitest000003.z22.web.core.windows.net/","blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '288' + - '1319' content-type: - application/json date: - - Fri, 14 Jun 2019 18:34:27 GMT + - Mon, 08 Jul 2019 20:51:21 GMT expires: - '-1' pragma: @@ -1574,24 +1494,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-storage/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2019-04-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T18:34:08.5573494Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T18:34:08.5573494Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T18:34:08.4010327Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-08T20:49:19.9871289Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-08T20:49:19.9871289Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-08T20:49:19.8621546Z","primaryEndpoints":{"dfs":"https://clitest000003.dfs.core.windows.net/","web":"https://clitest000003.z22.web.core.windows.net/","blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '1227' + - '1319' content-type: - application/json date: - - Fri, 14 Jun 2019 18:34:27 GMT + - Mon, 08 Jul 2019 20:51:22 GMT expires: - '-1' pragma: @@ -1625,8 +1545,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-storage/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: POST @@ -1642,7 +1562,7 @@ interactions: content-type: - application/json date: - - Fri, 14 Jun 2019 18:34:28 GMT + - Mon, 08 Jul 2019 20:51:22 GMT expires: - '-1' pragma: @@ -1665,8 +1585,8 @@ interactions: - request: body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002", - "sqlServerLicenseType": "PAYG", "autoPatchingSettings": {}, "autoBackupSettings": - {}, "keyVaultCredentialSettings": {}, "serverConfigurationsManagementSettings": + "sqlServerLicenseType": "PAYG", "sqlManagement": "LightWeight", "autoPatchingSettings": + {}, "autoBackupSettings": {}, "keyVaultCredentialSettings": {}, "serverConfigurationsManagementSettings": {"sqlConnectivityUpdateSettings": {}, "sqlWorkloadTypeUpdateSettings": {}, "additionalFeaturesServerConfigurations": {}}}}\''''' headers: @@ -1679,32 +1599,32 @@ interactions: Connection: - keep-alive Content-Length: - - '568' + - '600' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Provisioning","sqlServerLicenseType":"PAYG","sqlImageSku":"Unknown"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Provisioning","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","sqlImageSku":"Unknown"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/da86dab2-bf41-43f1-a2aa-44d9da76bd79?api-version=2017-03-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c652880b-b294-4998-8c2a-fc5f493f855d?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '671' + - '701' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:34:30 GMT + - Mon, 08 Jul 2019 20:51:25 GMT expires: - '-1' pragma: @@ -1734,22 +1654,22 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/da86dab2-bf41-43f1-a2aa-44d9da76bd79?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c652880b-b294-4998-8c2a-fc5f493f855d?api-version=2017-03-01-preview response: body: - string: '{"name":"da86dab2-bf41-43f1-a2aa-44d9da76bd79","status":"InProgress","startTime":"2019-06-14T18:34:30Z"}' + string: '{"name":"c652880b-b294-4998-8c2a-fc5f493f855d","status":"InProgress","startTime":"2019-07-08T20:51:25.01Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:34:46 GMT + - Mon, 08 Jul 2019 20:51:41 GMT expires: - '-1' pragma: @@ -1781,22 +1701,22 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/da86dab2-bf41-43f1-a2aa-44d9da76bd79?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c652880b-b294-4998-8c2a-fc5f493f855d?api-version=2017-03-01-preview response: body: - string: '{"name":"da86dab2-bf41-43f1-a2aa-44d9da76bd79","status":"InProgress","startTime":"2019-06-14T18:34:30Z"}' + string: '{"name":"c652880b-b294-4998-8c2a-fc5f493f855d","status":"InProgress","startTime":"2019-07-08T20:51:25.01Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:35:01 GMT + - Mon, 08 Jul 2019 20:51:56 GMT expires: - '-1' pragma: @@ -1828,22 +1748,22 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/da86dab2-bf41-43f1-a2aa-44d9da76bd79?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c652880b-b294-4998-8c2a-fc5f493f855d?api-version=2017-03-01-preview response: body: - string: '{"name":"da86dab2-bf41-43f1-a2aa-44d9da76bd79","status":"InProgress","startTime":"2019-06-14T18:34:30Z"}' + string: '{"name":"c652880b-b294-4998-8c2a-fc5f493f855d","status":"InProgress","startTime":"2019-07-08T20:51:25.01Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:35:16 GMT + - Mon, 08 Jul 2019 20:52:10 GMT expires: - '-1' pragma: @@ -1875,22 +1795,22 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/da86dab2-bf41-43f1-a2aa-44d9da76bd79?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c652880b-b294-4998-8c2a-fc5f493f855d?api-version=2017-03-01-preview response: body: - string: '{"name":"da86dab2-bf41-43f1-a2aa-44d9da76bd79","status":"InProgress","startTime":"2019-06-14T18:34:30Z"}' + string: '{"name":"c652880b-b294-4998-8c2a-fc5f493f855d","status":"InProgress","startTime":"2019-07-08T20:51:25.01Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:35:31 GMT + - Mon, 08 Jul 2019 20:52:26 GMT expires: - '-1' pragma: @@ -1922,22 +1842,22 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/da86dab2-bf41-43f1-a2aa-44d9da76bd79?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/c652880b-b294-4998-8c2a-fc5f493f855d?api-version=2017-03-01-preview response: body: - string: '{"name":"da86dab2-bf41-43f1-a2aa-44d9da76bd79","status":"InProgress","startTime":"2019-06-14T18:34:30Z"}' + string: '{"name":"c652880b-b294-4998-8c2a-fc5f493f855d","status":"Succeeded","startTime":"2019-07-08T20:51:25.01Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:35:47 GMT + - Mon, 08 Jul 2019 20:52:41 GMT expires: - '-1' pragma: @@ -1969,22 +1889,22 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/da86dab2-bf41-43f1-a2aa-44d9da76bd79?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"name":"da86dab2-bf41-43f1-a2aa-44d9da76bd79","status":"InProgress","startTime":"2019-06-14T18:34:30Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '104' + - '734' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:36:02 GMT + - Mon, 08 Jul 2019 20:52:42 GMT expires: - '-1' pragma: @@ -2016,22 +1936,24 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/da86dab2-bf41-43f1-a2aa-44d9da76bd79?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"name":"da86dab2-bf41-43f1-a2aa-44d9da76bd79","status":"InProgress","startTime":"2019-06-14T18:34:30Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '104' + - '734' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:36:17 GMT + - Mon, 08 Jul 2019 20:52:43 GMT expires: - '-1' pragma: @@ -2057,28 +1979,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm list Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type + - -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/da86dab2-bf41-43f1-a2aa-44d9da76bd79?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines?api-version=2017-03-01-preview response: body: - string: '{"name":"da86dab2-bf41-43f1-a2aa-44d9da76bd79","status":"InProgress","startTime":"2019-06-14T18:34:30Z"}' + string: '{"value":[{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}]}' headers: cache-control: - no-cache content-length: - - '104' + - '746' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:36:33 GMT + - Mon, 08 Jul 2019 20:52:43 GMT expires: - '-1' pragma: @@ -2104,28 +2028,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm show Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type + - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/da86dab2-bf41-43f1-a2aa-44d9da76bd79?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"name":"da86dab2-bf41-43f1-a2aa-44d9da76bd79","status":"InProgress","startTime":"2019-06-14T18:34:30Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '104' + - '734' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:36:48 GMT + - Mon, 08 Jul 2019 20:52:43 GMT expires: - '-1' pragma: @@ -2151,28 +2077,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm show Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type + - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/da86dab2-bf41-43f1-a2aa-44d9da76bd79?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"name":"da86dab2-bf41-43f1-a2aa-44d9da76bd79","status":"InProgress","startTime":"2019-06-14T18:34:30Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '104' + - '734' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:37:03 GMT + - Mon, 08 Jul 2019 20:52:44 GMT expires: - '-1' pragma: @@ -2198,28 +2126,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm update Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type + - -n -g --sql-mgmt-type --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/da86dab2-bf41-43f1-a2aa-44d9da76bd79?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"name":"da86dab2-bf41-43f1-a2aa-44d9da76bd79","status":"InProgress","startTime":"2019-06-14T18:34:30Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '104' + - '734' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:37:18 GMT + - Mon, 08 Jul 2019 20:52:44 GMT expires: - '-1' pragma: @@ -2238,35 +2168,46 @@ interactions: code: 200 message: OK - request: - body: null + body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002", + "sqlImageOffer": "SQL2017-WS2016", "sqlServerLicenseType": "PAYG", "sqlManagement": + "Full", "sqlImageSku": "Enterprise"}}\''''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm update Connection: - keep-alive + Content-Length: + - '405' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -n -g -l --license-type + - -n -g --sql-mgmt-type --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/da86dab2-bf41-43f1-a2aa-44d9da76bd79?api-version=2017-03-01-preview + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"name":"da86dab2-bf41-43f1-a2aa-44d9da76bd79","status":"Succeeded","startTime":"2019-06-14T18:34:30Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Updating","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/e773c549-a66b-4269-b5ec-c94d44d95a7a?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '103' + - '693' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:37:34 GMT + - Mon, 08 Jul 2019 20:52:46 GMT expires: - '-1' pragma: @@ -2281,6 +2222,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -2292,28 +2235,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm update Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type + - -n -g --sql-mgmt-type --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/e773c549-a66b-4269-b5ec-c94d44d95a7a?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"e773c549-a66b-4269-b5ec-c94d44d95a7a","status":"InProgress","startTime":"2019-07-08T20:52:45.48Z"}' headers: cache-control: - no-cache content-length: - - '704' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:37:33 GMT + - Mon, 08 Jul 2019 20:53:01 GMT expires: - '-1' pragma: @@ -2339,30 +2282,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm update Connection: - keep-alive ParameterSetName: - - -n -g -l --license-type + - -n -g --sql-mgmt-type --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/e773c549-a66b-4269-b5ec-c94d44d95a7a?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"e773c549-a66b-4269-b5ec-c94d44d95a7a","status":"InProgress","startTime":"2019-07-08T20:52:45.48Z"}' headers: cache-control: - no-cache content-length: - - '704' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:37:34 GMT + - Mon, 08 Jul 2019 20:53:17 GMT expires: - '-1' pragma: @@ -2388,30 +2329,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm list + - sql vm update Connection: - keep-alive ParameterSetName: - - -g + - -n -g --sql-mgmt-type --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/e773c549-a66b-4269-b5ec-c94d44d95a7a?api-version=2017-03-01-preview response: body: - string: '{"value":[{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}]}' + string: '{"name":"e773c549-a66b-4269-b5ec-c94d44d95a7a","status":"InProgress","startTime":"2019-07-08T20:52:45.48Z"}' headers: cache-control: - no-cache content-length: - - '716' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:37:35 GMT + - Mon, 08 Jul 2019 20:53:32 GMT expires: - '-1' pragma: @@ -2437,30 +2376,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm show + - sql vm update Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g --sql-mgmt-type --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/e773c549-a66b-4269-b5ec-c94d44d95a7a?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"e773c549-a66b-4269-b5ec-c94d44d95a7a","status":"InProgress","startTime":"2019-07-08T20:52:45.48Z"}' headers: cache-control: - no-cache content-length: - - '704' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:37:36 GMT + - Mon, 08 Jul 2019 20:53:47 GMT expires: - '-1' pragma: @@ -2486,30 +2423,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm show + - sql vm update Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g --sql-mgmt-type --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/e773c549-a66b-4269-b5ec-c94d44d95a7a?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"e773c549-a66b-4269-b5ec-c94d44d95a7a","status":"InProgress","startTime":"2019-07-08T20:52:45.48Z"}' headers: cache-control: - no-cache content-length: - - '704' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:37:36 GMT + - Mon, 08 Jul 2019 20:54:02 GMT expires: - '-1' pragma: @@ -2539,26 +2474,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --license-type + - -n -g --sql-mgmt-type --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/e773c549-a66b-4269-b5ec-c94d44d95a7a?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"e773c549-a66b-4269-b5ec-c94d44d95a7a","status":"InProgress","startTime":"2019-07-08T20:52:45.48Z"}' headers: cache-control: - no-cache content-length: - - '704' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:37:37 GMT + - Mon, 08 Jul 2019 20:54:17 GMT expires: - '-1' pragma: @@ -2577,9 +2510,7 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002", - "sqlServerLicenseType": "AHUB", "sqlImageSku": "Enterprise"}}\''''' + body: null headers: Accept: - application/json @@ -2589,33 +2520,25 @@ interactions: - sql vm update Connection: - keep-alive - Content-Length: - - '345' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -n -g --license-type + - -n -g --sql-mgmt-type --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/e773c549-a66b-4269-b5ec-c94d44d95a7a?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Updating","sqlServerLicenseType":"AHUB","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"e773c549-a66b-4269-b5ec-c94d44d95a7a","status":"InProgress","startTime":"2019-07-08T20:52:45.48Z"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/a855a2e3-40fa-440a-a7b8-83500c819057?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '670' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:37:38 GMT + - Mon, 08 Jul 2019 20:54:32 GMT expires: - '-1' pragma: @@ -2630,8 +2553,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: code: 200 message: OK @@ -2647,24 +2568,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --license-type + - -n -g --sql-mgmt-type --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/a855a2e3-40fa-440a-a7b8-83500c819057?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/e773c549-a66b-4269-b5ec-c94d44d95a7a?api-version=2017-03-01-preview response: body: - string: '{"name":"a855a2e3-40fa-440a-a7b8-83500c819057","status":"Succeeded","startTime":"2019-06-14T18:37:38.36Z"}' + string: '{"name":"e773c549-a66b-4269-b5ec-c94d44d95a7a","status":"InProgress","startTime":"2019-07-08T20:52:45.48Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:37:54 GMT + - Mon, 08 Jul 2019 20:54:48 GMT expires: - '-1' pragma: @@ -2694,24 +2615,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --license-type + - -n -g --sql-mgmt-type --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/e773c549-a66b-4269-b5ec-c94d44d95a7a?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"e773c549-a66b-4269-b5ec-c94d44d95a7a","status":"Succeeded","startTime":"2019-07-08T20:52:45.48Z"}' headers: cache-control: - no-cache content-length: - - '704' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:37:54 GMT + - Mon, 08 Jul 2019 20:55:03 GMT expires: - '-1' pragma: @@ -2741,26 +2662,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --enable-r-services + - -n -g --sql-mgmt-type --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '704' + - '727' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:37:55 GMT + - Mon, 08 Jul 2019 20:55:04 GMT expires: - '-1' pragma: @@ -2779,10 +2698,7 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002", - "sqlServerLicenseType": "AHUB", "sqlImageSku": "Enterprise", "serverConfigurationsManagementSettings": - {"additionalFeaturesServerConfigurations": {"isRServicesEnabled": true}}}}\''''' + body: null headers: Accept: - application/json @@ -2792,33 +2708,27 @@ interactions: - sql vm update Connection: - keep-alive - Content-Length: - - '461' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -n -g --enable-r-services + - -n -g --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US - method: PUT + method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Updating","sqlServerLicenseType":"AHUB","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/6c8e4577-9f72-4e12-8b82-b5d759590125?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '670' + - '727' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:37:56 GMT + - Mon, 08 Jul 2019 20:55:04 GMT expires: - '-1' pragma: @@ -2833,13 +2743,14 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK - request: - body: null + body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002", + "sqlImageOffer": "SQL2017-WS2016", "sqlServerLicenseType": "AHUB", "sqlManagement": + "Full", "sqlImageSku": "Enterprise"}}\''''' headers: Accept: - application/json @@ -2849,25 +2760,33 @@ interactions: - sql vm update Connection: - keep-alive + Content-Length: + - '405' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -n -g --enable-r-services + - -n -g --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/6c8e4577-9f72-4e12-8b82-b5d759590125?api-version=2017-03-01-preview + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"name":"6c8e4577-9f72-4e12-8b82-b5d759590125","status":"InProgress","startTime":"2019-06-14T18:37:56Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Updating","sqlServerLicenseType":"AHUB","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/6a0eea00-d0a4-4ec4-abba-6d9aa6ddfddf?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '104' + - '693' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:38:11 GMT + - Mon, 08 Jul 2019 20:55:06 GMT expires: - '-1' pragma: @@ -2882,6 +2801,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: code: 200 message: OK @@ -2897,24 +2818,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --enable-r-services + - -n -g --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/6c8e4577-9f72-4e12-8b82-b5d759590125?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/6a0eea00-d0a4-4ec4-abba-6d9aa6ddfddf?api-version=2017-03-01-preview response: body: - string: '{"name":"6c8e4577-9f72-4e12-8b82-b5d759590125","status":"InProgress","startTime":"2019-06-14T18:37:56Z"}' + string: '{"name":"6a0eea00-d0a4-4ec4-abba-6d9aa6ddfddf","status":"InProgress","startTime":"2019-07-08T20:55:05.11Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:38:27 GMT + - Mon, 08 Jul 2019 20:55:22 GMT expires: - '-1' pragma: @@ -2944,24 +2865,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --enable-r-services + - -n -g --license-type User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/6c8e4577-9f72-4e12-8b82-b5d759590125?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/6a0eea00-d0a4-4ec4-abba-6d9aa6ddfddf?api-version=2017-03-01-preview response: body: - string: '{"name":"6c8e4577-9f72-4e12-8b82-b5d759590125","status":"InProgress","startTime":"2019-06-14T18:37:56Z"}' + string: '{"name":"6a0eea00-d0a4-4ec4-abba-6d9aa6ddfddf","status":"InProgress","startTime":"2019-07-08T20:55:05.11Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:38:42 GMT + - Mon, 08 Jul 2019 20:55:37 GMT expires: - '-1' pragma: @@ -2991,24 +2912,416 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --enable-r-services + - -n -g --license-type + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/6a0eea00-d0a4-4ec4-abba-6d9aa6ddfddf?api-version=2017-03-01-preview + response: + body: + string: '{"name":"6a0eea00-d0a4-4ec4-abba-6d9aa6ddfddf","status":"InProgress","startTime":"2019-07-08T20:55:05.11Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jul 2019 20:55:52 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql vm update + Connection: + - keep-alive + ParameterSetName: + - -n -g --license-type + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/6a0eea00-d0a4-4ec4-abba-6d9aa6ddfddf?api-version=2017-03-01-preview + response: + body: + string: '{"name":"6a0eea00-d0a4-4ec4-abba-6d9aa6ddfddf","status":"Succeeded","startTime":"2019-07-08T20:55:05.11Z"}' + headers: + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jul 2019 20:56: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql vm update + Connection: + - keep-alive + ParameterSetName: + - -n -g --license-type + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + response: + body: + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + headers: + cache-control: + - no-cache + content-length: + - '727' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jul 2019 20:56:08 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql vm update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-r-services + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + response: + body: + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + headers: + cache-control: + - no-cache + content-length: + - '727' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jul 2019 20:56:08 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 + status: + code: 200 + message: OK +- request: + body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002", + "sqlImageOffer": "SQL2017-WS2016", "sqlServerLicenseType": "AHUB", "sqlManagement": + "Full", "sqlImageSku": "Enterprise", "serverConfigurationsManagementSettings": + {"additionalFeaturesServerConfigurations": {"isRServicesEnabled": true}}}}\''''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql vm update + Connection: + - keep-alive + Content-Length: + - '521' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --enable-r-services + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + response: + body: + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Updating","sqlServerLicenseType":"AHUB","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/47806578-5b3e-490d-9d7f-c277fe920e43?api-version=2017-03-01-preview + cache-control: + - no-cache + content-length: + - '693' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jul 2019 20:56:10 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-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql vm update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-r-services + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/47806578-5b3e-490d-9d7f-c277fe920e43?api-version=2017-03-01-preview + response: + body: + string: '{"name":"47806578-5b3e-490d-9d7f-c277fe920e43","status":"InProgress","startTime":"2019-07-08T20:56:09.66Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jul 2019 20:56:25 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql vm update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-r-services + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/47806578-5b3e-490d-9d7f-c277fe920e43?api-version=2017-03-01-preview + response: + body: + string: '{"name":"47806578-5b3e-490d-9d7f-c277fe920e43","status":"InProgress","startTime":"2019-07-08T20:56:09.66Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jul 2019 20:56:41 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql vm update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-r-services + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/47806578-5b3e-490d-9d7f-c277fe920e43?api-version=2017-03-01-preview + response: + body: + string: '{"name":"47806578-5b3e-490d-9d7f-c277fe920e43","status":"InProgress","startTime":"2019-07-08T20:56:09.66Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jul 2019 20:56:56 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql vm update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-r-services User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/6c8e4577-9f72-4e12-8b82-b5d759590125?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/47806578-5b3e-490d-9d7f-c277fe920e43?api-version=2017-03-01-preview response: body: - string: '{"name":"6c8e4577-9f72-4e12-8b82-b5d759590125","status":"InProgress","startTime":"2019-06-14T18:37:56Z"}' + string: '{"name":"47806578-5b3e-490d-9d7f-c277fe920e43","status":"InProgress","startTime":"2019-07-08T20:56:09.66Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:38:58 GMT + - Mon, 08 Jul 2019 20:57:11 GMT expires: - '-1' pragma: @@ -3040,22 +3353,22 @@ interactions: ParameterSetName: - -n -g --enable-r-services User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/6c8e4577-9f72-4e12-8b82-b5d759590125?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/47806578-5b3e-490d-9d7f-c277fe920e43?api-version=2017-03-01-preview response: body: - string: '{"name":"6c8e4577-9f72-4e12-8b82-b5d759590125","status":"InProgress","startTime":"2019-06-14T18:37:56Z"}' + string: '{"name":"47806578-5b3e-490d-9d7f-c277fe920e43","status":"InProgress","startTime":"2019-07-08T20:56:09.66Z"}' headers: cache-control: - no-cache content-length: - - '104' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:39:13 GMT + - Mon, 08 Jul 2019 20:57:27 GMT expires: - '-1' pragma: @@ -3087,22 +3400,22 @@ interactions: ParameterSetName: - -n -g --enable-r-services User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/6c8e4577-9f72-4e12-8b82-b5d759590125?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/47806578-5b3e-490d-9d7f-c277fe920e43?api-version=2017-03-01-preview response: body: - string: '{"name":"6c8e4577-9f72-4e12-8b82-b5d759590125","status":"Succeeded","startTime":"2019-06-14T18:37:56Z"}' + string: '{"name":"47806578-5b3e-490d-9d7f-c277fe920e43","status":"Succeeded","startTime":"2019-07-08T20:56:09.66Z"}' headers: cache-control: - no-cache content-length: - - '103' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:39:28 GMT + - Mon, 08 Jul 2019 20:57:42 GMT expires: - '-1' pragma: @@ -3134,22 +3447,22 @@ interactions: ParameterSetName: - -n -g --enable-r-services User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '704' + - '727' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:39:28 GMT + - Mon, 08 Jul 2019 20:57:42 GMT expires: - '-1' pragma: @@ -3181,24 +3494,24 @@ interactions: ParameterSetName: - -n -g --day-of-week --maintenance-window-duration --maintenance-window-start-hour User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '704' + - '727' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:39:28 GMT + - Mon, 08 Jul 2019 20:57:42 GMT expires: - '-1' pragma: @@ -3219,9 +3532,10 @@ interactions: - request: body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002", - "sqlServerLicenseType": "AHUB", "sqlImageSku": "Enterprise", "autoPatchingSettings": - {"enable": true, "dayOfWeek": "Monday", "maintenanceWindowStartingHour": 22, - "maintenanceWindowDuration": 60}}}\''''' + "sqlImageOffer": "SQL2017-WS2016", "sqlServerLicenseType": "AHUB", "sqlManagement": + "Full", "sqlImageSku": "Enterprise", "autoPatchingSettings": {"enable": true, + "dayOfWeek": "Monday", "maintenanceWindowStartingHour": 22, "maintenanceWindowDuration": + 60}}}\''''' headers: Accept: - application/json @@ -3232,32 +3546,32 @@ interactions: Connection: - keep-alive Content-Length: - - '480' + - '540' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --day-of-week --maintenance-window-duration --maintenance-window-start-hour User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Updating","sqlServerLicenseType":"AHUB","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Updating","sqlServerLicenseType":"AHUB","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/182499a7-a2f6-4204-91ca-7b7279d4739b?api-version=2017-03-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/b5185fc1-2e0a-47c5-8db9-77abede24059?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '670' + - '693' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:39:31 GMT + - Mon, 08 Jul 2019 20:57:54 GMT expires: - '-1' pragma: @@ -3291,13 +3605,13 @@ interactions: ParameterSetName: - -n -g --day-of-week --maintenance-window-duration --maintenance-window-start-hour User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/182499a7-a2f6-4204-91ca-7b7279d4739b?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/b5185fc1-2e0a-47c5-8db9-77abede24059?api-version=2017-03-01-preview response: body: - string: '{"name":"182499a7-a2f6-4204-91ca-7b7279d4739b","status":"InProgress","startTime":"2019-06-14T18:39:30.097Z"}' + string: '{"name":"b5185fc1-2e0a-47c5-8db9-77abede24059","status":"InProgress","startTime":"2019-07-08T20:57:53.987Z"}' headers: cache-control: - no-cache @@ -3306,7 +3620,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:39:46 GMT + - Mon, 08 Jul 2019 20:58:09 GMT expires: - '-1' pragma: @@ -3338,22 +3652,22 @@ interactions: ParameterSetName: - -n -g --day-of-week --maintenance-window-duration --maintenance-window-start-hour User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/182499a7-a2f6-4204-91ca-7b7279d4739b?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/b5185fc1-2e0a-47c5-8db9-77abede24059?api-version=2017-03-01-preview response: body: - string: '{"name":"182499a7-a2f6-4204-91ca-7b7279d4739b","status":"InProgress","startTime":"2019-06-14T18:39:30.097Z"}' + string: '{"name":"b5185fc1-2e0a-47c5-8db9-77abede24059","status":"Succeeded","startTime":"2019-07-08T20:57:53.987Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:40:01 GMT + - Mon, 08 Jul 2019 20:58:25 GMT expires: - '-1' pragma: @@ -3385,22 +3699,22 @@ interactions: ParameterSetName: - -n -g --day-of-week --maintenance-window-duration --maintenance-window-start-hour User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/182499a7-a2f6-4204-91ca-7b7279d4739b?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"name":"182499a7-a2f6-4204-91ca-7b7279d4739b","status":"InProgress","startTime":"2019-06-14T18:39:30.097Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '108' + - '727' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:40:16 GMT + - Mon, 08 Jul 2019 20:58:25 GMT expires: - '-1' pragma: @@ -3430,24 +3744,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --day-of-week --maintenance-window-duration --maintenance-window-start-hour + - -n -g --enable-auto-patching User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/182499a7-a2f6-4204-91ca-7b7279d4739b?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"name":"182499a7-a2f6-4204-91ca-7b7279d4739b","status":"Succeeded","startTime":"2019-06-14T18:39:30.097Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '107' + - '727' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:40:32 GMT + - Mon, 08 Jul 2019 20:58:26 GMT expires: - '-1' pragma: @@ -3466,7 +3782,10 @@ interactions: code: 200 message: OK - request: - body: null + body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002", + "sqlImageOffer": "SQL2017-WS2016", "sqlServerLicenseType": "AHUB", "sqlManagement": + "Full", "sqlImageSku": "Enterprise", "autoPatchingSettings": {"enable": false}}}\''''' headers: Accept: - application/json @@ -3476,25 +3795,33 @@ interactions: - sql vm update Connection: - keep-alive + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -n -g --day-of-week --maintenance-window-duration --maintenance-window-start-hour + - -n -g --enable-auto-patching User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Updating","sqlServerLicenseType":"AHUB","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/e2d147f8-9d53-4065-847d-20d1360ef323?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '704' + - '693' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:40:32 GMT + - Mon, 08 Jul 2019 20:58:27 GMT expires: - '-1' pragma: @@ -3509,6 +3836,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -3526,24 +3855,22 @@ interactions: ParameterSetName: - -n -g --enable-auto-patching User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/e2d147f8-9d53-4065-847d-20d1360ef323?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"e2d147f8-9d53-4065-847d-20d1360ef323","status":"InProgress","startTime":"2019-07-08T20:58:27.15Z"}' headers: cache-control: - no-cache content-length: - - '704' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:40:32 GMT + - Mon, 08 Jul 2019 20:58:43 GMT expires: - '-1' pragma: @@ -3562,10 +3889,7 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002", - "sqlServerLicenseType": "AHUB", "sqlImageSku": "Enterprise", "autoPatchingSettings": - {"enable": false}}}\''''' + body: null headers: Accept: - application/json @@ -3575,33 +3899,25 @@ interactions: - sql vm update Connection: - keep-alive - Content-Length: - - '388' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -n -g --enable-auto-patching User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/e2d147f8-9d53-4065-847d-20d1360ef323?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Updating","sqlServerLicenseType":"AHUB","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"e2d147f8-9d53-4065-847d-20d1360ef323","status":"InProgress","startTime":"2019-07-08T20:58:27.15Z"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/ec811220-6a52-4c19-839f-a5b96bb1a904?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '670' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:40:34 GMT + - Mon, 08 Jul 2019 20:58:58 GMT expires: - '-1' pragma: @@ -3616,8 +3932,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -3635,22 +3949,22 @@ interactions: ParameterSetName: - -n -g --enable-auto-patching User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/ec811220-6a52-4c19-839f-a5b96bb1a904?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/e2d147f8-9d53-4065-847d-20d1360ef323?api-version=2017-03-01-preview response: body: - string: '{"name":"ec811220-6a52-4c19-839f-a5b96bb1a904","status":"InProgress","startTime":"2019-06-14T18:40:33.963Z"}' + string: '{"name":"e2d147f8-9d53-4065-847d-20d1360ef323","status":"InProgress","startTime":"2019-07-08T20:58:27.15Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:40:50 GMT + - Mon, 08 Jul 2019 20:59:13 GMT expires: - '-1' pragma: @@ -3682,22 +3996,22 @@ interactions: ParameterSetName: - -n -g --enable-auto-patching User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/ec811220-6a52-4c19-839f-a5b96bb1a904?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/e2d147f8-9d53-4065-847d-20d1360ef323?api-version=2017-03-01-preview response: body: - string: '{"name":"ec811220-6a52-4c19-839f-a5b96bb1a904","status":"InProgress","startTime":"2019-06-14T18:40:33.963Z"}' + string: '{"name":"e2d147f8-9d53-4065-847d-20d1360ef323","status":"InProgress","startTime":"2019-07-08T20:58:27.15Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:41:05 GMT + - Mon, 08 Jul 2019 20:59:28 GMT expires: - '-1' pragma: @@ -3729,22 +4043,22 @@ interactions: ParameterSetName: - -n -g --enable-auto-patching User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/ec811220-6a52-4c19-839f-a5b96bb1a904?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/e2d147f8-9d53-4065-847d-20d1360ef323?api-version=2017-03-01-preview response: body: - string: '{"name":"ec811220-6a52-4c19-839f-a5b96bb1a904","status":"InProgress","startTime":"2019-06-14T18:40:33.963Z"}' + string: '{"name":"e2d147f8-9d53-4065-847d-20d1360ef323","status":"InProgress","startTime":"2019-07-08T20:58:27.15Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:41:20 GMT + - Mon, 08 Jul 2019 20:59:43 GMT expires: - '-1' pragma: @@ -3776,22 +4090,22 @@ interactions: ParameterSetName: - -n -g --enable-auto-patching User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/ec811220-6a52-4c19-839f-a5b96bb1a904?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/e2d147f8-9d53-4065-847d-20d1360ef323?api-version=2017-03-01-preview response: body: - string: '{"name":"ec811220-6a52-4c19-839f-a5b96bb1a904","status":"Succeeded","startTime":"2019-06-14T18:40:33.963Z"}' + string: '{"name":"e2d147f8-9d53-4065-847d-20d1360ef323","status":"Succeeded","startTime":"2019-07-08T20:58:27.15Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:41:35 GMT + - Mon, 08 Jul 2019 20:59:58 GMT expires: - '-1' pragma: @@ -3823,22 +4137,22 @@ interactions: ParameterSetName: - -n -g --enable-auto-patching User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '704' + - '727' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:41:36 GMT + - Mon, 08 Jul 2019 20:59:59 GMT expires: - '-1' pragma: @@ -3871,24 +4185,24 @@ interactions: - -n -g --backup-schedule-type --full-backup-frequency --full-backup-start-hour --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '704' + - '727' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:41:36 GMT + - Mon, 08 Jul 2019 21:00:00 GMT expires: - '-1' pragma: @@ -3909,12 +4223,12 @@ interactions: - request: body: 'b''b\''b\\\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002", - "sqlServerLicenseType": "AHUB", "sqlImageSku": "Enterprise", "autoBackupSettings": - {"enable": true, "enableEncryption": false, "retentionPeriod": 30, "storageAccountUrl": - "https://clitest000003.blob.core.windows.net/", "storageAccessKey": "veryFakedStorageAccountKey==", - "backupSystemDbs": false, "backupScheduleType": "Manual", "fullBackupFrequency": - "Weekly", "fullBackupStartTime": 2, "fullBackupWindowHours": 2, "logBackupFrequency": - 60}}}\\\''\''''' + "sqlImageOffer": "SQL2017-WS2016", "sqlServerLicenseType": "AHUB", "sqlManagement": + "Full", "sqlImageSku": "Enterprise", "autoBackupSettings": {"enable": true, + "enableEncryption": false, "retentionPeriod": 30, "storageAccountUrl": "https://clitest000003.blob.core.windows.net/", + "storageAccessKey": "veryFakedStorageAccountKey==", "backupSystemDbs": false, + "backupScheduleType": "Manual", "fullBackupFrequency": "Weekly", "fullBackupStartTime": + 2, "fullBackupWindowHours": 2, "logBackupFrequency": 60}}}\\\''\''''' headers: Accept: - application/json @@ -3925,33 +4239,33 @@ interactions: Connection: - keep-alive Content-Length: - - '798' + - '858' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --backup-schedule-type --full-backup-frequency --full-backup-start-hour --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Updating","sqlServerLicenseType":"AHUB","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Updating","sqlServerLicenseType":"AHUB","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/45603e20-547d-4670-b1a4-ef20c9711a18?api-version=2017-03-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/8eea1d0b-9e8f-42fa-9e15-51eaa7042c08?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '670' + - '693' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:41:38 GMT + - Mon, 08 Jul 2019 21:00:01 GMT expires: - '-1' pragma: @@ -3986,13 +4300,13 @@ interactions: - -n -g --backup-schedule-type --full-backup-frequency --full-backup-start-hour --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/45603e20-547d-4670-b1a4-ef20c9711a18?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/8eea1d0b-9e8f-42fa-9e15-51eaa7042c08?api-version=2017-03-01-preview response: body: - string: '{"name":"45603e20-547d-4670-b1a4-ef20c9711a18","status":"InProgress","startTime":"2019-06-14T18:41:37.583Z"}' + string: '{"name":"8eea1d0b-9e8f-42fa-9e15-51eaa7042c08","status":"InProgress","startTime":"2019-07-08T21:00:01.433Z"}' headers: cache-control: - no-cache @@ -4001,7 +4315,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:41:53 GMT + - Mon, 08 Jul 2019 21:00:16 GMT expires: - '-1' pragma: @@ -4034,13 +4348,13 @@ interactions: - -n -g --backup-schedule-type --full-backup-frequency --full-backup-start-hour --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/45603e20-547d-4670-b1a4-ef20c9711a18?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/8eea1d0b-9e8f-42fa-9e15-51eaa7042c08?api-version=2017-03-01-preview response: body: - string: '{"name":"45603e20-547d-4670-b1a4-ef20c9711a18","status":"InProgress","startTime":"2019-06-14T18:41:37.583Z"}' + string: '{"name":"8eea1d0b-9e8f-42fa-9e15-51eaa7042c08","status":"InProgress","startTime":"2019-07-08T21:00:01.433Z"}' headers: cache-control: - no-cache @@ -4049,7 +4363,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:42:08 GMT + - Mon, 08 Jul 2019 21:00:32 GMT expires: - '-1' pragma: @@ -4082,13 +4396,13 @@ interactions: - -n -g --backup-schedule-type --full-backup-frequency --full-backup-start-hour --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/45603e20-547d-4670-b1a4-ef20c9711a18?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/8eea1d0b-9e8f-42fa-9e15-51eaa7042c08?api-version=2017-03-01-preview response: body: - string: '{"name":"45603e20-547d-4670-b1a4-ef20c9711a18","status":"InProgress","startTime":"2019-06-14T18:41:37.583Z"}' + string: '{"name":"8eea1d0b-9e8f-42fa-9e15-51eaa7042c08","status":"InProgress","startTime":"2019-07-08T21:00:01.433Z"}' headers: cache-control: - no-cache @@ -4097,7 +4411,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:42:24 GMT + - Mon, 08 Jul 2019 21:00:47 GMT expires: - '-1' pragma: @@ -4130,13 +4444,13 @@ interactions: - -n -g --backup-schedule-type --full-backup-frequency --full-backup-start-hour --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/45603e20-547d-4670-b1a4-ef20c9711a18?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/8eea1d0b-9e8f-42fa-9e15-51eaa7042c08?api-version=2017-03-01-preview response: body: - string: '{"name":"45603e20-547d-4670-b1a4-ef20c9711a18","status":"InProgress","startTime":"2019-06-14T18:41:37.583Z"}' + string: '{"name":"8eea1d0b-9e8f-42fa-9e15-51eaa7042c08","status":"InProgress","startTime":"2019-07-08T21:00:01.433Z"}' headers: cache-control: - no-cache @@ -4145,7 +4459,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:42:39 GMT + - Mon, 08 Jul 2019 21:01:02 GMT expires: - '-1' pragma: @@ -4178,13 +4492,13 @@ interactions: - -n -g --backup-schedule-type --full-backup-frequency --full-backup-start-hour --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/45603e20-547d-4670-b1a4-ef20c9711a18?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/8eea1d0b-9e8f-42fa-9e15-51eaa7042c08?api-version=2017-03-01-preview response: body: - string: '{"name":"45603e20-547d-4670-b1a4-ef20c9711a18","status":"InProgress","startTime":"2019-06-14T18:41:37.583Z"}' + string: '{"name":"8eea1d0b-9e8f-42fa-9e15-51eaa7042c08","status":"InProgress","startTime":"2019-07-08T21:00:01.433Z"}' headers: cache-control: - no-cache @@ -4193,7 +4507,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:42:55 GMT + - Mon, 08 Jul 2019 21:01:18 GMT expires: - '-1' pragma: @@ -4226,22 +4540,22 @@ interactions: - -n -g --backup-schedule-type --full-backup-frequency --full-backup-start-hour --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/45603e20-547d-4670-b1a4-ef20c9711a18?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/8eea1d0b-9e8f-42fa-9e15-51eaa7042c08?api-version=2017-03-01-preview response: body: - string: '{"name":"45603e20-547d-4670-b1a4-ef20c9711a18","status":"Succeeded","startTime":"2019-06-14T18:41:37.583Z"}' + string: '{"name":"8eea1d0b-9e8f-42fa-9e15-51eaa7042c08","status":"InProgress","startTime":"2019-07-08T21:00:01.433Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:43:09 GMT + - Mon, 08 Jul 2019 21:01:33 GMT expires: - '-1' pragma: @@ -4274,22 +4588,22 @@ interactions: - -n -g --backup-schedule-type --full-backup-frequency --full-backup-start-hour --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/8eea1d0b-9e8f-42fa-9e15-51eaa7042c08?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"8eea1d0b-9e8f-42fa-9e15-51eaa7042c08","status":"InProgress","startTime":"2019-07-08T21:00:01.433Z"}' headers: cache-control: - no-cache content-length: - - '704' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:43:10 GMT + - Mon, 08 Jul 2019 21:01:48 GMT expires: - '-1' pragma: @@ -4315,47 +4629,46 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm delete + - sql vm update Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -n -g --yes + - -n -g --backup-schedule-type --full-backup-frequency --full-backup-start-hour + --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/8eea1d0b-9e8f-42fa-9e15-51eaa7042c08?api-version=2017-03-01-preview response: body: - string: '' + string: '{"name":"8eea1d0b-9e8f-42fa-9e15-51eaa7042c08","status":"InProgress","startTime":"2019-07-08T21:00:01.433Z"}' headers: cache-control: - no-cache content-length: - - '0' + - '108' + content-type: + - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:43:11 GMT + - Mon, 08 Jul 2019 21:02:03 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineOperationResults/ca36792a-cb5d-4263-8cdc-4c7d91fdd90a?api-version=2017-03-01-preview 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-subscription-deletes: - - '14999' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4364,24 +4677,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm delete + - sql vm update Connection: - keep-alive ParameterSetName: - - -n -g --yes + - -n -g --backup-schedule-type --full-backup-frequency --full-backup-start-hour + --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineOperationResults/ca36792a-cb5d-4263-8cdc-4c7d91fdd90a?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/8eea1d0b-9e8f-42fa-9e15-51eaa7042c08?api-version=2017-03-01-preview response: body: - string: '' + string: '{"name":"8eea1d0b-9e8f-42fa-9e15-51eaa7042c08","status":"InProgress","startTime":"2019-07-08T21:00:01.433Z"}' headers: cache-control: - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:43:26 GMT + - Mon, 08 Jul 2019 21:02:19 GMT expires: - '-1' pragma: @@ -4390,11 +4708,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -4403,36 +4725,87 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm list + - sql vm update Connection: - keep-alive ParameterSetName: - - -g + - -n -g --backup-schedule-type --full-backup-frequency --full-backup-start-hour + --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/8eea1d0b-9e8f-42fa-9e15-51eaa7042c08?api-version=2017-03-01-preview response: body: - string: '{"value":[]}' + string: '{"name":"8eea1d0b-9e8f-42fa-9e15-51eaa7042c08","status":"Succeeded","startTime":"2019-07-08T21:00:01.433Z"}' headers: cache-control: - no-cache content-length: - - '12' + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jul 2019 21:02: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql vm update + Connection: + - keep-alive + ParameterSetName: + - -n -g --backup-schedule-type --full-backup-frequency --full-backup-start-hour + --full-backup-duration --sa-key --storage-account --retention-period --log-backup-frequency + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + response: + body: + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlManagement":"Full","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + headers: + cache-control: + - no-cache + content-length: + - '727' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 18:43:27 GMT + - Mon, 08 Jul 2019 21:02: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: @@ -4448,20 +4821,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - group delete + - sql vm delete Connection: - keep-alive Content-Length: - '0' ParameterSetName: - - --name --yes --no-wait + - -n -g --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: string: '' @@ -4471,20 +4844,106 @@ interactions: content-length: - '0' date: - - Fri, 14 Jun 2019 18:43:28 GMT + - Mon, 08 Jul 2019 21:02:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdJVzVMSzc3R1pHUFFUQVBNQzZUR1dTQzdIVlpHU1pRVVRVNnxFRDFENzBCNEEzN0QzRTEyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineOperationResults/b0736cf6-04d6-4e07-96d5-1d83a7b6ac15?api-version=2017-03-01-preview pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql vm delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineOperationResults/b0736cf6-04d6-4e07-96d5-1d83a7b6ac15?api-version=2017-03-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Mon, 08 Jul 2019 21:02:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql vm list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-sqlvirtualmachine/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines?api-version=2017-03-01-preview + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jul 2019 21:02:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_update_license_and_sku.yaml b/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_update_license_and_sku.yaml index f1b5f418f2e..5acceacc960 100644 --- a/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_update_license_and_sku.yaml +++ b/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_update_license_and_sku.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-06-06T00:47:48Z"}}' + "date": "2019-07-05T19:50:12Z"}}' headers: Accept: - application/json @@ -18,7 +18,7 @@ interactions: ParameterSetName: - --location --name --tag User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US @@ -26,7 +26,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_license000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001","name":"sqlvm_cli_test_license000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-06T00:47:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001","name":"sqlvm_cli_test_license000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-07-05T19:50:12Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -35,7 +35,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:47:51 GMT + - Fri, 05 Jul 2019 19:50:16 GMT expires: - '-1' pragma: @@ -45,7 +45,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -63,7 +63,7 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 computemanagementclient/5.0.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US @@ -71,8 +71,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2017-WS2016/skus/Enterprise/versions?$top=1&$orderby=name%20desc&api-version=2019-03-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.190409\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190409\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.190611\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190611\"\r\n \ }\r\n]" headers: cache-control: @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:47:53 GMT + - Fri, 05 Jul 2019 19:50:16 GMT expires: - '-1' pragma: @@ -115,12 +115,12 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 computemanagementclient/5.0.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2017-WS2016/skus/Enterprise/versions/14.1.190409?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2017-WS2016/skus/Enterprise/versions/14.1.190611?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": @@ -128,7 +128,7 @@ interactions: \ },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \ \"sizeInGb\": 128\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n - \ \"location\": \"westus\",\r\n \"name\": \"14.1.190409\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190409\"\r\n}" + \ \"location\": \"westus\",\r\n \"name\": \"14.1.190611\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2017-WS2016/Skus/Enterprise/Versions/14.1.190611\"\r\n}" headers: cache-control: - no-cache @@ -137,7 +137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:47:53 GMT + - Fri, 05 Jul 2019 19:50:17 GMT expires: - '-1' pragma: @@ -170,7 +170,7 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 networkmanagementclient/3.0.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US @@ -187,7 +187,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:47:54 GMT + - Fri, 05 Jul 2019 19:50:18 GMT expires: - '-1' pragma: @@ -215,7 +215,7 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 computemanagementclient/5.0.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US @@ -244,6 +244,15 @@ interactions: \ {\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_DS1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n @@ -417,7 +426,7 @@ interactions: 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n \ },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n + 1024000,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n \ },\r\n {\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n @@ -493,9 +502,15 @@ interactions: \ },\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\": + 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\": 1638400,\r\n \"memoryInMB\": 262144,\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 @@ -517,6 +532,9 @@ interactions: \ },\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_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 @@ -562,6 +580,9 @@ interactions: \ },\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 @@ -691,6 +712,9 @@ interactions: \ },\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 @@ -763,25 +787,16 @@ interactions: \ },\r\n {\r\n \"name\": \"Standard_NV48s_v3\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\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}" headers: cache-control: - no-cache content-length: - - '37830' + - '38880' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:47:54 GMT + - Fri, 05 Jul 2019 19:50:18 GMT expires: - '-1' pragma: @@ -798,7 +813,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetSubscriptionInfo3Min;419 + - Microsoft.Compute/GetSubscriptionInfo3Min;418 status: code: 200 message: OK @@ -852,7 +867,7 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US @@ -860,18 +875,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_license000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Resources/deployments/vm_deploy_pBghkmiJcv8iuqYjN5BNhP42VJm4o49Z","name":"vm_deploy_pBghkmiJcv8iuqYjN5BNhP42VJm4o49Z","properties":{"templateHash":"11273792511869505786","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-06-06T00:47:56.9949575Z","duration":"PT0.6395557S","correlationId":"f919c1e4-c930-48e6-bdec-9a0385e7f9a4","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clisqlvm000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000002PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000002"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Resources/deployments/vm_deploy_eyESGav7qrCPQlW90VLhIJwkSHrxFIMm","name":"vm_deploy_eyESGav7qrCPQlW90VLhIJwkSHrxFIMm","properties":{"templateHash":"8798355130273756465","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-07-05T19:50:20.428439Z","duration":"PT0.547278S","correlationId":"fd4f70a1-385f-4cb1-959a-61cc9d8dcf6e","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clisqlvm000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000002PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000002"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_license000001/providers/Microsoft.Resources/deployments/vm_deploy_pBghkmiJcv8iuqYjN5BNhP42VJm4o49Z/operationStatuses/08586418248091222238?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_license000001/providers/Microsoft.Resources/deployments/vm_deploy_eyESGav7qrCPQlW90VLhIJwkSHrxFIMm/operationStatuses/08586392506655964748?api-version=2018-05-01 cache-control: - no-cache content-length: - - '2885' + - '2882' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:47:56 GMT + - Fri, 05 Jul 2019 19:50:20 GMT expires: - '-1' pragma: @@ -881,7 +896,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -899,10 +914,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_license000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586418248091222238?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_license000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392506655964748?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -914,7 +929,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:48:27 GMT + - Fri, 05 Jul 2019 19:50:50 GMT expires: - '-1' pragma: @@ -942,10 +957,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_license000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586418248091222238?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_license000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392506655964748?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -957,7 +972,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:48:57 GMT + - Fri, 05 Jul 2019 19:51:20 GMT expires: - '-1' pragma: @@ -985,10 +1000,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_license000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586418248091222238?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_license000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392506655964748?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1000,7 +1015,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:49:27 GMT + - Fri, 05 Jul 2019 19:51:50 GMT expires: - '-1' pragma: @@ -1028,10 +1043,10 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_license000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586418248091222238?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_license000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392506655964748?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1043,7 +1058,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:49:57 GMT + - Fri, 05 Jul 2019 19:52:21 GMT expires: - '-1' pragma: @@ -1071,10 +1086,96 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_license000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586418248091222238?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_license000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392506655964748?api-version=2018-05-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jul 2019 19:52:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -l -g -n --admin-username --admin-password --image --size + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 + Azure-SDK-For-Python AZURECLI/2.0.66 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_license000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392506655964748?api-version=2018-05-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jul 2019 19:53:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -l -g -n --admin-username --admin-password --image --size + User-Agent: + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 + Azure-SDK-For-Python AZURECLI/2.0.66 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_license000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586392506655964748?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -1086,7 +1187,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:50:27 GMT + - Fri, 05 Jul 2019 19:53:51 GMT expires: - '-1' pragma: @@ -1114,22 +1215,22 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_license000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Resources/deployments/vm_deploy_pBghkmiJcv8iuqYjN5BNhP42VJm4o49Z","name":"vm_deploy_pBghkmiJcv8iuqYjN5BNhP42VJm4o49Z","properties":{"templateHash":"11273792511869505786","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-06-06T00:50:20.1846209Z","duration":"PT2M23.8292191S","correlationId":"f919c1e4-c930-48e6-bdec-9a0385e7f9a4","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clisqlvm000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000002PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000002"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Resources/deployments/vm_deploy_eyESGav7qrCPQlW90VLhIJwkSHrxFIMm","name":"vm_deploy_eyESGav7qrCPQlW90VLhIJwkSHrxFIMm","properties":{"templateHash":"8798355130273756465","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-07-05T19:53:27.2892175Z","duration":"PT3M7.4080565S","correlationId":"fd4f70a1-385f-4cb1-959a-61cc9d8dcf6e","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clisqlvm000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000002PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000002"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET"}]}}' headers: cache-control: - no-cache content-length: - - '4012' + - '4010' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:50:27 GMT + - Fri, 05 Jul 2019 19:53:52 GMT expires: - '-1' pragma: @@ -1157,7 +1258,7 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 computemanagementclient/5.0.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US @@ -1165,15 +1266,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002?$expand=instanceView&api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"7fe3cfea-d561-43c2-83d2-423575298558\",\r\n + string: "{\r\n \"properties\": {\r\n \"vmId\": \"38fb9fe5-9890-4d24-9374-79a371e43122\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftSQLServer\",\r\n \"offer\": \"SQL2017-WS2016\",\r\n \"sku\": \"Enterprise\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Windows\",\r\n \"name\": \"clisqlvm000002_OsDisk_1_a1197154120446d695821c5fa203bd9c\",\r\n + {\r\n \"osType\": \"Windows\",\r\n \"name\": \"clisqlvm000002_OsDisk_1_3ea6c7660a954bbc89a2650154888e9d\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/disks/clisqlvm000002_OsDisk_1_a1197154120446d695821c5fa203bd9c\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/disks/clisqlvm000002_OsDisk_1_3ea6c7660a954bbc89a2650154888e9d\"\r\n \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000002\",\r\n \ \"adminUsername\": \"admin123\",\r\n \"windowsConfiguration\": @@ -1186,16 +1287,16 @@ interactions: \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet - populated.\",\r\n \"time\": \"2019-06-06T00:50:29+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2019-07-05T19:53:53+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clisqlvm000002_OsDisk_1_a1197154120446d695821c5fa203bd9c\",\r\n \"statuses\": + \"clisqlvm000002_OsDisk_1_3ea6c7660a954bbc89a2650154888e9d\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2019-06-06T00:48:04.1296374+00:00\"\r\n + succeeded\",\r\n \"time\": \"2019-07-05T19:51:05.0617419+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\": \"2019-06-06T00:50:12.1921316+00:00\"\r\n + succeeded\",\r\n \"time\": \"2019-07-05T19:53:24.3898313+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 \"type\": \"Microsoft.Compute/virtualMachines\",\r\n @@ -1209,7 +1310,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:50:29 GMT + - Fri, 05 Jul 2019 19:53:52 GMT expires: - '-1' pragma: @@ -1226,7 +1327,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31918 + - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31964 status: code: 200 message: OK @@ -1244,7 +1345,7 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 networkmanagementclient/3.0.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US @@ -1253,12 +1354,12 @@ interactions: response: body: string: "{\r\n \"name\": \"clisqlvm000002VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic\",\r\n - \ \"etag\": \"W/\\\"16503fc4-3349-4836-b634-04b938e7f401\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"12812764-4f76-4935-aae5-84b5a2ed7c2f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"6014246c-8743-4345-bec5-3b4d8ceab2ee\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"c1c655ca-3e73-4244-a212-3fdd3959e55e\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigclisqlvm000002\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic/ipConfigurations/ipconfigclisqlvm000002\",\r\n - \ \"etag\": \"W/\\\"16503fc4-3349-4836-b634-04b938e7f401\\\"\",\r\n + \ \"etag\": \"W/\\\"12812764-4f76-4935-aae5-84b5a2ed7c2f\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1267,8 +1368,8 @@ interactions: \ },\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\": - \"5rioivnhmhte5k3p0vsxpzg1ge.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-33-76-A0\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"pndb1gabjdyutnxayanmjcbmzf.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-31-65-9D\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -1282,9 +1383,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:50:30 GMT + - Fri, 05 Jul 2019 19:53:53 GMT etag: - - W/"16503fc4-3349-4836-b634-04b938e7f401" + - W/"12812764-4f76-4935-aae5-84b5a2ed7c2f" expires: - '-1' pragma: @@ -1317,7 +1418,7 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 networkmanagementclient/3.0.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US @@ -1326,10 +1427,10 @@ interactions: response: body: string: "{\r\n \"name\": \"clisqlvm000002PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP\",\r\n - \ \"etag\": \"W/\\\"b242966f-e2b4-429a-bcfc-a2a86c9c9bcf\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"bc2628ec-5a83-47e8-bd2a-3489ea797f4e\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"fc64dd9a-1fbe-4efb-af7e-ee809a79ae10\",\r\n - \ \"ipAddress\": \"40.112.184.74\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"4e3e9ce4-0a24-41cf-ab45-b02517d28eae\",\r\n + \ \"ipAddress\": \"104.42.32.197\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic/ipConfigurations/ipconfigclisqlvm000002\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -1343,9 +1444,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:50:30 GMT + - Fri, 05 Jul 2019 19:53:53 GMT etag: - - W/"b242966f-e2b4-429a-bcfc-a2a86c9c9bcf" + - W/"bc2628ec-5a83-47e8-bd2a-3489ea797f4e" expires: - '-1' pragma: @@ -1367,9 +1468,10 @@ interactions: - request: body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002", - "sqlServerLicenseType": "AHUB", "sqlImageSku": "Enterprise", "autoPatchingSettings": - {}, "autoBackupSettings": {}, "keyVaultCredentialSettings": {}, "serverConfigurationsManagementSettings": - {"sqlConnectivityUpdateSettings": {}, "sqlWorkloadTypeUpdateSettings": {}, "additionalFeaturesServerConfigurations": + "sqlServerLicenseType": "AHUB", "sqlManagement": "LightWeight", "sqlImageSku": + "Enterprise", "autoPatchingSettings": {}, "autoBackupSettings": {}, "keyVaultCredentialSettings": + {}, "serverConfigurationsManagementSettings": {"sqlConnectivityUpdateSettings": + {}, "sqlWorkloadTypeUpdateSettings": {}, "additionalFeaturesServerConfigurations": {}}}}\''''' headers: Accept: @@ -1381,13 +1483,13 @@ interactions: Connection: - keep-alive Content-Length: - - '597' + - '629' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g -l --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US @@ -1395,18 +1497,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Provisioning","sqlServerLicenseType":"AHUB","sqlImageSku":"Unknown"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Provisioning","sqlServerLicenseType":"AHUB","sqlManagement":"LightWeight","sqlImageSku":"Unknown"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/1a21c1aa-dd30-4484-b51f-fdf7926e03b8?api-version=2017-03-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0a42ae4e-5cf6-4112-ac68-40758b7c9c4b?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '671' + - '701' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:50:33 GMT + - Fri, 05 Jul 2019 19:53:56 GMT expires: - '-1' pragma: @@ -1436,13 +1538,13 @@ interactions: ParameterSetName: - -n -g -l --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/1a21c1aa-dd30-4484-b51f-fdf7926e03b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0a42ae4e-5cf6-4112-ac68-40758b7c9c4b?api-version=2017-03-01-preview response: body: - string: '{"name":"1a21c1aa-dd30-4484-b51f-fdf7926e03b8","status":"InProgress","startTime":"2019-06-06T00:50:32.227Z"}' + string: '{"name":"0a42ae4e-5cf6-4112-ac68-40758b7c9c4b","status":"InProgress","startTime":"2019-07-05T19:53:55.593Z"}' headers: cache-control: - no-cache @@ -1451,7 +1553,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:50:48 GMT + - Fri, 05 Jul 2019 19:54:11 GMT expires: - '-1' pragma: @@ -1483,13 +1585,13 @@ interactions: ParameterSetName: - -n -g -l --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/1a21c1aa-dd30-4484-b51f-fdf7926e03b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0a42ae4e-5cf6-4112-ac68-40758b7c9c4b?api-version=2017-03-01-preview response: body: - string: '{"name":"1a21c1aa-dd30-4484-b51f-fdf7926e03b8","status":"InProgress","startTime":"2019-06-06T00:50:32.227Z"}' + string: '{"name":"0a42ae4e-5cf6-4112-ac68-40758b7c9c4b","status":"InProgress","startTime":"2019-07-05T19:53:55.593Z"}' headers: cache-control: - no-cache @@ -1498,7 +1600,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:51:03 GMT + - Fri, 05 Jul 2019 19:54:26 GMT expires: - '-1' pragma: @@ -1530,13 +1632,13 @@ interactions: ParameterSetName: - -n -g -l --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/1a21c1aa-dd30-4484-b51f-fdf7926e03b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0a42ae4e-5cf6-4112-ac68-40758b7c9c4b?api-version=2017-03-01-preview response: body: - string: '{"name":"1a21c1aa-dd30-4484-b51f-fdf7926e03b8","status":"InProgress","startTime":"2019-06-06T00:50:32.227Z"}' + string: '{"name":"0a42ae4e-5cf6-4112-ac68-40758b7c9c4b","status":"InProgress","startTime":"2019-07-05T19:53:55.593Z"}' headers: cache-control: - no-cache @@ -1545,7 +1647,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:51:18 GMT + - Fri, 05 Jul 2019 19:54:42 GMT expires: - '-1' pragma: @@ -1577,13 +1679,13 @@ interactions: ParameterSetName: - -n -g -l --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/1a21c1aa-dd30-4484-b51f-fdf7926e03b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0a42ae4e-5cf6-4112-ac68-40758b7c9c4b?api-version=2017-03-01-preview response: body: - string: '{"name":"1a21c1aa-dd30-4484-b51f-fdf7926e03b8","status":"InProgress","startTime":"2019-06-06T00:50:32.227Z"}' + string: '{"name":"0a42ae4e-5cf6-4112-ac68-40758b7c9c4b","status":"InProgress","startTime":"2019-07-05T19:53:55.593Z"}' headers: cache-control: - no-cache @@ -1592,7 +1694,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:51:34 GMT + - Fri, 05 Jul 2019 19:54:57 GMT expires: - '-1' pragma: @@ -1624,13 +1726,13 @@ interactions: ParameterSetName: - -n -g -l --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/1a21c1aa-dd30-4484-b51f-fdf7926e03b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0a42ae4e-5cf6-4112-ac68-40758b7c9c4b?api-version=2017-03-01-preview response: body: - string: '{"name":"1a21c1aa-dd30-4484-b51f-fdf7926e03b8","status":"InProgress","startTime":"2019-06-06T00:50:32.227Z"}' + string: '{"name":"0a42ae4e-5cf6-4112-ac68-40758b7c9c4b","status":"InProgress","startTime":"2019-07-05T19:53:55.593Z"}' headers: cache-control: - no-cache @@ -1639,7 +1741,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:51:49 GMT + - Fri, 05 Jul 2019 19:55:12 GMT expires: - '-1' pragma: @@ -1671,13 +1773,13 @@ interactions: ParameterSetName: - -n -g -l --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/1a21c1aa-dd30-4484-b51f-fdf7926e03b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0a42ae4e-5cf6-4112-ac68-40758b7c9c4b?api-version=2017-03-01-preview response: body: - string: '{"name":"1a21c1aa-dd30-4484-b51f-fdf7926e03b8","status":"InProgress","startTime":"2019-06-06T00:50:32.227Z"}' + string: '{"name":"0a42ae4e-5cf6-4112-ac68-40758b7c9c4b","status":"InProgress","startTime":"2019-07-05T19:53:55.593Z"}' headers: cache-control: - no-cache @@ -1686,7 +1788,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:52:04 GMT + - Fri, 05 Jul 2019 19:55:27 GMT expires: - '-1' pragma: @@ -1718,13 +1820,13 @@ interactions: ParameterSetName: - -n -g -l --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/1a21c1aa-dd30-4484-b51f-fdf7926e03b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0a42ae4e-5cf6-4112-ac68-40758b7c9c4b?api-version=2017-03-01-preview response: body: - string: '{"name":"1a21c1aa-dd30-4484-b51f-fdf7926e03b8","status":"InProgress","startTime":"2019-06-06T00:50:32.227Z"}' + string: '{"name":"0a42ae4e-5cf6-4112-ac68-40758b7c9c4b","status":"InProgress","startTime":"2019-07-05T19:53:55.593Z"}' headers: cache-control: - no-cache @@ -1733,7 +1835,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:52:20 GMT + - Fri, 05 Jul 2019 19:55:42 GMT expires: - '-1' pragma: @@ -1765,22 +1867,22 @@ interactions: ParameterSetName: - -n -g -l --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/1a21c1aa-dd30-4484-b51f-fdf7926e03b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0a42ae4e-5cf6-4112-ac68-40758b7c9c4b?api-version=2017-03-01-preview response: body: - string: '{"name":"1a21c1aa-dd30-4484-b51f-fdf7926e03b8","status":"InProgress","startTime":"2019-06-06T00:50:32.227Z"}' + string: '{"name":"0a42ae4e-5cf6-4112-ac68-40758b7c9c4b","status":"Succeeded","startTime":"2019-07-05T19:53:55.593Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:52:35 GMT + - Fri, 05 Jul 2019 19:55:57 GMT expires: - '-1' pragma: @@ -1812,22 +1914,22 @@ interactions: ParameterSetName: - -n -g -l --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/1a21c1aa-dd30-4484-b51f-fdf7926e03b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"name":"1a21c1aa-dd30-4484-b51f-fdf7926e03b8","status":"InProgress","startTime":"2019-06-06T00:50:32.227Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlManagement":"LightWeight","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '108' + - '734' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:52:52 GMT + - Fri, 05 Jul 2019 19:55:58 GMT expires: - '-1' pragma: @@ -1859,22 +1961,24 @@ interactions: ParameterSetName: - -n -g -l --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/1a21c1aa-dd30-4484-b51f-fdf7926e03b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"name":"1a21c1aa-dd30-4484-b51f-fdf7926e03b8","status":"InProgress","startTime":"2019-06-06T00:50:32.227Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlManagement":"LightWeight","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '108' + - '734' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:53:07 GMT + - Fri, 05 Jul 2019 19:55:59 GMT expires: - '-1' pragma: @@ -1900,28 +2004,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm update Connection: - keep-alive ParameterSetName: - - -n -g -l --image-sku --license-type + - -n -g --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/1a21c1aa-dd30-4484-b51f-fdf7926e03b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"name":"1a21c1aa-dd30-4484-b51f-fdf7926e03b8","status":"InProgress","startTime":"2019-06-06T00:50:32.227Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlManagement":"LightWeight","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '108' + - '734' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:53:22 GMT + - Fri, 05 Jul 2019 19:56:00 GMT expires: - '-1' pragma: @@ -1940,82 +2046,46 @@ interactions: code: 200 message: OK - request: - body: null + body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002", + "sqlImageOffer": "SQL2017-WS2016", "sqlServerLicenseType": "PAYG", "sqlManagement": + "LightWeight", "sqlImageSku": "Enterprise"}}\''''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm update Connection: - keep-alive - ParameterSetName: - - -n -g -l --image-sku --license-type - User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/1a21c1aa-dd30-4484-b51f-fdf7926e03b8?api-version=2017-03-01-preview - response: - body: - string: '{"name":"1a21c1aa-dd30-4484-b51f-fdf7926e03b8","status":"InProgress","startTime":"2019-06-06T00:50:32.227Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: + Content-Length: + - '412' + Content-Type: - application/json; charset=utf-8 - date: - - Thu, 06 Jun 2019 00:53:38 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 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sql vm create - Connection: - - keep-alive ParameterSetName: - - -n -g -l --image-sku --license-type + - -n -g --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/1a21c1aa-dd30-4484-b51f-fdf7926e03b8?api-version=2017-03-01-preview + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"name":"1a21c1aa-dd30-4484-b51f-fdf7926e03b8","status":"InProgress","startTime":"2019-06-06T00:50:32.227Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Updating","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/28653ab6-b26a-4fa5-827e-4abf6c15cbf4?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '108' + - '700' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:53:53 GMT + - Fri, 05 Jul 2019 19:56:01 GMT expires: - '-1' pragma: @@ -2030,6 +2100,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' status: code: 200 message: OK @@ -2041,28 +2113,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm update Connection: - keep-alive ParameterSetName: - - -n -g -l --image-sku --license-type + - -n -g --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/1a21c1aa-dd30-4484-b51f-fdf7926e03b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/28653ab6-b26a-4fa5-827e-4abf6c15cbf4?api-version=2017-03-01-preview response: body: - string: '{"name":"1a21c1aa-dd30-4484-b51f-fdf7926e03b8","status":"InProgress","startTime":"2019-06-06T00:50:32.227Z"}' + string: '{"name":"28653ab6-b26a-4fa5-827e-4abf6c15cbf4","status":"InProgress","startTime":"2019-07-05T19:56:01.03Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:54:08 GMT + - Fri, 05 Jul 2019 19:56:17 GMT expires: - '-1' pragma: @@ -2088,28 +2160,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm update Connection: - keep-alive ParameterSetName: - - -n -g -l --image-sku --license-type + - -n -g --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/1a21c1aa-dd30-4484-b51f-fdf7926e03b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/28653ab6-b26a-4fa5-827e-4abf6c15cbf4?api-version=2017-03-01-preview response: body: - string: '{"name":"1a21c1aa-dd30-4484-b51f-fdf7926e03b8","status":"InProgress","startTime":"2019-06-06T00:50:32.227Z"}' + string: '{"name":"28653ab6-b26a-4fa5-827e-4abf6c15cbf4","status":"InProgress","startTime":"2019-07-05T19:56:01.03Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:54:24 GMT + - Fri, 05 Jul 2019 19:56:32 GMT expires: - '-1' pragma: @@ -2135,28 +2207,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm update Connection: - keep-alive ParameterSetName: - - -n -g -l --image-sku --license-type + - -n -g --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/1a21c1aa-dd30-4484-b51f-fdf7926e03b8?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/28653ab6-b26a-4fa5-827e-4abf6c15cbf4?api-version=2017-03-01-preview response: body: - string: '{"name":"1a21c1aa-dd30-4484-b51f-fdf7926e03b8","status":"Succeeded","startTime":"2019-06-06T00:50:32.227Z"}' + string: '{"name":"28653ab6-b26a-4fa5-827e-4abf6c15cbf4","status":"Succeeded","startTime":"2019-07-05T19:56:01.03Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '106' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:54:39 GMT + - Fri, 05 Jul 2019 19:56:47 GMT expires: - '-1' pragma: @@ -2182,28 +2254,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm update Connection: - keep-alive ParameterSetName: - - -n -g -l --image-sku --license-type + - -n -g --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '704' + - '734' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:54:39 GMT + - Fri, 05 Jul 2019 19:56:48 GMT expires: - '-1' pragma: @@ -2229,47 +2301,47 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -n -g -l --image-sku --license-type + - -n -g --yes User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US - method: GET + method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '' headers: cache-control: - no-cache content-length: - - '704' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Thu, 06 Jun 2019 00:54:39 GMT + - Fri, 05 Jul 2019 19:56:49 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineOperationResults/aa6ac814-aeaa-42ee-8e94-37165a0912c6?api-version=2017-03-01-preview 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-subscription-deletes: + - '14999' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2278,30 +2350,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm update + - sql vm delete Connection: - keep-alive ParameterSetName: - - -n -g --image-sku --license-type + - -n -g --yes User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineOperationResults/aa6ac814-aeaa-42ee-8e94-37165a0912c6?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '' headers: cache-control: - no-cache - content-length: - - '704' - content-type: - - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:54:40 GMT + - Fri, 05 Jul 2019 19:57:04 GMT expires: - '-1' pragma: @@ -2310,36 +2376,36 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002", - "sqlServerLicenseType": "PAYG", "sqlImageSku": "Enterprise"}}\''''' + "sqlServerLicenseType": "PAYG", "sqlManagement": "LightWeight", "sqlImageSku": + "Enterprise", "autoPatchingSettings": {}, "autoBackupSettings": {}, "keyVaultCredentialSettings": + {}, "serverConfigurationsManagementSettings": {"sqlConnectivityUpdateSettings": + {}, "sqlWorkloadTypeUpdateSettings": {}, "additionalFeaturesServerConfigurations": + {}}}}\''''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - sql vm update + - sql vm create Connection: - keep-alive Content-Length: - - '345' + - '629' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -n -g --image-sku --license-type + - -n -g -l --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US @@ -2347,18 +2413,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Updating","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Provisioning","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","sqlImageSku":"Unknown"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/e3083555-bf1d-492b-8a07-64d3efc0ad32?api-version=2017-03-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0fdd4fe8-a645-4414-a356-bd310d87d114?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '670' + - '701' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:54:42 GMT + - Fri, 05 Jul 2019 19:57:07 GMT expires: - '-1' pragma: @@ -2367,17 +2433,13 @@ 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-subscription-writes: - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -2386,28 +2448,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm update + - sql vm create Connection: - keep-alive ParameterSetName: - - -n -g --image-sku --license-type + - -n -g -l --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/e3083555-bf1d-492b-8a07-64d3efc0ad32?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0fdd4fe8-a645-4414-a356-bd310d87d114?api-version=2017-03-01-preview response: body: - string: '{"name":"e3083555-bf1d-492b-8a07-64d3efc0ad32","status":"Succeeded","startTime":"2019-06-06T00:54:41.82Z"}' + string: '{"name":"0fdd4fe8-a645-4414-a356-bd310d87d114","status":"InProgress","startTime":"2019-07-05T19:57:06.64Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:54:57 GMT + - Fri, 05 Jul 2019 19:57:22 GMT expires: - '-1' pragma: @@ -2433,28 +2495,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm update + - sql vm create Connection: - keep-alive ParameterSetName: - - -n -g --image-sku --license-type + - -n -g -l --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0fdd4fe8-a645-4414-a356-bd310d87d114?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"0fdd4fe8-a645-4414-a356-bd310d87d114","status":"InProgress","startTime":"2019-07-05T19:57:06.64Z"}' headers: cache-control: - no-cache content-length: - - '704' + - '107' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:54:57 GMT + - Fri, 05 Jul 2019 19:57:37 GMT expires: - '-1' pragma: @@ -2480,47 +2542,45 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm delete + - sql vm create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -n -g --yes + - -n -g -l --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/0fdd4fe8-a645-4414-a356-bd310d87d114?api-version=2017-03-01-preview response: body: - string: '' + string: '{"name":"0fdd4fe8-a645-4414-a356-bd310d87d114","status":"Succeeded","startTime":"2019-07-05T19:57:06.64Z"}' headers: cache-control: - no-cache content-length: - - '0' + - '106' + content-type: + - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:54:58 GMT + - Fri, 05 Jul 2019 19:57:52 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineOperationResults/93985b7a-5d77-4468-96ab-321767f5b677?api-version=2017-03-01-preview 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-subscription-deletes: - - '14999' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2529,24 +2589,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm delete + - sql vm create Connection: - keep-alive ParameterSetName: - - -n -g --yes + - -n -g -l --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/sqlVirtualMachineOperationResults/93985b7a-5d77-4468-96ab-321767f5b677?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache + content-length: + - '734' + content-type: + - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:55:14 GMT + - Fri, 05 Jul 2019 19:57:53 GMT expires: - '-1' pragma: @@ -2555,18 +2619,17 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: - code: 204 - message: No Content + code: 200 + message: OK - request: - body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002", - "sqlServerLicenseType": "PAYG", "sqlImageSku": "Enterprise", "autoPatchingSettings": - {}, "autoBackupSettings": {}, "keyVaultCredentialSettings": {}, "serverConfigurationsManagementSettings": - {"sqlConnectivityUpdateSettings": {}, "sqlWorkloadTypeUpdateSettings": {}, "additionalFeaturesServerConfigurations": - {}}}}\''''' + body: null headers: Accept: - application/json @@ -2576,33 +2639,27 @@ interactions: - sql vm create Connection: - keep-alive - Content-Length: - - '597' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -n -g -l --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US - method: PUT + method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Provisioning","sqlServerLicenseType":"PAYG","sqlImageSku":"Unknown"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/8eed6a82-9126-46f8-8580-26721ebecf01?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '671' + - '734' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:55:17 GMT + - Fri, 05 Jul 2019 19:57:54 GMT expires: - '-1' pragma: @@ -2611,13 +2668,15 @@ 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-subscription-writes: - - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -2626,28 +2685,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm update Connection: - keep-alive ParameterSetName: - - -n -g -l --image-sku --license-type + - -n -g --image-sku User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/8eed6a82-9126-46f8-8580-26721ebecf01?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"name":"8eed6a82-9126-46f8-8580-26721ebecf01","status":"InProgress","startTime":"2019-06-06T00:55:17.23Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '107' + - '734' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:55:31 GMT + - Fri, 05 Jul 2019 19:57:55 GMT expires: - '-1' pragma: @@ -2666,35 +2727,46 @@ interactions: code: 200 message: OK - request: - body: null + body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002", + "sqlImageOffer": "SQL2017-WS2016", "sqlServerLicenseType": "PAYG", "sqlManagement": + "LightWeight", "sqlImageSku": "Enterprise"}}\''''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm update Connection: - keep-alive + Content-Length: + - '412' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -n -g -l --image-sku --license-type + - -n -g --image-sku User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/8eed6a82-9126-46f8-8580-26721ebecf01?api-version=2017-03-01-preview + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"name":"8eed6a82-9126-46f8-8580-26721ebecf01","status":"InProgress","startTime":"2019-06-06T00:55:17.23Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Updating","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/0af7e693-b82b-4f6d-9165-5c8de412f31c?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '107' + - '700' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:55:47 GMT + - Fri, 05 Jul 2019 19:57:57 GMT expires: - '-1' pragma: @@ -2709,6 +2781,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -2720,28 +2794,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm update Connection: - keep-alive ParameterSetName: - - -n -g -l --image-sku --license-type + - -n -g --image-sku User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/8eed6a82-9126-46f8-8580-26721ebecf01?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/0af7e693-b82b-4f6d-9165-5c8de412f31c?api-version=2017-03-01-preview response: body: - string: '{"name":"8eed6a82-9126-46f8-8580-26721ebecf01","status":"Succeeded","startTime":"2019-06-06T00:55:17.23Z"}' + string: '{"name":"0af7e693-b82b-4f6d-9165-5c8de412f31c","status":"InProgress","startTime":"2019-07-05T19:57:56.233Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '108' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:56:02 GMT + - Fri, 05 Jul 2019 19:58:11 GMT expires: - '-1' pragma: @@ -2767,28 +2841,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm update Connection: - keep-alive ParameterSetName: - - -n -g -l --image-sku --license-type + - -n -g --image-sku User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/0af7e693-b82b-4f6d-9165-5c8de412f31c?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"0af7e693-b82b-4f6d-9165-5c8de412f31c","status":"Succeeded","startTime":"2019-07-05T19:57:56.233Z"}' headers: cache-control: - no-cache content-length: - - '704' + - '107' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:56:03 GMT + - Fri, 05 Jul 2019 19:58:27 GMT expires: - '-1' pragma: @@ -2814,30 +2888,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sql vm create + - sql vm update Connection: - keep-alive ParameterSetName: - - -n -g -l --image-sku --license-type + - -n -g --image-sku User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '704' + - '734' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:56:04 GMT + - Fri, 05 Jul 2019 19:58:28 GMT expires: - '-1' pragma: @@ -2867,9 +2939,9 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --image-sku + - -n -g --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US @@ -2877,16 +2949,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '704' + - '734' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:56:04 GMT + - Fri, 05 Jul 2019 19:58:28 GMT expires: - '-1' pragma: @@ -2907,7 +2979,8 @@ interactions: - request: body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002", - "sqlServerLicenseType": "PAYG", "sqlImageSku": "Enterprise"}}\''''' + "sqlImageOffer": "SQL2017-WS2016", "sqlServerLicenseType": "AHUB", "sqlManagement": + "LightWeight", "sqlImageSku": "Enterprise"}}\''''' headers: Accept: - application/json @@ -2918,13 +2991,13 @@ interactions: Connection: - keep-alive Content-Length: - - '345' + - '412' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -n -g --image-sku + - -n -g --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US @@ -2932,18 +3005,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Updating","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Updating","sqlServerLicenseType":"AHUB","sqlManagement":"LightWeight","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/249ee051-3b12-45b8-bb5c-af33f2c7e8f1?api-version=2017-03-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/dde104cc-5c2e-4c40-8778-a62052473161?api-version=2017-03-01-preview cache-control: - no-cache content-length: - - '670' + - '700' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:56:06 GMT + - Fri, 05 Jul 2019 19:58:30 GMT expires: - '-1' pragma: @@ -2975,24 +3048,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --image-sku + - -n -g --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/249ee051-3b12-45b8-bb5c-af33f2c7e8f1?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/dde104cc-5c2e-4c40-8778-a62052473161?api-version=2017-03-01-preview response: body: - string: '{"name":"249ee051-3b12-45b8-bb5c-af33f2c7e8f1","status":"Succeeded","startTime":"2019-06-06T00:56:05.587Z"}' + string: '{"name":"dde104cc-5c2e-4c40-8778-a62052473161","status":"InProgress","startTime":"2019-07-05T19:58:29.377Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:56:20 GMT + - Fri, 05 Jul 2019 19:58:45 GMT expires: - '-1' pragma: @@ -3022,24 +3095,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --image-sku + - -n -g --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/dde104cc-5c2e-4c40-8778-a62052473161?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"dde104cc-5c2e-4c40-8778-a62052473161","status":"InProgress","startTime":"2019-07-05T19:58:29.377Z"}' headers: cache-control: - no-cache content-length: - - '704' + - '108' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:56:21 GMT + - Fri, 05 Jul 2019 19:59:00 GMT expires: - '-1' pragma: @@ -3071,81 +3144,22 @@ interactions: ParameterSetName: - -n -g --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/dde104cc-5c2e-4c40-8778-a62052473161?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"PAYG","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"dde104cc-5c2e-4c40-8778-a62052473161","status":"InProgress","startTime":"2019-07-05T19:58:29.377Z"}' headers: cache-control: - no-cache content-length: - - '704' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 06 Jun 2019 00:56:21 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 - status: - code: 200 - message: OK -- request: - body: 'b''b\''{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002", - "sqlServerLicenseType": "AHUB", "sqlImageSku": "Enterprise"}}\''''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sql vm update - Connection: - - keep-alive - Content-Length: - - '345' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n -g --image-sku --license-type - User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview - response: - body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Updating","sqlServerLicenseType":"AHUB","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/616c7dda-1b2e-4050-9762-4d880d0200d0?api-version=2017-03-01-preview - cache-control: - - no-cache - content-length: - - '670' + - '108' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:56:23 GMT + - Fri, 05 Jul 2019 19:59:16 GMT expires: - '-1' pragma: @@ -3160,8 +3174,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -3179,22 +3191,22 @@ interactions: ParameterSetName: - -n -g --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/616c7dda-1b2e-4050-9762-4d880d0200d0?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/updatesqlvirtualmachine/operationResults/dde104cc-5c2e-4c40-8778-a62052473161?api-version=2017-03-01-preview response: body: - string: '{"name":"616c7dda-1b2e-4050-9762-4d880d0200d0","status":"Succeeded","startTime":"2019-06-06T00:56:23Z"}' + string: '{"name":"dde104cc-5c2e-4c40-8778-a62052473161","status":"Succeeded","startTime":"2019-07-05T19:58:29.377Z"}' headers: cache-control: - no-cache content-length: - - '103' + - '107' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:56:39 GMT + - Fri, 05 Jul 2019 19:59:30 GMT expires: - '-1' pragma: @@ -3226,22 +3238,22 @@ interactions: ParameterSetName: - -n -g --image-sku --license-type User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.3.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sqlvirtualmachine/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2017-03-01-preview response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2017-WS2016","sqlServerLicenseType":"AHUB","sqlManagement":"LightWeight","sqlImageSku":"Enterprise"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_license000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '704' + - '734' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jun 2019 00:56:39 GMT + - Fri, 05 Jul 2019 19:59:31 GMT expires: - '-1' pragma: @@ -3275,7 +3287,7 @@ interactions: ParameterSetName: - --name --yes --no-wait User-Agent: - - python/3.6.7 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 + - python/3.6.7 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US @@ -3290,11 +3302,11 @@ interactions: content-length: - '0' date: - - Thu, 06 Jun 2019 00:56:39 GMT + - Fri, 05 Jul 2019 19:59:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxWTTo1RkNMSTo1RlRFU1Q6NUZMSUNFTlNFWUlTQ1ZKSVY3SVRPNDY1WklYNnxGQjNBRTBEQjE4MkRGNDQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxWTTo1RkNMSTo1RlRFU1Q6NUZMSUNFTlNFT1ZEUFdNWFRWQVBUQko3M09CWHw0REY2OENCNDY3RDA2NDc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 pragma: - no-cache strict-transport-security: diff --git a/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/test_sqlvm_commands.py b/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/test_sqlvm_commands.py index 0f978b26f1b..b54e56b4788 100644 --- a/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/test_sqlvm_commands.py +++ b/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/test_sqlvm_commands.py @@ -121,6 +121,7 @@ class SqlVmScenarioTest(ScenarioTest): def test_sqlvm_mgmt(self, resource_group, resource_group_location, sqlvm, storage_account): loc = 'westus' + self.cmd('storage account update -n {} -g {} --set kind=StorageV2'.format(storage_account, resource_group)) sa = self.cmd('storage account show -n {} -g {}' .format(storage_account, resource_group)).get_output_in_json() @@ -128,13 +129,19 @@ def test_sqlvm_mgmt(self, resource_group, resource_group_location, sqlvm, storag key = self.cmd('storage account keys list -n {} -g {}' .format(storage_account, resource_group)).get_output_in_json() + # Assert customer cannot create a SQL vm with no agent and do not provide offer and sku + with self.assertRaisesRegexp(CLIError, "usage error: --sql-mgmt-type NoAgent --image-sku NAME --image-offer NAME"): + self.cmd('sql vm create -n {} -g {} -l {} --license-type {} --sql-mgmt-type {}' + .format(sqlvm, resource_group, loc, 'PAYG', 'NoAgent')) + # test create sqlvm with minimal required parameters sqlvm_1 = self.cmd('sql vm create -n {} -g {} -l {} --license-type {}' .format(sqlvm, resource_group, loc, 'PAYG'), checks=[ JMESPathCheck('name', sqlvm), JMESPathCheck('location', loc), - JMESPathCheck('sqlServerLicenseType', 'PAYG') + JMESPathCheck('sqlServerLicenseType', 'PAYG'), + JMESPathCheck('sqlManagement', 'LightWeight') ]).get_output_in_json() # test list sqlvm should be 1 @@ -158,6 +165,15 @@ def test_sqlvm_mgmt(self, resource_group, resource_group_location, sqlvm, storag JMESPathCheck('id', sqlvm_1['id']) ]) + # test update sqlvm with management mode to make sure it updates to full. + self.cmd('sql vm update -n {} -g {} --sql-mgmt-type {} --yes' + .format(sqlvm, resource_group, 'Full'), + checks=[ + JMESPathCheck('name', sqlvm), + JMESPathCheck('location', loc), + JMESPathCheck('sqlManagement', 'Full') + ]).get_output_in_json() + # test license change self.cmd('sql vm update -n {} -g {} --license-type {}' .format(sqlvm, resource_group, 'AHUB'), @@ -246,13 +262,14 @@ def test_sqlvm_create_and_delete(self, resource_group, resource_group_location, ]) # test create sqlvm with sql connectivity settings - self.cmd('sql vm create -n {} -g {} -l {} --license-type {} --connectivity-type {} --port {} --sql-auth-update-username {} --sql-auth-update-pwd {}' - .format(sqlvm3, resource_group, resource_group_location, 'PAYG', 'PUBLIC', 1433, 'sqladmin123', 'SecretPassword123'), + self.cmd('sql vm create -n {} -g {} -l {} --license-type {} --sql-mgmt-type {} --connectivity-type {} --port {} --sql-auth-update-username {} --sql-auth-update-pwd {}' + .format(sqlvm3, resource_group, resource_group_location, 'PAYG', 'Full', 'PUBLIC', 1433, 'sqladmin123', 'SecretPassword123'), checks=[ JMESPathCheck('name', sqlvm3), JMESPathCheck('location', resource_group_location), JMESPathCheck('provisioningState', "Succeeded"), - JMESPathCheck('sqlServerLicenseType', 'PAYG') + JMESPathCheck('sqlServerLicenseType', 'PAYG'), + JMESPathCheck('sqlManagement', 'Full') ]) # For allocation purposes, will delete the vms and re create them with different settings. @@ -272,16 +289,19 @@ def test_sqlvm_create_and_delete(self, resource_group, resource_group_location, checks=NoneCheck()) # test create sqlvm1 with auto patching - self.cmd('sql vm create -n {} -g {} -l {} --license-type {} --day-of-week {} --maintenance-window-duration {} --maintenance-window-start-hour {}' - .format(sqlvm1, resource_group, resource_group_location, 'PAYG', 'Monday', 60, 22), + self.cmd('sql vm create -n {} -g {} -l {} --license-type {} --sql-mgmt-type {} --day-of-week {} --maintenance-window-duration {} --maintenance-window-start-hour {}' + .format(sqlvm1, resource_group, resource_group_location, 'PAYG', 'Full', 'Monday', 60, 22), checks=[ JMESPathCheck('name', sqlvm1), JMESPathCheck('location', resource_group_location), JMESPathCheck('provisioningState', "Succeeded"), - JMESPathCheck('sqlServerLicenseType', 'PAYG') + JMESPathCheck('sqlServerLicenseType', 'PAYG'), + JMESPathCheck('sqlManagement', 'Full') ]) # test create sqlvm1 with auto backup + self.cmd('storage account update -n {} -g {} --set kind=StorageV2'.format(storage_account, resource_group)) + sa = self.cmd('storage account show -n {} -g {}' .format(storage_account, resource_group)).get_output_in_json() @@ -289,23 +309,25 @@ def test_sqlvm_create_and_delete(self, resource_group, resource_group_location, .format(storage_account, resource_group)).get_output_in_json() self.cmd('sql vm create -n {} -g {} -l {} --license-type {} --backup-schedule-type {} --full-backup-frequency {} --full-backup-start-hour {} --full-backup-duration {} ' - '--sa-key {} --storage-account {} --retention-period {} --log-backup-frequency {}' - .format(sqlvm2, resource_group, resource_group_location, 'PAYG', 'Manual', 'Weekly', 2, 2, key[0]['value'], sa['primaryEndpoints']['blob'], 30, 60), + '--sa-key {} --storage-account {} --retention-period {} --log-backup-frequency {} --sql-mgmt-type {}' + .format(sqlvm2, resource_group, resource_group_location, 'PAYG', 'Manual', 'Weekly', 2, 2, key[0]['value'], sa['primaryEndpoints']['blob'], 30, 60, 'Full'), checks=[ JMESPathCheck('name', sqlvm2), JMESPathCheck('location', resource_group_location), JMESPathCheck('provisioningState', "Succeeded"), - JMESPathCheck('sqlServerLicenseType', 'PAYG') + JMESPathCheck('sqlServerLicenseType', 'PAYG'), + JMESPathCheck('sqlManagement', 'Full') ]) # test create sqlvm1 with R services on - self.cmd('sql vm create -n {} -g {} -l {} --license-type {} --enable-r-services {}' - .format(sqlvm3, resource_group, resource_group_location, 'PAYG', True), + self.cmd('sql vm create -n {} -g {} -l {} --license-type {} --enable-r-services {} --sql-mgmt-type {}' + .format(sqlvm3, resource_group, resource_group_location, 'PAYG', True, 'Full'), checks=[ JMESPathCheck('name', sqlvm3), JMESPathCheck('location', resource_group_location), JMESPathCheck('provisioningState', "Succeeded"), - JMESPathCheck('sqlServerLicenseType', 'PAYG') + JMESPathCheck('sqlServerLicenseType', 'PAYG'), + JMESPathCheck('sqlManagement', 'Full') ]) @ResourceGroupPreparer(name_prefix='sqlvm_cli_test_license') @@ -386,12 +408,16 @@ def test_sqlvm_group_mgmt(self, resource_group, resource_group_location, storage operator_acc = 'myvmadmin' sql_service_acc = 'sqlservice' + self.cmd('storage account update -n {} -g {} --set kind=StorageV2'.format(storage_account1, resource_group)) + sa_1 = self.cmd('storage account show -n {} -g {}' .format(storage_account1, resource_group)).get_output_in_json() key_1 = self.cmd('storage account keys list -n {} -g {}' .format(storage_account1, resource_group)).get_output_in_json() + self.cmd('storage account update -n {} -g {} --set kind=StorageV2'.format(storage_account2, resource_group)) + sa_2 = self.cmd('storage account show -n {} -g {}' .format(storage_account2, resource_group)).get_output_in_json() @@ -433,8 +459,8 @@ def test_sqlvm_group_mgmt(self, resource_group, resource_group_location, storage ]) # change the domain - self.cmd('sql vm group update -n {} -g {} -f {}' - .format(name, resource_group, 'my' + domain), + self.cmd('sql vm group update -n {} -g {} -f {} -k {}' + .format(name, resource_group, 'my' + domain, key_2[0]['value']), checks=[ JMESPathCheck('name', name), JMESPathCheck('location', resource_group_location), @@ -442,8 +468,8 @@ def test_sqlvm_group_mgmt(self, resource_group, resource_group_location, storage ]) # change the operator account - self.cmd('sql vm group update -n {} -g {} -p {}' - .format(name, resource_group, 'my' + operator_acc), + self.cmd('sql vm group update -n {} -g {} -p {} -k {}' + .format(name, resource_group, 'my' + operator_acc, key_2[0]['value']), checks=[ JMESPathCheck('name', name), JMESPathCheck('location', resource_group_location), @@ -485,6 +511,8 @@ def test_sqlvm_add_and_remove(self, resource_group, resource_group_location, dom 'https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/201-vm-domain-join-existing/azuredeploy.json', parameters_string)) + self.cmd('storage account update -n {} -g {} --set kind=StorageV2'.format(storage_account, resource_group)) + # Create the sqlvm group sa = self.cmd('storage account show -n {} -g {}' .format(storage_account, resource_group)).get_output_in_json() @@ -497,8 +525,8 @@ def test_sqlvm_add_and_remove(self, resource_group, resource_group_location, dom 'domain.com', 'admin123', key[0]['value'], 'admin123', sa['primaryEndpoints']['blob'], 'admin123')).get_output_in_json() # test create sqlvm1 - self.cmd('sql vm create -n {} -g {} -l {} --license-type {} --connectivity-type {} --port {} --sql-auth-update-pwd {} --sql-auth-update-username {}' - .format(sqlvm1, resource_group, resource_group_location, 'PAYG', 'PRIVATE', 1433, 'admin123', 'SecretPassword123'), + self.cmd('sql vm create -n {} -g {} -l {} --license-type {} --connectivity-type {} --port {} --sql-auth-update-pwd {} --sql-auth-update-username {} --sql-mgmt-type {}' + .format(sqlvm1, resource_group, resource_group_location, 'PAYG', 'PRIVATE', 1433, 'admin123', 'SecretPassword123', 'Full'), checks=[ JMESPathCheck('name', sqlvm1), JMESPathCheck('location', resource_group_location), diff --git a/src/azure-cli/requirements.py2.Darwin.txt b/src/azure-cli/requirements.py2.Darwin.txt index 68d3436af3a..cfe16399c13 100644 --- a/src/azure-cli/requirements.py2.Darwin.txt +++ b/src/azure-cli/requirements.py2.Darwin.txt @@ -71,7 +71,7 @@ azure-mgmt-servicebus==0.6.0 azure-mgmt-servicefabric==0.2.0 azure-mgmt-signalr==0.1.1 azure-mgmt-sql==0.12.0 -azure-mgmt-sqlvirtualmachine==0.3.0 +azure-mgmt-sqlvirtualmachine==0.4.0 azure-mgmt-storage==4.0.0 azure-mgmt-trafficmanager==0.51.0 azure-mgmt-web==0.42.0 diff --git a/src/azure-cli/requirements.py2.Linux.txt b/src/azure-cli/requirements.py2.Linux.txt index 68d3436af3a..cfe16399c13 100644 --- a/src/azure-cli/requirements.py2.Linux.txt +++ b/src/azure-cli/requirements.py2.Linux.txt @@ -71,7 +71,7 @@ azure-mgmt-servicebus==0.6.0 azure-mgmt-servicefabric==0.2.0 azure-mgmt-signalr==0.1.1 azure-mgmt-sql==0.12.0 -azure-mgmt-sqlvirtualmachine==0.3.0 +azure-mgmt-sqlvirtualmachine==0.4.0 azure-mgmt-storage==4.0.0 azure-mgmt-trafficmanager==0.51.0 azure-mgmt-web==0.42.0 diff --git a/src/azure-cli/requirements.py2.windows.txt b/src/azure-cli/requirements.py2.windows.txt index 4324d6bde5a..9d38159666a 100644 --- a/src/azure-cli/requirements.py2.windows.txt +++ b/src/azure-cli/requirements.py2.windows.txt @@ -70,7 +70,7 @@ azure-mgmt-servicebus==0.6.0 azure-mgmt-servicefabric==0.2.0 azure-mgmt-signalr==0.1.1 azure-mgmt-sql==0.12.0 -azure-mgmt-sqlvirtualmachine==0.3.0 +azure-mgmt-sqlvirtualmachine==0.4.0 azure-mgmt-storage==4.0.0 azure-mgmt-trafficmanager==0.51.0 azure-mgmt-web==0.42.0 diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 827c5617c3d..e5c5d372bf4 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -71,7 +71,7 @@ azure-mgmt-servicebus==0.6.0 azure-mgmt-servicefabric==0.2.0 azure-mgmt-signalr==0.1.1 azure-mgmt-sql==0.12.0 -azure-mgmt-sqlvirtualmachine==0.3.0 +azure-mgmt-sqlvirtualmachine==0.4.0 azure-mgmt-storage==4.0.0 azure-mgmt-trafficmanager==0.51.0 azure-mgmt-web==0.42.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 827c5617c3d..e5c5d372bf4 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -71,7 +71,7 @@ azure-mgmt-servicebus==0.6.0 azure-mgmt-servicefabric==0.2.0 azure-mgmt-signalr==0.1.1 azure-mgmt-sql==0.12.0 -azure-mgmt-sqlvirtualmachine==0.3.0 +azure-mgmt-sqlvirtualmachine==0.4.0 azure-mgmt-storage==4.0.0 azure-mgmt-trafficmanager==0.51.0 azure-mgmt-web==0.42.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index a980ba85217..ff9124c9a0e 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -70,7 +70,7 @@ azure-mgmt-servicebus==0.6.0 azure-mgmt-servicefabric==0.2.0 azure-mgmt-signalr==0.1.1 azure-mgmt-sql==0.12.0 -azure-mgmt-sqlvirtualmachine==0.3.0 +azure-mgmt-sqlvirtualmachine==0.4.0 azure-mgmt-storage==4.0.0 azure-mgmt-trafficmanager==0.51.0 azure-mgmt-web==0.42.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index d2bfd15fdf5..24b70d14b32 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -118,7 +118,7 @@ 'azure-mgmt-servicefabric~=0.2.0', 'azure-mgmt-signalr~=0.1.1', 'azure-mgmt-sql~=0.12', - 'azure-mgmt-sqlvirtualmachine~=0.3.0', + 'azure-mgmt-sqlvirtualmachine~=0.4.0', 'azure-mgmt-storage~=4.0', 'azure-mgmt-trafficmanager~=0.51.0', 'azure-mgmt-web~=0.42.0',