diff --git a/src/azure-cli/azure/cli/command_modules/sql/_format.py b/src/azure-cli/azure/cli/command_modules/sql/_format.py index 33bf6be9cea..dd4104c9503 100644 --- a/src/azure-cli/azure/cli/command_modules/sql/_format.py +++ b/src/azure-cli/azure/cli/command_modules/sql/_format.py @@ -71,6 +71,32 @@ def _apply_format(result, format_group): # Apply format function to list return [format_group(item) for item in obj_list] +############################################### +# sql instance-pool # +############################################### + + +def instance_pool_table_format(result): + ''' + Formats an instance pool or list of instance pools as summary results for display with "-o table". + ''' + def _instance_pool_table_format(result): + ''' + Formats an instance pool or list of instance pools as summary results for display with "-o table". + ''' + from collections import OrderedDict + sku = result['sku'] + return OrderedDict([ + ('name', result['name']), + ('resourceGroup', result['resourceGroup']), + ('location', result['location']), + ('Capacity', result['vCores']), + ('SKU Family', sku['family']), + ('SKU Tier', sku['tier']), + ('Tags', str(result['tags']) if result['tags'] else '') + ]) + + return _apply_format(result, _instance_pool_table_format) ############################################### # sql server # diff --git a/src/azure-cli/azure/cli/command_modules/sql/_help.py b/src/azure-cli/azure/cli/command_modules/sql/_help.py index 0567cd49d60..aaf0a982062 100644 --- a/src/azure-cli/azure/cli/command_modules/sql/_help.py +++ b/src/azure-cli/azure/cli/command_modules/sql/_help.py @@ -467,6 +467,65 @@ short-summary: Updates the instance failover group. """ +helps['sql instance-pool'] = """ +type: group +short-summary: Manage instance pools. +""" + +helps['sql instance-pool create'] = """ +type: command +short-summary: Create an instance pool. +examples: + - name: Example to create an instance pool (include --no-wait in the end to get an asynchronous experience) + text: az sql instance-pool create -g resource_group_name -n instance_pool_name -l location --subnet /subscriptions/{SubID}/resourceGroups/{ResourceGroup}/providers/Microsoft.Network/virtualNetworks/{VNETName}/subnets/{SubnetName} --license-type LicenseIncluded --capacity 8 -e GeneralPurpose -f Gen5 --no-wait + - name: Example to create an instance pool with subnet name and vnet-name + text: az sql instance-pool create --license-type LicenseIncluded -l northcentralus -n myinstancepool -c 8 -e GeneralPurpose -f Gen5 -g billingPools --subnet mysubnetname --vnet-name myvnetname +""" + +helps['sql instance-pool delete'] = """ +type: command +short-summary: Delete an instance pool. +examples: + - name: Delete an instance pool + text: az sql instance-pool delete -g mygroup -n myinstancepool --yes +""" + +helps['sql instance-pool list'] = """ +type: command +short-summary: List available instance pools. +examples: + - name: List all instance pools in the current subscription. + text: az sql instance-pool list + - name: List all instance pools in a resource group. + text: az sql instance-pool list -g mygroup +""" + +helps['sql instance-pool show'] = """ +type: command +short-summary: Get the details for an instance pool. +examples: + - name: Get the details for an instance pool + text: az sql instance-pool show -g mygroup -n myinstancepool +""" + +helps['sql instance-pool update'] = """ +type: command +short-summary: Update an instance pool. +examples: + - name: Update an instance pool with new tags (make sure they are space separated if there are multiple tags) + text: az sql instance-pool update -n myinstancepool -g mygroup --tags mykey1=myvalue1 mykey2=myvalue2 + - name: Clear the tags assigned to an instance pool + text: az sql instance-pool update -n myinstancepool -g mygroup --tags "" +""" + +helps['sql instance-pool wait'] = """ +type: command +short-summary: Wait for an instance pool to reach a desired state. +examples: + - name: Wait until an instance pool gets created. + text: az sql instance-pool wait -n myinstancepool -g mygroup --created +""" + helps['sql mi'] = """ type: group short-summary: Manage SQL managed instances. diff --git a/src/azure-cli/azure/cli/command_modules/sql/_params.py b/src/azure-cli/azure/cli/command_modules/sql/_params.py index 89b28dc73c2..e38c4d253bb 100644 --- a/src/azure-cli/azure/cli/command_modules/sql/_params.py +++ b/src/azure-cli/azure/cli/command_modules/sql/_params.py @@ -14,6 +14,7 @@ ElasticPoolPerDatabaseSettings, ImportExtensionRequest, ExportRequest, + InstancePool, ManagedDatabase, ManagedInstance, ManagedInstanceAdministrator, @@ -1043,6 +1044,69 @@ def _configure_security_policy_storage_params(arg_ctx): c.argument('allow_data_loss', arg_type=allow_data_loss_param_type) + ############################################### + # sql instance pool # + ############################################### + + with self.argument_context('sql instance-pool') as c: + c.argument('instance_pool_name', + options_list=['--name', '-n'], + help="Instance Pool Name") + + c.argument( + 'tier', + arg_type=tier_param_type, + required=True, + help='The edition component of the sku. Allowed value: GeneralPurpose.') + + c.argument('family', + arg_type=family_param_type, + required=True, + help='The compute generation component of the sku. ' + 'Allowed value: Gen5') + + c.argument('license_type', + arg_type=get_enum_type(DatabaseLicenseType), + help='The license type to apply for this instance pool.') + + with self.argument_context('sql instance-pool create') as c: + # Create args that will be used to build up the InstancePool object + create_args_for_complex_type( + c, 'parameters', InstancePool, [ + 'location', + 'license_type', + 'subnet_id', + 'vcores', + 'tags' + ]) + + c.argument('vcores', + required=True, + arg_type=capacity_param_type, + help='Capacity of the instance pool in vcores.') + + c.argument( + 'subnet_id', + options_list=['--subnet'], + required=True, + help='Name or ID of the subnet that allows access to an Instance Pool. ' + 'If subnet name is provided, --vnet-name must be provided.') + + # Create args that will be used to build up the Instance Pool's Sku object + create_args_for_complex_type( + c, 'sku', Sku, [ + 'family', + 'name', + 'tier', + ]) + + c.ignore('name') # Hide sku name + + c.extra('vnet_name', + options_list=['--vnet-name'], + help='The virtual network name', + validator=validate_subnet) + ############################################### # sql server # ############################################### diff --git a/src/azure-cli/azure/cli/command_modules/sql/_util.py b/src/azure-cli/azure/cli/command_modules/sql/_util.py index 218b342e790..3bea3e64b49 100644 --- a/src/azure-cli/azure/cli/command_modules/sql/_util.py +++ b/src/azure-cli/azure/cli/command_modules/sql/_util.py @@ -84,6 +84,10 @@ def get_sql_firewall_rules_operations(cli_ctx, _): return get_sql_management_client(cli_ctx).firewall_rules +def get_sql_instance_pools_operations(cli_ctx, _): + return get_sql_management_client(cli_ctx).instance_pools + + def get_sql_recommended_elastic_pools_operations(cli_ctx, _): return get_sql_management_client(cli_ctx).recommended_elastic_pools diff --git a/src/azure-cli/azure/cli/command_modules/sql/_validators.py b/src/azure-cli/azure/cli/command_modules/sql/_validators.py index 0ca508af5ef..7a62b36588c 100644 --- a/src/azure-cli/azure/cli/command_modules/sql/_validators.py +++ b/src/azure-cli/azure/cli/command_modules/sql/_validators.py @@ -82,14 +82,21 @@ def validate_subnet(cmd, namespace): from msrestazure.tools import resource_id, is_valid_resource_id from azure.cli.core.commands.client_factory import get_subscription_id - subnet = namespace.virtual_network_subnet_id + # Different custom function arg names, instance pool has subnet_id + is_instance_pool = False + if hasattr(namespace, "subnet_id"): + is_instance_pool = True + subnet = namespace.subnet_id + else: + subnet = namespace.virtual_network_subnet_id + subnet_is_id = is_valid_resource_id(subnet) vnet = namespace.vnet_name if (subnet_is_id and not vnet) or (not subnet and not vnet): pass elif subnet and not subnet_is_id and vnet: - namespace.virtual_network_subnet_id = resource_id( + virtual_network_subnet_id = resource_id( subscription=get_subscription_id(cmd.cli_ctx), resource_group=namespace.resource_group_name, namespace='Microsoft.Network', @@ -97,6 +104,10 @@ def validate_subnet(cmd, namespace): name=vnet, child_type_1='subnets', child_name_1=subnet) + if is_instance_pool: + namespace.subnet_id = virtual_network_subnet_id + else: + namespace.virtual_network_subnet_id = virtual_network_subnet_id else: raise CLIError('incorrect usage: [--subnet ID | --subnet NAME --vnet-name NAME]') delattr(namespace, 'vnet_name') diff --git a/src/azure-cli/azure/cli/command_modules/sql/commands.py b/src/azure-cli/azure/cli/command_modules/sql/commands.py index ffccb9969ed..57e19b343dc 100644 --- a/src/azure-cli/azure/cli/command_modules/sql/commands.py +++ b/src/azure-cli/azure/cli/command_modules/sql/commands.py @@ -15,6 +15,7 @@ elastic_pool_table_format, elastic_pool_edition_table_format, firewall_rule_table_format, + instance_pool_table_format, server_table_format, usage_table_format, LongRunningOperationResultTransform, @@ -36,6 +37,7 @@ get_sql_encryption_protectors_operations, get_sql_failover_groups_operations, get_sql_firewall_rules_operations, + get_sql_instance_pools_operations, get_sql_managed_databases_operations, get_sql_managed_backup_short_term_retention_policies_operations, get_sql_managed_database_long_term_retention_policies_operations, @@ -360,6 +362,24 @@ def load_command_table(self, _): g.command('delete', 'delete') g.custom_command('set-primary', 'failover_group_failover') + ############################################### + # sql instance-pool # + ############################################### + + instance_pools_operations = CliCommandType( + operations_tmpl='azure.mgmt.sql.operations#InstancePoolsOperations.{}', + client_factory=get_sql_instance_pools_operations) + with self.command_group('sql instance-pool', instance_pools_operations, client_factory=get_sql_instance_pools_operations, is_preview=True) as g: + g.show_command('show', 'get', + table_transformer=instance_pool_table_format) + g.custom_command('list', 'instance_pool_list', + table_transformer=instance_pool_table_format) + g.command('update', 'update') + g.command('delete', 'delete', supports_no_wait=True, confirmation=True) + g.custom_command('create', 'instance_pool_create', + supports_no_wait=True, table_transformer=instance_pool_table_format) + g.wait_command('wait') + ############################################### # sql server # ############################################### diff --git a/src/azure-cli/azure/cli/command_modules/sql/custom.py b/src/azure-cli/azure/cli/command_modules/sql/custom.py index 6e6d092b580..bdc39824e00 100644 --- a/src/azure-cli/azure/cli/command_modules/sql/custom.py +++ b/src/azure-cli/azure/cli/command_modules/sql/custom.py @@ -1977,6 +1977,82 @@ def elastic_pool_list_capabilities( return editions +############################################### +# sql instance-pool # +############################################### + + +def instance_pool_list( + client, + resource_group_name=None): + ''' + Lists servers in a resource group or subscription + ''' + + if resource_group_name: + # List all instance pools in the resource group + return client.list_by_resource_group( + resource_group_name=resource_group_name) + + # List all instance pools in the subscription + return client.list() + + +def instance_pool_create( + cmd, + client, + instance_pool_name, + resource_group_name, + no_wait=False, + sku=None, + **kwargs): + ''' + Creates a new instance pool + ''' + + kwargs['sku'] = _find_instance_pool_sku_from_capabilities( + cmd.cli_ctx, kwargs['location'], sku) + + return sdk_no_wait(no_wait, client.create_or_update, + instance_pool_name=instance_pool_name, + resource_group_name=resource_group_name, + parameters=kwargs) + + +def _find_instance_pool_sku_from_capabilities(cli_ctx, location, sku): + ''' + Validate if the sku family and edition input by user are permissible in the region using + capabilities API and get the SKU name + ''' + + logger.debug('_find_instance_pool_sku_from_capabilities input: %s', sku) + + # Get location capability + loc_capability = _get_location_capability( + cli_ctx, location, CapabilityGroup.supported_managed_instance_versions) + + # Get default server version capability + managed_instance_version_capability = _get_default_capability( + loc_capability.supported_managed_instance_versions) + + # Find edition capability, based on requested sku properties + edition_capability = _find_edition_capability( + sku, managed_instance_version_capability.supported_instance_pool_editions) + + # Find family level capability, based on requested sku properties + _find_family_capability( + sku, edition_capability.supported_families) + + result = Sku( + name="instance-pool", + tier=sku.tier, + family=sku.family) + + logger.debug( + '_find_instance_pool_sku_from_capabilities return: %s', + result) + return result + ############################################### # sql server # diff --git a/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_instance_pool.yaml b/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_instance_pool.yaml new file mode 100644 index 00000000000..a3219d6d7d9 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_instance_pool.yaml @@ -0,0 +1,21524 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet show + Connection: + - keep-alive + ParameterSetName: + - -g --vnet-name -n + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingPool1/subnets/InstancePool?api-version=2020-03-01 + response: + body: + string: "{\r\n \"name\": \"InstancePool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool\",\r\n + \ \"etag\": \"W/\\\"7c93a6cb-b965-43e1-9043-50b09d0119d2\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/networkSecurityGroups/nsg-billingpool1\"\r\n + \ },\r\n \"routeTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/routeTables/rt-billingpool1\"\r\n + \ },\r\n \"networkIntentPolicies\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/networkIntentPolicies/mi_default_vnet-billingpool1_InstancePool\"\r\n + \ }\r\n ],\r\n \"resourceNavigationLinks\": [\r\n {\r\n \"name\": + \"VirtualClustercaa60c97-67e6-443f-a379-6a90fbd0e337\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool/resourceNavigationLinks/VirtualClustercaa60c97-67e6-443f-a379-6a90fbd0e337\",\r\n + \ \"etag\": \"W/\\\"7c93a6cb-b965-43e1-9043-50b09d0119d2\\\"\",\r\n + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"linkedResourceType\": \"Microsoft.Sql/virtualClusters\",\r\n \"link\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/virtualClusters/VirtualClustercaa60c97-67e6-443f-a379-6a90fbd0e337?api-version=2015-05-01-preview\"\r\n + \ }\r\n },\r\n {\r\n \"name\": \"VirtualCluster6fd85145-d8eb-4e0e-8bb0-f6a56f55d04b\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool/resourceNavigationLinks/VirtualCluster6fd85145-d8eb-4e0e-8bb0-f6a56f55d04b\",\r\n + \ \"etag\": \"W/\\\"7c93a6cb-b965-43e1-9043-50b09d0119d2\\\"\",\r\n + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"linkedResourceType\": \"Microsoft.Sql/virtualClusters\",\r\n \"link\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/virtualClusters/VirtualCluster6fd85145-d8eb-4e0e-8bb0-f6a56f55d04b?api-version=2015-05-01-preview\"\r\n + \ }\r\n },\r\n {\r\n \"name\": \"VirtualCluster454b73ba-1140-4943-93b0-28e4d2b594ea\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool/resourceNavigationLinks/VirtualCluster454b73ba-1140-4943-93b0-28e4d2b594ea\",\r\n + \ \"etag\": \"W/\\\"7c93a6cb-b965-43e1-9043-50b09d0119d2\\\"\",\r\n + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"linkedResourceType\": \"Microsoft.Sql/virtualClusters\",\r\n \"link\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/virtualClusters/VirtualCluster454b73ba-1140-4943-93b0-28e4d2b594ea?api-version=2015-05-01-preview\"\r\n + \ }\r\n },\r\n {\r\n \"name\": \"VirtualClusterc0c0a9c7-2681-4935-8908-5d951aa6f360\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool/resourceNavigationLinks/VirtualClusterc0c0a9c7-2681-4935-8908-5d951aa6f360\",\r\n + \ \"etag\": \"W/\\\"7c93a6cb-b965-43e1-9043-50b09d0119d2\\\"\",\r\n + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"linkedResourceType\": \"Microsoft.Sql/virtualClusters\",\r\n \"link\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/virtualClusters/VirtualClusterc0c0a9c7-2681-4935-8908-5d951aa6f360?api-version=2015-05-01-preview\"\r\n + \ }\r\n },\r\n {\r\n \"name\": \"VirtualCluster265de858-1023-4f81-8b1b-32c32d9d98c7\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool/resourceNavigationLinks/VirtualCluster265de858-1023-4f81-8b1b-32c32d9d98c7\",\r\n + \ \"etag\": \"W/\\\"7c93a6cb-b965-43e1-9043-50b09d0119d2\\\"\",\r\n + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"linkedResourceType\": \"Microsoft.Sql/virtualClusters\",\r\n \"link\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/virtualClusters/VirtualCluster265de858-1023-4f81-8b1b-32c32d9d98c7?api-version=2015-05-01-preview\"\r\n + \ }\r\n },\r\n {\r\n \"name\": \"VirtualClusterc311627c-91d5-4bf3-a32e-1db6fe219070\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool/resourceNavigationLinks/VirtualClusterc311627c-91d5-4bf3-a32e-1db6fe219070\",\r\n + \ \"etag\": \"W/\\\"7c93a6cb-b965-43e1-9043-50b09d0119d2\\\"\",\r\n + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"linkedResourceType\": \"Microsoft.Sql/virtualClusters\",\r\n \"link\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/virtualClusters/VirtualClusterc311627c-91d5-4bf3-a32e-1db6fe219070?api-version=2015-05-01-preview\"\r\n + \ }\r\n }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": + \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '6404' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:35:40 GMT + etag: + - W/"7c93a6cb-b965-43e1-9043-50b09d0119d2" + 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-arm-service-request-id: + - 80277d4a-9c50-4bc5-afa7-e6e19ce42676 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools?api-version=2018-06-01-preview + response: + body: + string: '{"value":[{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5"},"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool","vCores":8,"licenseType":"LicenseIncluded"},"location":"northcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestipdp2fpesmbh3","name":"clitestipdp2fpesmbh3","type":"Microsoft.Sql/instancePools"},{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5"},"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool","vCores":8,"licenseType":"LicenseIncluded"},"location":"northcentralus","tags":{"jp":"roshylaj","wezen":"roshylaj"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/billingpool1","name":"billingpool1","type":"Microsoft.Sql/instancePools"},{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5"},"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool","vCores":8,"licenseType":"LicenseIncluded"},"location":"northcentralus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestipdmh4lbzievw","name":"clitestipdmh4lbzievw","type":"Microsoft.Sql/instancePools"},{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5"},"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool","vCores":8,"licenseType":"LicenseIncluded"},"location":"northcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip7v5vx2yfbxd","name":"clitestip7v5vx2yfbxd","type":"Microsoft.Sql/instancePools"},{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5"},"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool","vCores":8,"licenseType":"LicenseIncluded"},"location":"northcentralus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip4u57hbujdlj","name":"clitestip4u57hbujdlj","type":"Microsoft.Sql/instancePools"}]}' + headers: + cache-control: + - no-cache + content-length: + - '2769' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:35:40 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/northcentralus/capabilities?include=supportedManagedInstanceVersions&api-version=2018-06-01-preview + response: + body: + string: '{"name":"North Central US","supportedManagedInstanceVersions":[{"name":"12.0","supportedEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen4","sku":"GP_Gen4","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"}],"status":"Available"},{"name":"Gen5","sku":"GP_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"2","value":2,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":640,"unit":"Gigabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":false,"status":"Available"},{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Visible","reason":"ZRS + is available in multi-az regions"}],"status":"Default"},{"name":"BusinessCritical","supportedFamilies":[{"name":"Gen4","sku":"BC_Gen4","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"}],"status":"Available"},{"name":"Gen5","sku":"BC_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Visible","reason":"ZRS + is available in multi-az regions"}],"status":"Available"}],"supportedInstancePoolEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"GP_Gen5_8","value":8,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Default"},{"name":"GP_Gen5_16","value":16,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_24","value":24,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_32","value":32,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_40","value":40,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_64","value":64,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_80","value":80,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"}],"status":"Default"}],"status":"Default"}],"status":"Default"}],"status":"Available"}' + headers: + cache-control: + - no-cache + content-length: + - '10179' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:35:40 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: '{"location": "northcentralus", "sku": {"name": "instance-pool", "tier": + "GeneralPurpose", "family": "Gen5"}, "properties": {"subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool", + "vCores": 8, "licenseType": "LicenseIncluded"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + Content-Length: + - '349' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000001?api-version=2018-06-01-preview + response: + body: + string: '{"operation":"UpsertInstancePoolAsync","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + cache-control: + - no-cache + content-length: + - '77' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:35:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolOperationResults/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-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-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:36:43 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:37: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:38:43 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:39: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:40: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:41: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:42: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:43:45 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:44: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:45:45 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:46:45 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:47:45 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:48:46 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:49:45 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:50:46 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:51:45 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:52:46 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:53:45 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:54:46 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:55:46 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:56:46 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:57:47 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:58:46 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 16:59:47 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:00:47 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:01:47 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:02:48 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:03:47 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:04:48 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:05:47 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:06:48 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:07:48 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:08:48 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:09:48 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:10:49 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:11:49 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:12:49 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:13:50 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:14:49 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:15:49 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:16:50 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:17:50 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:18:50 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:19:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:20:50 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:21:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:22:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:23:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:24:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:25: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:26:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:27:55 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:28:55 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:30:17 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:31:17 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:32:17 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:33:17 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:34:18 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:35:17 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:36:18 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:37:18 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:38:18 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:39:19 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:40:18 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:41:19 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:42:19 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:43:19 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:44:19 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:45:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:46:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:47:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:48: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:49: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:50:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:51: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:52: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:53: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:54: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:55:22 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:57:22 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:58:22 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 17:59:22 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:00:22 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:01:22 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:02:22 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:03:22 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:04:23 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:05:23 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:06:23 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:07:23 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:08:23 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:09:24 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:10:24 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:11:24 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:12:24 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:13: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:14:24 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:15: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:16: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:17: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:18: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:19: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:20:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:21:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:22:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:23:29 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:24:29 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:25:29 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:26:29 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:27:29 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:28:30 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:29:30 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:30:30 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:31:30 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:32:31 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:33:30 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:34:31 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:35:30 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:36:31 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:37:31 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:38:31 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:39:32 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:40:31 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:41:32 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:42:32 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:43:32 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:44:32 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:45:33 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:46:33 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:47:33 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:48: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:49:33 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:50: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:51:33 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:52: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:53: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:54:35 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:55: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:56:35 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:57:35 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:58:35 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 18:59:35 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:00:35 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:01:36 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:02:36 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:03:36 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:04:36 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:05:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:06:36 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:07:36 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:08:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:09:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:10:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:11:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:12: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:13:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:14: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:15: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:16: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:17: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:18: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:19: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:20: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:21:42 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:22: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:23:42 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:24:42 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:25:42 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:26:42 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:27:43 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:28:43 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:29:43 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:30:43 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:31:43 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:32:43 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:33: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:34: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:35: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:36: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:37: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:38:45 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"InProgress","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:39:45 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f0e5b5b8-fe67-4e49-86d0-1f0ad9226295?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f0e5b5b8-fe67-4e49-86d0-1f0ad9226295","status":"Succeeded","startTime":"2020-04-27T16:35:43.64Z"}' + headers: + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:40:45 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000001?api-version=2018-06-01-preview + response: + body: + string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5"},"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool","vCores":8,"licenseType":"LicenseIncluded"},"location":"northcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000001","name":"clitestip000001","type":"Microsoft.Sql/instancePools"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:40:45 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 instance-pool show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000001?api-version=2018-06-01-preview + response: + body: + string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5"},"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool","vCores":8,"licenseType":"LicenseIncluded"},"location":"northcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000001","name":"clitestip000001","type":"Microsoft.Sql/instancePools"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:40:47 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: '{"tags": {"bar": "foo", "foo": "bar"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool update + Connection: + - keep-alive + Content-Length: + - '38' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --tags + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000001?api-version=2018-06-01-preview + response: + body: + string: '{"operation":"UpsertInstancePoolAsync","startTime":"2020-04-27T19:40:49.16Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/9298df13-fc11-4e0a-9e1f-60f995f3d80b?api-version=2018-06-01-preview + cache-control: + - no-cache + content-length: + - '77' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:40:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolOperationResults/9298df13-fc11-4e0a-9e1f-60f995f3d80b?api-version=2018-06-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-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool update + Connection: + - keep-alive + ParameterSetName: + - -g -n --tags + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/9298df13-fc11-4e0a-9e1f-60f995f3d80b?api-version=2018-06-01-preview + response: + body: + string: '{"name":"9298df13-fc11-4e0a-9e1f-60f995f3d80b","status":"Succeeded","startTime":"2020-04-27T19:40:49.16Z"}' + headers: + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:41:49 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 instance-pool update + Connection: + - keep-alive + ParameterSetName: + - -g -n --tags + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000001?api-version=2018-06-01-preview + response: + body: + string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5"},"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool","vCores":8,"licenseType":"LicenseIncluded"},"location":"northcentralus","tags":{"bar":"foo","foo":"bar"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000001","name":"clitestip000001","type":"Microsoft.Sql/instancePools"}' + headers: + cache-control: + - no-cache + content-length: + - '574' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:41:49 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: '{"tags": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool update + Connection: + - keep-alive + Content-Length: + - '12' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --tags + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000001?api-version=2018-06-01-preview + response: + body: + string: '{"operation":"UpsertInstancePoolAsync","startTime":"2020-04-27T19:41:51.31Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/d5218978-48ed-4182-bdb2-e5832f17fb18?api-version=2018-06-01-preview + cache-control: + - no-cache + content-length: + - '77' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:41:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolOperationResults/d5218978-48ed-4182-bdb2-e5832f17fb18?api-version=2018-06-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-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool update + Connection: + - keep-alive + ParameterSetName: + - -g -n --tags + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/d5218978-48ed-4182-bdb2-e5832f17fb18?api-version=2018-06-01-preview + response: + body: + string: '{"name":"d5218978-48ed-4182-bdb2-e5832f17fb18","status":"Succeeded","startTime":"2020-04-27T19:41:51.31Z"}' + headers: + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:42: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 instance-pool update + Connection: + - keep-alive + ParameterSetName: + - -g -n --tags + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000001?api-version=2018-06-01-preview + response: + body: + string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5"},"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool","vCores":8,"licenseType":"LicenseIncluded"},"location":"northcentralus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000001","name":"clitestip000001","type":"Microsoft.Sql/instancePools"}' + headers: + cache-control: + - no-cache + content-length: + - '551' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:42: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/northcentralus/capabilities?include=supportedManagedInstanceVersions&api-version=2018-06-01-preview + response: + body: + string: '{"name":"North Central US","supportedManagedInstanceVersions":[{"name":"12.0","supportedEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen4","sku":"GP_Gen4","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"}],"status":"Available"},{"name":"Gen5","sku":"GP_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"2","value":2,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":640,"unit":"Gigabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":false,"status":"Available"},{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Visible","reason":"ZRS + is available in multi-az regions"}],"status":"Default"},{"name":"BusinessCritical","supportedFamilies":[{"name":"Gen4","sku":"BC_Gen4","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"}],"status":"Available"},{"name":"Gen5","sku":"BC_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Visible","reason":"ZRS + is available in multi-az regions"}],"status":"Available"}],"supportedInstancePoolEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"GP_Gen5_8","value":8,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Default"},{"name":"GP_Gen5_16","value":16,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_24","value":24,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_32","value":32,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_40","value":40,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_64","value":64,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_80","value":80,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"}],"status":"Default"}],"status":"Default"}],"status":"Default"}],"status":"Available"}' + headers: + cache-control: + - no-cache + content-length: + - '10179' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:42: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: '{"location": "northcentralus", "sku": {"name": "instance-pool", "tier": + "GeneralPurpose", "family": "Gen5"}, "properties": {"subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool", + "vCores": 8, "licenseType": "LicenseIncluded"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + Content-Length: + - '349' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000002?api-version=2018-06-01-preview + response: + body: + string: '{"operation":"UpsertInstancePoolAsync","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + cache-control: + - no-cache + content-length: + - '78' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:42:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolOperationResults/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-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-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:43: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:44:55 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:45: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:46: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:47: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:48:57 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:49: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:50:57 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:51:57 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:52:57 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:53:58 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:54:57 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:55:58 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:56:58 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:57:58 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:58:58 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 19:59:59 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:00:58 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:01:59 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:02:59 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:04: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:04:59 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:06: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:07: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:08: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:09: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:10: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:11:01 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:12:01 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:13:01 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:14:04 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:15:05 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:16:05 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:17:04 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:18:05 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:19:05 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:20:05 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:21:05 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:22:06 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:23:05 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:24:06 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:25:06 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:26:06 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:27:06 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:28: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:29:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:30: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:31: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:32: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:33: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:34: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:35: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:36: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:37: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:38:09 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:39:09 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:40:09 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:41:09 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:42:09 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:43: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:44:09 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:45: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:46: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:47:11 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:48:11 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:49:11 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:50:11 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:51:11 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:52:12 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:53:11 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:54:12 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:55:12 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:56:12 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:57:12 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:58:13 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 20:59:12 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:00:13 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:01:13 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:02:13 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:03:14 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:04:13 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:05:14 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:06:14 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:07:14 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:08:14 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:09:17 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:10:17 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:11:18 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:12:18 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:13:19 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:14:18 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:15:19 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:16:19 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:17:19 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:18:19 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:19:19 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:20:19 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:21:19 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:22:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:23:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:24:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:25: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:26: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:27: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:28: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:29:22 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:30: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:31:22 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:32:22 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:33:22 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:34:22 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:35:22 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:36:23 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:37:23 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:38:23 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:39:24 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:40:23 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:41:24 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:42:24 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:43:24 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:44:24 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:45: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:46: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:47: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:48: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:49:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:50:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:51: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:52:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:53:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:54:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:55:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:56:27 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:57:27 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:58:27 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 21:59:28 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:00:28 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:01:27 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:02:28 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:03:28 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:04:31 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:05:31 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:06:31 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:07:31 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:08:32 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:09:31 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:10:32 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:11:31 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:12:32 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:13:32 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:14:32 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:15:32 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:16:33 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:17:32 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:18:33 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:19:33 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:20:33 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:21:33 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:22: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:23: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:24: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:25: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:26: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:27: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:28:35 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:29: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:30:35 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:31:35 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:32:35 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:33:36 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:34:36 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:35:36 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:36:36 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:37:36 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:38:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:39:36 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:40:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:41:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:42:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:43:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:44: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:45: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:46: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:47: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:48: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:49: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: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:50: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:51: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: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:52: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: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:53: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: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:54: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: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:55:40 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:56: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: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:57:40 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:58:40 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 22:59:43 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:00:43 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:01: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:02:43 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:03: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:04: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:05:43 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:06: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:07:45 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:08: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:09:45 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:10: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:11:45 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:12:46 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:13:46 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:14:46 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:15:46 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:16:46 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:17:47 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:18:46 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:19:47 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:20:47 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:21:47 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:22:48 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:23:48 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:24:48 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:25:48 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:26:48 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:27:48 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:28:49 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:29:48 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:30:49 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:31:49 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:32:49 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:33:49 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:34:50 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:35:50 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:36:50 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:37:50 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:38:50 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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:39:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:40:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:41:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:42:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:43: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:44:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:45: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"InProgress","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:46:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/36e37460-d7b7-47be-b1cd-07dbc6b71844?api-version=2018-06-01-preview + response: + body: + string: '{"name":"36e37460-d7b7-47be-b1cd-07dbc6b71844","status":"Succeeded","startTime":"2020-04-27T19:42:55.633Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:47: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 instance-pool create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --subnet --license-type --capacity -e -f + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000002?api-version=2018-06-01-preview + response: + body: + string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5"},"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool","vCores":8,"licenseType":"LicenseIncluded"},"location":"northcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000002","name":"clitestip000002","type":"Microsoft.Sql/instancePools"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:47: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 instance-pool show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000002?api-version=2018-06-01-preview + response: + body: + string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5"},"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool","vCores":8,"licenseType":"LicenseIncluded"},"location":"northcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000002","name":"clitestip000002","type":"Microsoft.Sql/instancePools"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:47:54 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: '{"tags": {"bar": "foo", "foo": "bar"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool update + Connection: + - keep-alive + Content-Length: + - '38' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --tags + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000002?api-version=2018-06-01-preview + response: + body: + string: '{"operation":"UpsertInstancePoolAsync","startTime":"2020-04-27T23:47:55.427Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/0ff44075-9f8b-4775-8ae2-7e87bf088a40?api-version=2018-06-01-preview + cache-control: + - no-cache + content-length: + - '78' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:47:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolOperationResults/0ff44075-9f8b-4775-8ae2-7e87bf088a40?api-version=2018-06-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-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool update + Connection: + - keep-alive + ParameterSetName: + - -g -n --tags + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/0ff44075-9f8b-4775-8ae2-7e87bf088a40?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0ff44075-9f8b-4775-8ae2-7e87bf088a40","status":"Succeeded","startTime":"2020-04-27T23:47:55.427Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:48:55 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 instance-pool update + Connection: + - keep-alive + ParameterSetName: + - -g -n --tags + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000002?api-version=2018-06-01-preview + response: + body: + string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5"},"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool","vCores":8,"licenseType":"LicenseIncluded"},"location":"northcentralus","tags":{"bar":"foo","foo":"bar"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000002","name":"clitestip000002","type":"Microsoft.Sql/instancePools"}' + headers: + cache-control: + - no-cache + content-length: + - '574' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:48:55 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: '{"tags": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool update + Connection: + - keep-alive + Content-Length: + - '12' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --tags + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000002?api-version=2018-06-01-preview + response: + body: + string: '{"operation":"UpsertInstancePoolAsync","startTime":"2020-04-27T23:48:57.87Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/e4436616-a0d5-4c00-863a-634c0285cbe6?api-version=2018-06-01-preview + cache-control: + - no-cache + content-length: + - '77' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:48:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolOperationResults/e4436616-a0d5-4c00-863a-634c0285cbe6?api-version=2018-06-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-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool update + Connection: + - keep-alive + ParameterSetName: + - -g -n --tags + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/e4436616-a0d5-4c00-863a-634c0285cbe6?api-version=2018-06-01-preview + response: + body: + string: '{"name":"e4436616-a0d5-4c00-863a-634c0285cbe6","status":"Succeeded","startTime":"2020-04-27T23:48:57.87Z"}' + headers: + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:49:58 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 instance-pool update + Connection: + - keep-alive + ParameterSetName: + - -g -n --tags + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000002?api-version=2018-06-01-preview + response: + body: + string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5"},"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool","vCores":8,"licenseType":"LicenseIncluded"},"location":"northcentralus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000002","name":"clitestip000002","type":"Microsoft.Sql/instancePools"}' + headers: + cache-control: + - no-cache + content-length: + - '551' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:49:58 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 instance-pool list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools?api-version=2018-06-01-preview + response: + body: + string: '{"value":[{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5"},"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool","vCores":8,"licenseType":"LicenseIncluded"},"location":"northcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestipdp2fpesmbh3","name":"clitestipdp2fpesmbh3","type":"Microsoft.Sql/instancePools"},{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5"},"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool","vCores":8,"licenseType":"LicenseIncluded"},"location":"northcentralus","tags":{"jp":"roshylaj","wezen":"roshylaj"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/billingpool1","name":"billingpool1","type":"Microsoft.Sql/instancePools"},{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5"},"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingPool1/subnets/InstancePool","vCores":8,"licenseType":"LicenseIncluded"},"location":"northcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestipbwikkrkamao12","name":"clitestipbwikkrkamao12","type":"Microsoft.Sql/instancePools"},{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5"},"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool","vCores":8,"licenseType":"LicenseIncluded"},"location":"northcentralus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000001","name":"clitestip000001","type":"Microsoft.Sql/instancePools"},{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5"},"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool","vCores":8,"licenseType":"LicenseIncluded"},"location":"northcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip7v5vx2yfbxd","name":"clitestip7v5vx2yfbxd","type":"Microsoft.Sql/instancePools"},{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5"},"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool","vCores":8,"licenseType":"LicenseIncluded"},"location":"northcentralus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000002","name":"clitestip000002","type":"Microsoft.Sql/instancePools"},{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5"},"properties":{"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Network/virtualNetworks/vnet-billingpool1/subnets/InstancePool","vCores":8,"licenseType":"LicenseIncluded"},"location":"northcentralus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip4u57hbujdlj","name":"clitestip4u57hbujdlj","type":"Microsoft.Sql/instancePools"}]}' + headers: + cache-control: + - no-cache + content-length: + - '3867' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:49:59 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 instance-pool delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --yes + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000001?api-version=2018-06-01-preview + response: + body: + string: '{"operation":"DropInstancePool","startTime":"2020-04-27T23:50:00.523Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f529df77-5f30-4d8c-9f49-13dfe79653f9?api-version=2018-06-01-preview + cache-control: + - no-cache + content-length: + - '71' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:50:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolOperationResults/f529df77-5f30-4d8c-9f49-13dfe79653f9?api-version=2018-06-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: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/f529df77-5f30-4d8c-9f49-13dfe79653f9?api-version=2018-06-01-preview + response: + body: + string: '{"name":"f529df77-5f30-4d8c-9f49-13dfe79653f9","status":"Succeeded","startTime":"2020-04-27T23:50:00.523Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:50:15 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 instance-pool show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000001?api-version=2018-06-01-preview + response: + body: + string: '{"error":{"code":"InstancePoolNotFound","message":"An instance pool + could not be found with name ''clitestip000001''"}}' + headers: + cache-control: + - no-cache + content-length: + - '122' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:50:16 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: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql instance-pool delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --yes --no-wait + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-sql/0.18.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/instancePools/clitestip000002?api-version=2018-06-01-preview + response: + body: + string: '{"operation":"DropInstancePool","startTime":"2020-04-27T23:50:18.05Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolAzureAsyncOperation/7e354763-4418-48b6-bb39-02b4bddd86e3?api-version=2018-06-01-preview + cache-control: + - no-cache + content-length: + - '70' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 Apr 2020 23:50:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billingPools/providers/Microsoft.Sql/locations/northcentralus/instancePoolOperationResults/7e354763-4418-48b6-bb39-02b4bddd86e3?api-version=2018-06-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: + - '14999' + status: + code: 202 + message: Accepted +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/sql/tests/latest/test_sql_commands.py b/src/azure-cli/azure/cli/command_modules/sql/tests/latest/test_sql_commands.py index 23ad3f1a6a3..4228f6a6f93 100644 --- a/src/azure-cli/azure/cli/command_modules/sql/tests/latest/test_sql_commands.py +++ b/src/azure-cli/azure/cli/command_modules/sql/tests/latest/test_sql_commands.py @@ -36,7 +36,8 @@ server_name_prefix = 'clitestserver' server_name_max_length = 62 managed_instance_name_prefix = 'clitestmi' -managed_instance_name_max_length = 63 +instance_pool_name_prefix = 'clitestip' +managed_instance_name_max_length = 20 class SqlServerPreparer(AbstractPreparer, SingleValueReplacer): @@ -3022,8 +3023,8 @@ def test_sql_managed_instance_mgmt(self): JMESPathCheck('resourceGroup', resource_group_1), JMESPathCheck('administratorLogin', user)]) - # test list sql managed_instance in the subscription should be at least 2 - self.cmd('sql mi list', checks=[JMESPathCheckGreaterThan('length(@)', 1)]) + # test list sql managed_instance in the subscription should be at least 1 + self.cmd('sql mi list', checks=[JMESPathCheckGreaterThan('length(@)', 0)]) self.cmd('sql mi delete -g {} -n {} --yes' .format(resource_group_1, managed_instance_name_2), checks=NoneCheck()) @@ -3039,6 +3040,117 @@ def test_sql_managed_instance_mgmt(self): expect_failure=True) +class SqlManagedInstancePoolScenarioTest(ScenarioTest): + @record_only() + def test_sql_instance_pool(self): + + print("Starting instance pool tests") + instance_pool_name_1 = self.create_random_name(instance_pool_name_prefix, managed_instance_name_max_length) + instance_pool_name_2 = self.create_random_name(instance_pool_name_prefix, managed_instance_name_max_length) + license_type = 'LicenseIncluded' + location = 'northcentralus' + v_cores = 8 + edition = 'GeneralPurpose' + family = 'Gen5' + resource_group = 'billingPools' + vnet_name = 'vnet-billingPool1' + subnet_name = 'InstancePool' + subnet = self.cmd('network vnet subnet show -g {} --vnet-name {} -n {}'.format(resource_group, vnet_name, subnet_name)).get_output_in_json()['id'] + num_pools = len(self.cmd('sql instance-pool list -g {}'.format(resource_group)).get_output_in_json()) + + # test create sql managed_instance + self.cmd( + 'sql instance-pool create -g {} -n {} -l {} ' + '--subnet {} --license-type {} --capacity {} -e {} -f {}'.format( + resource_group, instance_pool_name_1, location, subnet, license_type, v_cores, edition, family), checks=[ + JMESPathCheck('name', instance_pool_name_1), + JMESPathCheck('resourceGroup', resource_group), + JMESPathCheck('vCores', v_cores), + JMESPathCheck('licenseType', license_type), + JMESPathCheck('sku.tier', edition), + JMESPathCheck('sku.family', family)]) + + # test show sql instance pool + self.cmd('sql instance-pool show -g {} -n {}' + .format(resource_group, instance_pool_name_1), + checks=[ + JMESPathCheck('name', instance_pool_name_1), + JMESPathCheck('resourceGroup', resource_group)]) + + # test updating tags of an instance pool + tag1 = "bar=foo" + tag2 = "foo=bar" + self.cmd('sql instance-pool update -g {} -n {} --tags {} {}' + .format(resource_group, instance_pool_name_1, tag1, tag2), + checks=[ + JMESPathCheck('name', instance_pool_name_1), + JMESPathCheck('resourceGroup', resource_group), + JMESPathCheck('tags', "{'bar': 'foo', 'foo': 'bar'}")]) + + # test updating instance pool to clear tags by passing "" + self.cmd('sql instance-pool update -g {} -n {} --tags ""' + .format(resource_group, instance_pool_name_1), + checks=[ + JMESPathCheck('name', instance_pool_name_1), + JMESPathCheck('resourceGroup', resource_group), + JMESPathCheck('tags', {})]) + + # Instance Pool 2 + self.cmd( + 'sql instance-pool create -g {} -n {} -l {} ' + '--subnet {} --license-type {} --capacity {} -e {} -f {}'.format( + resource_group, instance_pool_name_2, location, subnet, license_type, v_cores, edition, family), checks=[ + JMESPathCheck('name', instance_pool_name_2), + JMESPathCheck('resourceGroup', resource_group), + JMESPathCheck('vCores', v_cores), + JMESPathCheck('licenseType', license_type), + JMESPathCheck('sku.tier', edition), + JMESPathCheck('sku.family', family)]) + + # test show sql instance pool + self.cmd('sql instance-pool show -g {} -n {}' + .format(resource_group, instance_pool_name_2), + checks=[ + JMESPathCheck('name', instance_pool_name_2), + JMESPathCheck('resourceGroup', resource_group)]) + + # test updating tags of an instance pool + tag1 = "bar=foo" + tag2 = "foo=bar" + self.cmd('sql instance-pool update -g {} -n {} --tags {} {}' + .format(resource_group, instance_pool_name_2, tag1, tag2), + checks=[ + JMESPathCheck('name', instance_pool_name_2), + JMESPathCheck('resourceGroup', resource_group), + JMESPathCheck('tags', "{'bar': 'foo', 'foo': 'bar'}")]) + + # test updating instance pool to clear tags by passing "" + self.cmd('sql instance-pool update -g {} -n {} --tags ""' + .format(resource_group, instance_pool_name_2), + checks=[ + JMESPathCheck('name', instance_pool_name_2), + JMESPathCheck('resourceGroup', resource_group), + JMESPathCheck('tags', {})]) + + self.cmd('sql instance-pool list -g {}' + .format(resource_group), + checks=[ + JMESPathCheck('length(@)', num_pools + 2)]) + + # test delete sql managed instance + self.cmd('sql instance-pool delete -g {} -n {} --yes' + .format(resource_group, instance_pool_name_1), checks=NoneCheck()) + + # test show sql managed instance doesn't return anything + self.cmd('sql instance-pool show -g {} -n {}' + .format(resource_group, instance_pool_name_1), + expect_failure=True) + + # test delete sql managed instance + self.cmd('sql instance-pool delete -g {} -n {} --yes --no-wait' + .format(resource_group, instance_pool_name_2), checks=NoneCheck()) + + class SqlManagedInstanceTransparentDataEncryptionScenarioTest(ScenarioTest): # Remove when issue #9393 is fixed.