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 0acb909f4f3..029a759bc4d 100644 --- a/src/azure-cli/azure/cli/command_modules/sql/_help.py +++ b/src/azure-cli/azure/cli/command_modules/sql/_help.py @@ -601,12 +601,24 @@ text: az sql midb list -g mygroup --mi myinstance """ +helps['sql midb list-deleted'] = """ +type: command +short-summary: List restorable deleted managed databases. +examples: + - name: List all restorable deleted managed databases on Managed Instance . + text: az sql midb list-deleted -g mygroup --mi myinstance +""" + helps['sql midb restore'] = """ type: command short-summary: Restore a managed database. examples: - - name: Restore a managed database using Point in time restore + - name: Restore a live managed database using Point in time restore text: az sql midb restore -g mygroup --mi myinstance -n mymanageddb --dest-name targetmidb --time "2018-05-20T05:34:22" + - name: Restore a dropped managed database using Point in time restore + text: az sql midb restore -g mygroup --mi myinstance -n mymanageddb --dest-name targetmidb --time "2018-05-20T05:34:22" --deleted-time "2018-05-20T05:34:22" + - name: Restore a live managed database from another instance using Point in time restore + text: az sql midb restore -g mygroup --mi myinstance -n mymanageddb --dest-name targetmidb --time "2018-05-20T05:34:22" --dest-mi targetmi --dest-resource-group targetrg """ helps['sql midb show'] = """ @@ -617,6 +629,31 @@ text: az sql midb show -g mygroup --mi myinstance -n mymanageddb """ +helps['sql midb short-term-retention-policy'] = """ +type: group +short-summary: Manage SQL managed instance database backup short term retention policy. +""" + +helps['sql midb short-term-retention-policy set'] = """ +type: command +short-summary: Update short term retention for automated backups on a single database. +examples: + - name: Set backup short term retention for live managed database. + text: az sql midb short-term-retention-policy set -g mygroup --mi myinstance -n mymanageddb --retention-days retentionindays + - name: Set backup short term retention for dropped managed database. + text: az sql midb short-term-retention-policy set -g mygroup --mi myinstance -n mymanageddb --deleted-time "2018-05-20T05:34:22" --retention-days retentionindays +""" + +helps['sql midb short-term-retention-policy show'] = """ +type: command +short-summary: Show short term retention for automated backups on a single database. +examples: + - name: Shows backup short term retention for live managed database. + text: az sql midb short-term-retention-policy show -g mygroup --mi myinstance -n mymanageddb + - name: Show backup short term retention for dropped managed database. + text: az sql midb short-term-retention-policy show -g mygroup --mi myinstance -n mymanageddb --deleted-time "2018-05-20T05:34:22" +""" + helps['sql server'] = """ type: group short-summary: Manage SQL servers. 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 92339edf49c..01ca8d7b1f0 100644 --- a/src/azure-cli/azure/cli/command_modules/sql/_params.py +++ b/src/azure-cli/azure/cli/command_modules/sql/_params.py @@ -1419,11 +1419,17 @@ def _configure_security_policy_storage_params(arg_ctx): with self.argument_context('sql midb restore') as c: create_args_for_complex_type( c, 'parameters', ManagedDatabase, [ + 'deleted_time', 'target_managed_database_name', 'target_managed_instance_name', 'restore_point_in_time' ]) + c.argument('deleted_time', + options_list=['--deleted-time'], + help='If specified, restore from a deleted database instead of from an existing database.' + ' Must match the deleted time of a deleted database on the source Managed Instance.') + c.argument('target_managed_database_name', options_list=['--dest-name'], required=True, @@ -1450,8 +1456,29 @@ def _configure_security_policy_storage_params(arg_ctx): ' new database. Must be greater than or equal to the source database\'s' ' earliestRestoreDate value. ' + time_format_help) - with self.argument_context('sql midb list') as c: - c.argument('managed_instance_name', id_part=None) + with self.argument_context('sql midb short-term-retention-policy set') as c: + create_args_for_complex_type( + c, 'parameters', ManagedDatabase, [ + 'deleted_time', + 'retention_days' + ]) + + c.argument('deleted_time', + options_list=['--deleted-time'], + help='If specified, updates retention days for a deleted database, instead of an existing database.' + 'Must match the deleted time of a deleted database on the source Managed Instance.') + + c.argument('retention_days', + options_list=['--retention-days'], + required=True, + help='New backup short term retention policy in days.' + 'Valid policy for live database is 7-35 days, valid policy for dropped databases is 0-35 days.') + + with self.argument_context('sql midb short-term-retention-policy show') as c: + c.argument('deleted_time', + options_list=['--deleted-time'], + help='If specified, shows retention days for a deleted database, instead of an existing database.' + 'Must match the deleted time of a deleted database on the source Managed Instance.') ############################################### # sql virtual cluster # 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 68b35237394..acd177a3c2c 100644 --- a/src/azure-cli/azure/cli/command_modules/sql/_util.py +++ b/src/azure-cli/azure/cli/command_modules/sql/_util.py @@ -96,6 +96,10 @@ def get_sql_restorable_dropped_databases_operations(cli_ctx, _): return get_sql_management_client(cli_ctx).restorable_dropped_databases +def get_sql_restorable_dropped_managed_databases_operations(cli_ctx, _): + return get_sql_management_client(cli_ctx).restorable_dropped_managed_databases + + def get_sql_server_azure_ad_administrators_operations(cli_ctx, _): return get_sql_management_client(cli_ctx).server_azure_ad_administrators @@ -144,6 +148,14 @@ def get_sql_managed_databases_operations(cli_ctx, _): return get_sql_management_client(cli_ctx).managed_databases +def get_sql_managed_backup_short_term_retention_policies_operations(cli_ctx, _): + return get_sql_management_client(cli_ctx).managed_backup_short_term_retention_policies + + +def get_sql_restorable_dropped_database_managed_backup_short_term_retention_policies_operations(cli_ctx, _): + return get_sql_management_client(cli_ctx).managed_restorable_dropped_database_backup_short_term_retention_policies + + def get_sql_virtual_clusters_operations(cli_ctx, _): return get_sql_management_client(cli_ctx).virtual_clusters 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 1ad4ca78bab..f01ba63c3c6 100644 --- a/src/azure-cli/azure/cli/command_modules/sql/commands.py +++ b/src/azure-cli/azure/cli/command_modules/sql/commands.py @@ -37,12 +37,14 @@ get_sql_failover_groups_operations, get_sql_firewall_rules_operations, get_sql_managed_databases_operations, + get_sql_managed_backup_short_term_retention_policies_operations, get_sql_managed_instance_azure_ad_administrators_operations, get_sql_managed_instance_encryption_protectors_operations, get_sql_managed_instance_keys_operations, get_sql_managed_instances_operations, get_sql_replication_links_operations, get_sql_restorable_dropped_databases_operations, + get_sql_restorable_dropped_managed_databases_operations, get_sql_server_connection_policies_operations, get_sql_server_dns_aliases_operations, get_sql_server_keys_operations, @@ -220,6 +222,16 @@ def load_command_table(self, _): g.command('list-deleted', 'list_by_server') + restorable_dropped_managed_databases_operations = CliCommandType( + operations_tmpl='azure.mgmt.sql.operations#RestorableDroppedManagedDatabasesOperations.{}', + client_factory=get_sql_restorable_dropped_managed_databases_operations) + + with self.command_group('sql midb', + restorable_dropped_managed_databases_operations, + client_factory=get_sql_restorable_dropped_managed_databases_operations) as g: + + g.command('list-deleted', 'list_by_instance') + database_blob_auditing_policies_operations = CliCommandType( operations_tmpl='azure.mgmt.sql.operations#DatabaseBlobAuditingPoliciesOperations.{}', client_factory=get_sql_database_blob_auditing_policies_operations) @@ -547,6 +559,17 @@ def load_command_table(self, _): g.command('list', 'list_by_instance') g.command('delete', 'delete', confirmation=True, supports_no_wait=True) + managed_backup_short_term_retention_policies_operations = CliCommandType( + operations_tmpl='azure.mgmt.sql.operations#ManagedBackupShortTermRetentionPoliciesOperations.{}', + client_factory=get_sql_managed_backup_short_term_retention_policies_operations) + + with self.command_group('sql midb short-term-retention-policy', + managed_backup_short_term_retention_policies_operations, + client_factory=get_sql_managed_backup_short_term_retention_policies_operations) as g: + + g.custom_command('set', 'update_short_term_retention_mi', supports_no_wait=True) + g.custom_command('show', 'get_short_term_retention_mi') + ############################################### # sql virtual cluster # ############################################### 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 4fdebafa65f..0235a8c7d33 100644 --- a/src/azure-cli/azure/cli/command_modules/sql/custom.py +++ b/src/azure-cli/azure/cli/command_modules/sql/custom.py @@ -45,9 +45,14 @@ from ._util import ( get_sql_capabilities_operations, get_sql_servers_operations, - get_sql_managed_instances_operations + get_sql_managed_instances_operations, + get_sql_restorable_dropped_database_managed_backup_short_term_retention_policies_operations, ) +from datetime import datetime +from dateutil.parser import parse +import calendar + logger = get_logger(__name__) ############################################### @@ -67,6 +72,18 @@ def _get_server_location(cli_ctx, server_name, resource_group_name): resource_group_name=resource_group_name).location +def _get_managed_restorable_dropped_database_backup_short_term_retention_client(cli_ctx): + ''' + Returns client for managed restorable dropped databases. + ''' + + server_client = \ + get_sql_restorable_dropped_database_managed_backup_short_term_retention_policies_operations(cli_ctx, None) + + # pylint: disable=no-member + return server_client + + def _get_managed_instance_location(cli_ctx, managed_instance_name, resource_group_name): ''' Returns the location (i.e. Azure region) that the specified managed instance is in. @@ -446,15 +463,63 @@ def _get_managed_db_resource_id(cli_ctx, resource_group_name, managed_instance_n Gets the Managed db resource id in this Azure environment. ''' + # url parse package has different names in Python 2 and 3. 'six' package works cross-version. + from azure.cli.core.commands.client_factory import get_subscription_id + from msrestazure.tools import resource_id + + return resource_id( + subscription=get_subscription_id(cli_ctx), + resource_group=resource_group_name, + namespace='Microsoft.Sql', type='managedInstances', + name=managed_instance_name, + child_type_1='databases', + child_name_1=database_name) + + +def _to_filetimeutc(dateTime): + ''' + Changes given datetime to filetimeutc string + ''' + + NET_epoch = datetime(1601, 1, 1) + UNIX_epoch = datetime(1970, 1, 1) + + epoch_delta = (UNIX_epoch - NET_epoch) + + log_time = parse(dateTime) + + net_ts = calendar.timegm((log_time + epoch_delta).timetuple()) + + # units of seconds since NET epoch + filetime_utc_ts = net_ts * (10**7) + log_time.microsecond * 10 + + return filetime_utc_ts + + +def _get_managed_dropped_db_resource_id( + cli_ctx, + resource_group_name, + managed_instance_name, + database_name, + deleted_time): + ''' + Gets the Managed db resource id in this Azure environment. + ''' + # url parse package has different names in Python 2 and 3. 'six' package works cross-version. from six.moves.urllib.parse import quote # pylint: disable=import-error from azure.cli.core.commands.client_factory import get_subscription_id + from msrestazure.tools import resource_id - return '/subscriptions/{}/resourceGroups/{}/providers/Microsoft.Sql/managedInstances/{}/databases/{}'.format( - quote(get_subscription_id(cli_ctx)), - quote(resource_group_name), - quote(managed_instance_name), - quote(database_name)) + return (resource_id( + subscription=get_subscription_id(cli_ctx), + resource_group=resource_group_name, + namespace='Microsoft.Sql', type='managedInstances', + name=managed_instance_name, + child_type_1='restorableDroppedDatabases', + child_name_1='{},{}'.format( + quote(database_name), + _to_filetimeutc(deleted_time)))) def db_show_conn_str( @@ -2490,6 +2555,7 @@ def managed_db_restore( target_managed_database_name, target_managed_instance_name=None, target_resource_group_name=None, + deleted_time=None, **kwargs): ''' Restores an existing managed DB (i.e. create with 'PointInTimeRestore' create mode.) @@ -2509,11 +2575,20 @@ def managed_db_restore( resource_group_name=resource_group_name) kwargs['create_mode'] = CreateMode.point_in_time_restore.value - kwargs['source_database_id'] = _get_managed_db_resource_id( - cmd.cli_ctx, - resource_group_name, - managed_instance_name, - database_name) + + if deleted_time: + kwargs['restorable_dropped_database_id'] = _get_managed_dropped_db_resource_id( + cmd.cli_ctx, + resource_group_name, + managed_instance_name, + database_name, + deleted_time) + else: + kwargs['source_database_id'] = _get_managed_db_resource_id( + cmd.cli_ctx, + resource_group_name, + managed_instance_name, + database_name) return client.create_or_update( database_name=target_managed_database_name, @@ -2521,11 +2596,82 @@ def managed_db_restore( resource_group_name=target_resource_group_name, parameters=kwargs) + +def update_short_term_retention_mi( + cmd, + client, + database_name, + managed_instance_name, + resource_group_name, + retention_days, + deleted_time=None): + ''' + Updates short term retention for database + ''' + + if deleted_time: + database_name = '{},{}'.format( + database_name, + _to_filetimeutc(deleted_time)) + + client = \ + get_sql_restorable_dropped_database_managed_backup_short_term_retention_policies_operations( + cmd.cli_ctx, + None) + + policy = client.create_or_update( + restorable_dropped_database_id=database_name, + managed_instance_name=managed_instance_name, + resource_group_name=resource_group_name, + retention_days=retention_days) + else: + policy = client.create_or_update( + database_name=database_name, + managed_instance_name=managed_instance_name, + resource_group_name=resource_group_name, + retention_days=retention_days) + + return policy + + +def get_short_term_retention_mi( + cmd, + client, + database_name, + managed_instance_name, + resource_group_name, + deleted_time=None): + ''' + Gets short term retention for database + ''' + + if deleted_time: + database_name = '{},{}'.format( + database_name, + _to_filetimeutc(deleted_time)) + + client = \ + get_sql_restorable_dropped_database_managed_backup_short_term_retention_policies_operations( + cmd.cli_ctx, + None) + + policy = client.get( + restorable_dropped_database_id=database_name, + managed_instance_name=managed_instance_name, + resource_group_name=resource_group_name) + else: + policy = client.get( + database_name=database_name, + managed_instance_name=managed_instance_name, + resource_group_name=resource_group_name) + + return policy + + ############################################### # sql failover-group # ############################################### - def failover_group_create( cmd, client, diff --git a/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_managed_db_short_retention.yaml b/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_managed_db_short_retention.yaml new file mode 100644 index 00000000000..ffac63229aa --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_managed_db_short_retention.yaml @@ -0,0 +1,19613 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network route-table create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"date":"2020-02-13T19:01:31Z","cause":"automation","product":"azurecli"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '312' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:01:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network route-table create + Connection: + - keep-alive + Content-Length: + - '22' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestRouteTable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable\",\r\n + \ \"etag\": \"W/\\\"6181d1ed-e519-47d7-8616-2005ac61287b\\\"\",\r\n \"type\": + \"Microsoft.Network/routeTables\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b5d9d491-f50a-438a-b306-032a32c09377\",\r\n + \ \"disableBgpRoutePropagation\": false,\r\n \"routes\": []\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/aed5b8d8-b0e9-4d0f-9d6e-9a9fce084339?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '504' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:01:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 543821cf-903d-403e-9f90-96aa130384b2 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network route-table create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/aed5b8d8-b0e9-4d0f-9d6e-9a9fce084339?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:01:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - ed25aa52-abfb-47f8-a3e7-fb03b0482e4e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network route-table create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestRouteTable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable\",\r\n + \ \"etag\": \"W/\\\"ce297670-8469-413e-9233-7a5d01c8c729\\\"\",\r\n \"type\": + \"Microsoft.Network/routeTables\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b5d9d491-f50a-438a-b306-032a32c09377\",\r\n + \ \"disableBgpRoutePropagation\": false,\r\n \"routes\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '505' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:01:52 GMT + etag: + - W/"ce297670-8469-413e-9233-7a5d01c8c729" + 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: + - 0b759ab4-07c7-4c24-9256-20b94a29fd59 + status: + code: 200 + message: OK +- request: + body: '{"properties": {"nextHopType": "Internet", "addressPrefix": "0.0.0.0/0"}, + "name": "vcCliTestRouteInternet"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network route-table route create + Connection: + - keep-alive + Content-Length: + - '107' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g --route-table-name -n --next-hop-type --address-prefix + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteInternet?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestRouteInternet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteInternet\",\r\n + \ \"etag\": \"W/\\\"53a064ba-d3bc-4aa9-ae4e-33f1753e8ec1\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"0.0.0.0/0\",\r\n + \ \"nextHopType\": \"Internet\",\r\n \"hasBgpOverride\": false\r\n },\r\n + \ \"type\": \"Microsoft.Network/routeTables/routes\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94928c52-e43e-47d6-b59d-1cd3cc497150?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '494' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:01:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 184673ce-86e5-49b1-801f-86fce619548a + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network route-table route create + Connection: + - keep-alive + ParameterSetName: + - -g --route-table-name -n --next-hop-type --address-prefix + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94928c52-e43e-47d6-b59d-1cd3cc497150?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:02:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2469b121-d6a2-4de4-8f7d-16704771d81e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network route-table route create + Connection: + - keep-alive + ParameterSetName: + - -g --route-table-name -n --next-hop-type --address-prefix + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteInternet?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestRouteInternet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteInternet\",\r\n + \ \"etag\": \"W/\\\"527ce608-9552-4eba-97a0-6d07648a1758\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"0.0.0.0/0\",\r\n + \ \"nextHopType\": \"Internet\",\r\n \"hasBgpOverride\": false\r\n },\r\n + \ \"type\": \"Microsoft.Network/routeTables/routes\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '495' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:02:05 GMT + etag: + - W/"527ce608-9552-4eba-97a0-6d07648a1758" + 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: + - 5b9e6595-1ce5-47f7-a059-ae8b64e05bc7 + status: + code: 200 + message: OK +- request: + body: '{"properties": {"nextHopType": "VnetLocal", "addressPrefix": "10.0.0.0/24"}, + "name": "vcCliTestRouteVnetLoc"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network route-table route create + Connection: + - keep-alive + Content-Length: + - '109' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g --route-table-name -n --next-hop-type --address-prefix + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteVnetLoc?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestRouteVnetLoc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteVnetLoc\",\r\n + \ \"etag\": \"W/\\\"e74268c7-08b8-42d9-a837-85078fb8297f\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"nextHopType\": \"VnetLocal\",\r\n \"hasBgpOverride\": false\r\n },\r\n + \ \"type\": \"Microsoft.Network/routeTables/routes\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5efcdcf4-77cc-42db-811f-ba0ab8069e9c?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '495' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:02:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - c5b580b1-83fa-4de7-b822-cebc4091f23c + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network route-table route create + Connection: + - keep-alive + ParameterSetName: + - -g --route-table-name -n --next-hop-type --address-prefix + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5efcdcf4-77cc-42db-811f-ba0ab8069e9c?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:02:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 9b5c8a5c-476c-4ba3-ab13-836be0575e52 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network route-table route create + Connection: + - keep-alive + ParameterSetName: + - -g --route-table-name -n --next-hop-type --address-prefix + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteVnetLoc?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestRouteVnetLoc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteVnetLoc\",\r\n + \ \"etag\": \"W/\\\"cdf0f81e-7722-411d-aff6-f7148820b2c5\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"nextHopType\": \"VnetLocal\",\r\n \"hasBgpOverride\": false\r\n },\r\n + \ \"type\": \"Microsoft.Network/routeTables/routes\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '496' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:02:17 GMT + etag: + - W/"cdf0f81e-7722-411d-aff6-f7148820b2c5" + 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: + - cababf1b-57ef-4f3c-9e9b-e89bd952e619 + status: + code: 200 + message: OK +- request: + body: '{"properties": {"dhcpOptions": {}, "addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}}, "tags": {}, "location": "westus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + Content-Length: + - '123' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --location --address-prefix + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestVnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet\",\r\n + \ \"etag\": \"W/\\\"24ac138c-0821-4372-ac27-706fa2e1c2a7\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"b67274ab-3d71-4d4f-b309-429742bf4de5\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cf013f07-a2ae-4581-9016-31ec120623b6?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:02:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - e317e455-68a9-418e-a0df-cb85186d5169 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -g -n --location --address-prefix + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cf013f07-a2ae-4581-9016-31ec120623b6?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:02:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 557f5584-f72d-436d-9139-a6954499e5c4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -g -n --location --address-prefix + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestVnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet\",\r\n + \ \"etag\": \"W/\\\"6c4ad3e2-47f3-4e2f-9b35-001671fb89ad\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"b67274ab-3d71-4d4f-b309-429742bf4de5\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:02:27 GMT + etag: + - W/"6c4ad3e2-47f3-4e2f-9b35-001671fb89ad" + 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: + - 8f583ad7-d92f-429a-8968-16955ec47408 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -g --vnet-name -n --address-prefix --route-table + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestRouteTable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable\",\r\n + \ \"etag\": \"W/\\\"cdf0f81e-7722-411d-aff6-f7148820b2c5\\\"\",\r\n \"type\": + \"Microsoft.Network/routeTables\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b5d9d491-f50a-438a-b306-032a32c09377\",\r\n + \ \"disableBgpRoutePropagation\": false,\r\n \"routes\": [\r\n {\r\n + \ \"name\": \"vcCliTestRouteInternet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteInternet\",\r\n + \ \"etag\": \"W/\\\"cdf0f81e-7722-411d-aff6-f7148820b2c5\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"0.0.0.0/0\",\r\n \"nextHopType\": + \"Internet\",\r\n \"hasBgpOverride\": false\r\n },\r\n \"type\": + \"Microsoft.Network/routeTables/routes\"\r\n },\r\n {\r\n \"name\": + \"vcCliTestRouteVnetLoc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteVnetLoc\",\r\n + \ \"etag\": \"W/\\\"cdf0f81e-7722-411d-aff6-f7148820b2c5\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"nextHopType\": + \"VnetLocal\",\r\n \"hasBgpOverride\": false\r\n },\r\n \"type\": + \"Microsoft.Network/routeTables/routes\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1651' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:02:27 GMT + etag: + - W/"cdf0f81e-7722-411d-aff6-f7148820b2c5" + 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: + - b3962354-cd3e-4339-8b49-25f62a57b179 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -g --vnet-name -n --address-prefix --route-table + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestVnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet\",\r\n + \ \"etag\": \"W/\\\"6c4ad3e2-47f3-4e2f-9b35-001671fb89ad\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"b67274ab-3d71-4d4f-b309-429742bf4de5\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:02:27 GMT + etag: + - W/"6c4ad3e2-47f3-4e2f-9b35-001671fb89ad" + 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: + - 2cdd6866-f55c-4a0f-a0d5-5d5f10f8ac3b + status: + code: 200 + message: OK +- request: + body: 'b''{"properties": {"dhcpOptions": {"dnsServers": []}, "addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "subnets": [{"properties": {"routeTable": {"properties": {"routes": + [{"properties": {"nextHopType": "Internet", "addressPrefix": "0.0.0.0/0"}, "id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteInternet", + "name": "vcCliTestRouteInternet"}, {"properties": {"nextHopType": "VnetLocal", + "addressPrefix": "10.0.0.0/24"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteVnetLoc", + "name": "vcCliTestRouteVnetLoc"}], "disableBgpRoutePropagation": false}, "id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable", + "location": "westus"}, "addressPrefix": "10.0.0.0/24"}, "name": "vcCliTestSubnet"}], + "virtualNetworkPeerings": [], "enableDdosProtection": false, "enableVmProtection": + false}, "location": "westus", "tags": {}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet"}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + Content-Length: + - '1315' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g --vnet-name -n --address-prefix --route-table + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestVnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet\",\r\n + \ \"etag\": \"W/\\\"9165ca4f-7a25-4cee-98f8-a062d1753fff\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"b67274ab-3d71-4d4f-b309-429742bf4de5\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [\r\n {\r\n \"name\": \"vcCliTestSubnet\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet/subnets/vcCliTestSubnet\",\r\n + \ \"etag\": \"W/\\\"9165ca4f-7a25-4cee-98f8-a062d1753fff\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"routeTable\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable\"\r\n + \ },\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": + \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/86dbe9bc-0903-4c63-805d-d5806b5a6ed2?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '1568' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:02:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 1cc1e9ea-4ffe-4915-b647-5c63f9234cea + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -g --vnet-name -n --address-prefix --route-table + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/86dbe9bc-0903-4c63-805d-d5806b5a6ed2?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:02:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 8d782d71-f429-47e3-acaa-e39ab585fed8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -g --vnet-name -n --address-prefix --route-table + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/86dbe9bc-0903-4c63-805d-d5806b5a6ed2?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:02:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 5cb1aa14-07a2-405c-8676-d68497f72f9e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -g --vnet-name -n --address-prefix --route-table + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/86dbe9bc-0903-4c63-805d-d5806b5a6ed2?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:02:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2c06eb7e-03b2-4f24-a007-56c5aae1bdc0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -g --vnet-name -n --address-prefix --route-table + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestVnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet\",\r\n + \ \"etag\": \"W/\\\"29bcd538-38ff-40b4-b853-5cbe6d1ea900\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"b67274ab-3d71-4d4f-b309-429742bf4de5\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [\r\n {\r\n \"name\": \"vcCliTestSubnet\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet/subnets/vcCliTestSubnet\",\r\n + \ \"etag\": \"W/\\\"29bcd538-38ff-40b4-b853-5cbe6d1ea900\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"routeTable\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable\"\r\n + \ },\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": + \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1570' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:02:53 GMT + etag: + - W/"29bcd538-38ff-40b4-b853-5cbe6d1ea900" + 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: + - de2c5d11-3410-432e-b8ab-80b9ffd6430a + status: + code: 200 + message: OK +- 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.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet/subnets/vcCliTestSubnet?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet/subnets/vcCliTestSubnet\",\r\n + \ \"etag\": \"W/\\\"29bcd538-38ff-40b4-b853-5cbe6d1ea900\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"routeTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable\"\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: + - '741' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:02:53 GMT + etag: + - W/"29bcd538-38ff-40b4-b853-5cbe6d1ea900" + 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: + - 7b253a3d-f476-4f5a-89c8-5e3952048b72 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/capabilities?include=supportedManagedInstanceVersions&api-version=2017-10-01-preview + response: + body: + string: '{"name":"West 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,"status":"Default"},{"name":"16","value":16,"status":"Available"},{"name":"24","value":24,"status":"Available"}],"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"status":"Available"},{"name":"Gen5","sku":"GP_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"2","value":2,"status":"Available"},{"name":"4","value":4,"status":"Available"},{"name":"8","value":8,"status":"Default"},{"name":"16","value":16,"status":"Available"},{"name":"24","value":24,"status":"Available"},{"name":"32","value":32,"status":"Available"},{"name":"40","value":40,"status":"Available"},{"name":"64","value":64,"status":"Available"},{"name":"80","value":80,"status":"Available"}],"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Default"}],"status":"Default"}],"status":"Default"},{"name":"BusinessCritical","supportedFamilies":[{"name":"Gen4","sku":"BC_Gen4","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"8","value":8,"status":"Default"},{"name":"16","value":16,"status":"Available"},{"name":"24","value":24,"status":"Available"}],"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"status":"Available"},{"name":"Gen5","sku":"BC_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"4","value":4,"status":"Available"},{"name":"8","value":8,"status":"Default"},{"name":"16","value":16,"status":"Available"},{"name":"24","value":24,"status":"Available"},{"name":"32","value":32,"status":"Available"},{"name":"40","value":40,"status":"Available"},{"name":"64","value":64,"status":"Available"},{"name":"80","value":80,"status":"Available"}],"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Default"}],"status":"Default"}],"status":"Available"}],"status":"Default"}],"status":"Available"}' + headers: + cache-control: + - no-cache + content-length: + - '2999' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:02: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: 'b''{"properties": {"vCores": 8, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet/subnets/vcCliTestSubnet", + "proxyOverride": "Proxy", "storageSizeInGB": 32, "licenseType": "LicenseIncluded", + "publicDataEndpointEnabled": true, "administratorLogin": "admin123", "collation": + "Serbian_Cyrillic_100_CS_AS", "administratorLoginPassword": "SecretPassword123"}, + "identity": {"type": "SystemAssigned"}, "location": "westus", "sku": {"name": + "GP_Gen5"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + Content-Length: + - '547' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2018-06-01-preview + response: + body: + string: '{"operation":"UpsertManagedServer","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + cache-control: + - no-cache + content-length: + - '74' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:03:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceOperationResults/204ee745-b816-4644-ade7-fa8b511c53eb?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: + - '1198' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:04:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:05:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:06: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:07: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:08: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:09: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:10: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:11: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:12: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:13: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:14: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:15: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:16: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:17: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:18: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:19: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:21: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:22: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:23: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:24: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:25: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:26: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:27: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:28: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:29: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:30: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:31:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:32:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:35: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:36: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:37: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:38: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:39: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:40: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:41: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:42: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:43: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:44: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:45: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:46: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:49: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:50: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:51: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:52: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:53: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:54: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:55: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:56: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:57: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:58: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 19:59: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:00: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:01: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:02: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:03: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:04: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:05: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:06: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:07: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:08: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:09: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:10: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:13: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:15: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:16: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:17: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:18: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:21: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:24: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:28: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:29: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:30: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:31: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:32: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:33: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:34: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:35: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:36: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:37: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:39: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:40: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:44: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:46:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:49: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:50: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:54: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:55: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:56: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:57: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 20:59: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:00: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:01: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:02: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:03:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:04:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:05:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:06: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:07: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:08: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:09: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:10: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:11: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:12: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:13: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:14: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:15: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:16: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:17: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:18: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:19: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:21: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:22: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:23: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:24: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:25: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:26: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:27:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:28: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:29: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:30: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:31: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:32: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:33: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:34: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:35: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:36: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:37: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:38: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:39: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:40: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:46: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:47: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:48: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:49: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:50: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:51: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:52: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:53: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:54: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:55: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:56: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:57: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:58: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 21:59: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:00: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:01: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:02: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:03: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:04: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:05: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:07: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:10: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:11: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:12: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:13: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:14: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:15: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:16: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:17: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:18: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:19: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"InProgress","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/204ee745-b816-4644-ade7-fa8b511c53eb?api-version=2018-06-01-preview + response: + body: + string: '{"name":"204ee745-b816-4644-ade7-fa8b511c53eb","status":"Succeeded","startTime":"2020-02-13T19:03:03.147Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:21: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2018-06-01-preview + response: + body: + string: '{"identity":{"principalId":"cb7ded18-76f9-4928-a391-7094a921cbe2","type":"SystemAssigned","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"fullyQualifiedDomainName":"clitestmi000002.0151380302c4.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet/subnets/vcCliTestSubnet","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":32,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"0151380302c4","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"UTC"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}' + headers: + cache-control: + - no-cache + content-length: + - '1125' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:21: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 midb create + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n --collation + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2018-06-01-preview + response: + body: + string: '{"identity":{"principalId":"cb7ded18-76f9-4928-a391-7094a921cbe2","type":"SystemAssigned","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"fullyQualifiedDomainName":"clitestmi000002.0151380302c4.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet/subnets/vcCliTestSubnet","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":32,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"0151380302c4","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"UTC"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}' + headers: + cache-control: + - no-cache + content-length: + - '1125' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:21: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: '{"properties": {"collation": "Serbian_Cyrillic_100_CS_AS"}, "location": + "westus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb create + Connection: + - keep-alive + Content-Length: + - '81' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g --mi -n --collation + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"operation":"CreateManagedDatabase","startTime":"2020-02-13T22:21:53.857Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/managedDatabaseAzureAsyncOperation/331be7db-06b9-452c-a006-dfc2b2336fe5?api-version=2018-06-01-preview + cache-control: + - no-cache + content-length: + - '76' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:21:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/managedDatabaseOperationResults/331be7db-06b9-452c-a006-dfc2b2336fe5?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 midb create + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n --collation + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/managedDatabaseAzureAsyncOperation/331be7db-06b9-452c-a006-dfc2b2336fe5?api-version=2018-06-01-preview + response: + body: + string: '{"name":"331be7db-06b9-452c-a006-dfc2b2336fe5","status":"InProgress","startTime":"2020-02-13T22:21:53.857Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:22: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 midb create + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n --collation + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/managedDatabaseAzureAsyncOperation/331be7db-06b9-452c-a006-dfc2b2336fe5?api-version=2018-06-01-preview + response: + body: + string: '{"name":"331be7db-06b9-452c-a006-dfc2b2336fe5","status":"Succeeded","startTime":"2020-02-13T22:21:53.857Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:22: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 midb create + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n --collation + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:22: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: '{"properties": {"retentionDays": 14}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb retention-policy update + Connection: + - keep-alive + Content-Length: + - '37' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g --mi -n --retention-days + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003/backupShortTermRetentionPolicies/default?api-version=2017-03-01-preview + response: + body: + string: '{"operation":"AlterManagedDatabase","startTime":"2020-02-13T22:22:27.397Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedShortTermRetentionPolicyAzureAsyncOperation/fc304e35-ce3d-4cba-bed7-9c5843fb127d?api-version=2017-03-01-preview + cache-control: + - no-cache + content-length: + - '75' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:22:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedShortTermRetentionPolicyOperationResults/fc304e35-ce3d-4cba-bed7-9c5843fb127d?api-version=2017-03-01-preview + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb retention-policy update + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n --retention-days + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedShortTermRetentionPolicyAzureAsyncOperation/fc304e35-ce3d-4cba-bed7-9c5843fb127d?api-version=2017-03-01-preview + response: + body: + string: '{"name":"fc304e35-ce3d-4cba-bed7-9c5843fb127d","status":"Succeeded","startTime":"2020-02-13T22:22:27.397Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:22: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 midb retention-policy update + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n --retention-days + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003/backupShortTermRetentionPolicies/default?api-version=2017-03-01-preview + response: + body: + string: '{"properties":{"retentionDays":14},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003/backupShortTermRetentionPolicies/default","name":"default","type":"Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies"}' + headers: + cache-control: + - no-cache + content-length: + - '434' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:22: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 midb retention-policy show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003/backupShortTermRetentionPolicies/default?api-version=2017-03-01-preview + response: + body: + string: '{"properties":{"retentionDays":14},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003/backupShortTermRetentionPolicies/default","name":"default","type":"Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies"}' + headers: + cache-control: + - no-cache + content-length: + - '434' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:22:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:22: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:23: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:24: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:25: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:26: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:26:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:26: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:26: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:26: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:26: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:26: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:26: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:26: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:26: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:26:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-13T22:21:56.153Z","earliestRestorePoint":"2020-02-13T22:26:17.147Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003","name":"MIDBShortTermRetention000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '591' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:26: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 midb delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g --managed-instance -n --yes + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIDBShortTermRetention000003?api-version=2018-06-01-preview + response: + body: + string: '{"operation":"DropManagedDatabase","startTime":"2020-02-13T22:26:21.417Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/managedDatabaseAzureAsyncOperation/06dd38ef-be0b-429b-8d2b-e1a21ac262a7?api-version=2018-06-01-preview + cache-control: + - no-cache + content-length: + - '74' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:26:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/managedDatabaseOperationResults/06dd38ef-be0b-429b-8d2b-e1a21ac262a7?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 midb delete + Connection: + - keep-alive + ParameterSetName: + - -g --managed-instance -n --yes + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/managedDatabaseAzureAsyncOperation/06dd38ef-be0b-429b-8d2b-e1a21ac262a7?api-version=2018-06-01-preview + response: + body: + string: '{"name":"06dd38ef-be0b-429b-8d2b-e1a21ac262a7","status":"Succeeded","startTime":"2020-02-13T22:26:21.417Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:26: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 midb list-deleted + Connection: + - keep-alive + ParameterSetName: + - -g --managed-instance + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/restorableDroppedDatabases?api-version=2017-03-01-preview + response: + body: + string: '{"value":[{"properties":{"databaseName":"MIDBShortTermRetention000003","creationDate":"2020-02-13T22:21:56.153Z","deletionDate":"2020-02-13T22:26:25.057Z","earliestRestoreDate":"2020-02-13T22:26:17.147Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/restorableDroppedDatabases/MIDBShortTermRetention000003,132261063850570000","name":"MIDBShortTermRetention000003,132261063850570000","type":"Microsoft.Sql/managedInstances/restorableDroppedDatabases"}]}' + headers: + cache-control: + - no-cache + content-length: + - '689' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:26: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: '{"properties": {"retentionDays": 7}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb retention-policy update + Connection: + - keep-alive + Content-Length: + - '36' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g --mi -n --retention-days --deletion-date + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/restorableDroppedDatabases/MIDBShortTermRetention000003%2C132261063850570000/backupShortTermRetentionPolicies/default?api-version=2017-03-01-preview + response: + body: + string: '{"operation":"AlterManagedDatabase","startTime":"2020-02-13T22:26:41.473Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedShortTermRetentionPolicyAzureAsyncOperation/25f29dea-0485-466d-bb82-9b673498c727?api-version=2017-03-01-preview + cache-control: + - no-cache + content-length: + - '75' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:26:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedShortTermRetentionPolicyOperationResults/25f29dea-0485-466d-bb82-9b673498c727?api-version=2017-03-01-preview + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb retention-policy update + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n --retention-days --deletion-date + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedShortTermRetentionPolicyAzureAsyncOperation/25f29dea-0485-466d-bb82-9b673498c727?api-version=2017-03-01-preview + response: + body: + string: '{"name":"25f29dea-0485-466d-bb82-9b673498c727","status":"Succeeded","startTime":"2020-02-13T22:26:41.473Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:26: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 midb retention-policy update + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n --retention-days --deletion-date + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/restorableDroppedDatabases/MIDBShortTermRetention000003%2C132261063850570000/backupShortTermRetentionPolicies/default?api-version=2017-03-01-preview + response: + body: + string: '{"properties":{"retentionDays":7},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/restorableDroppedDatabases/MIDBShortTermRetention000003,132261063850570000/backupShortTermRetentionPolicies/default","name":"default","type":"Microsoft.Sql/managedInstances/restorableDroppedDatabases/backupShortTermRetentionPolicies"}' + headers: + cache-control: + - no-cache + content-length: + - '486' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:26: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 midb retention-policy show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n --deletion-date + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/restorableDroppedDatabases/MIDBShortTermRetention000003%2C132261063850570000/backupShortTermRetentionPolicies/default?api-version=2017-03-01-preview + response: + body: + string: '{"properties":{"retentionDays":7},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/restorableDroppedDatabases/MIDBShortTermRetention000003,132261063850570000/backupShortTermRetentionPolicies/default","name":"default","type":"Microsoft.Sql/managedInstances/restorableDroppedDatabases/backupShortTermRetentionPolicies"}' + headers: + cache-control: + - no-cache + content-length: + - '486' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:26: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 +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_managed_deleted_db_restore.yaml b/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_managed_deleted_db_restore.yaml new file mode 100644 index 00000000000..16b4a5c70e9 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_managed_deleted_db_restore.yaml @@ -0,0 +1,25693 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network route-table create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","date":"2020-02-13T22:27:09Z","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '312' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:27:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network route-table create + Connection: + - keep-alive + Content-Length: + - '22' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestRouteTable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable\",\r\n + \ \"etag\": \"W/\\\"bc9c23c8-2b70-4938-8cfb-2e35a37d1358\\\"\",\r\n \"type\": + \"Microsoft.Network/routeTables\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0e1c20cd-b749-4f22-8c25-3fa176b70c02\",\r\n + \ \"disableBgpRoutePropagation\": false,\r\n \"routes\": []\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5b9c29af-0f33-49ee-b9af-583a9bc55135?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '504' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:27:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 722e82e2-0db9-4ca1-99a2-51fefe9063fa + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network route-table create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5b9c29af-0f33-49ee-b9af-583a9bc55135?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:27:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - a048e2e9-c3de-42e1-b74d-f79ad989c076 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network route-table create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestRouteTable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable\",\r\n + \ \"etag\": \"W/\\\"c780d423-22de-4789-b5df-792ecc1e4ee5\\\"\",\r\n \"type\": + \"Microsoft.Network/routeTables\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0e1c20cd-b749-4f22-8c25-3fa176b70c02\",\r\n + \ \"disableBgpRoutePropagation\": false,\r\n \"routes\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '505' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:27:36 GMT + etag: + - W/"c780d423-22de-4789-b5df-792ecc1e4ee5" + 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: + - a2769afb-8c1c-4a79-bcc5-a838413c5091 + status: + code: 200 + message: OK +- request: + body: '{"name": "vcCliTestRouteInternet", "properties": {"addressPrefix": "0.0.0.0/0", + "nextHopType": "Internet"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network route-table route create + Connection: + - keep-alive + Content-Length: + - '107' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g --route-table-name -n --next-hop-type --address-prefix + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteInternet?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestRouteInternet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteInternet\",\r\n + \ \"etag\": \"W/\\\"87d1ef9e-0eaf-4936-b649-3a7b51182b11\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"0.0.0.0/0\",\r\n + \ \"nextHopType\": \"Internet\",\r\n \"hasBgpOverride\": false\r\n },\r\n + \ \"type\": \"Microsoft.Network/routeTables/routes\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1daa8dfc-00bb-4ac5-aa66-a62767253e8c?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '494' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:27:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d981f433-fdf7-4c01-b799-eb50129d7d2b + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network route-table route create + Connection: + - keep-alive + ParameterSetName: + - -g --route-table-name -n --next-hop-type --address-prefix + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1daa8dfc-00bb-4ac5-aa66-a62767253e8c?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:27:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 702783a6-4c64-4445-a6e4-ede4cedf96ff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network route-table route create + Connection: + - keep-alive + ParameterSetName: + - -g --route-table-name -n --next-hop-type --address-prefix + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteInternet?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestRouteInternet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteInternet\",\r\n + \ \"etag\": \"W/\\\"41bb5d5a-404c-442f-8e9a-1e1d391e7c5d\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"0.0.0.0/0\",\r\n + \ \"nextHopType\": \"Internet\",\r\n \"hasBgpOverride\": false\r\n },\r\n + \ \"type\": \"Microsoft.Network/routeTables/routes\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '495' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:27:49 GMT + etag: + - W/"41bb5d5a-404c-442f-8e9a-1e1d391e7c5d" + 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: + - d9015281-4bea-4bde-8cb1-822337003474 + status: + code: 200 + message: OK +- request: + body: '{"name": "vcCliTestRouteVnetLoc", "properties": {"addressPrefix": "10.0.0.0/24", + "nextHopType": "VnetLocal"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network route-table route create + Connection: + - keep-alive + Content-Length: + - '109' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g --route-table-name -n --next-hop-type --address-prefix + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteVnetLoc?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestRouteVnetLoc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteVnetLoc\",\r\n + \ \"etag\": \"W/\\\"089715f8-30c7-4d54-adcf-0ffa6cc9d016\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"nextHopType\": \"VnetLocal\",\r\n \"hasBgpOverride\": false\r\n },\r\n + \ \"type\": \"Microsoft.Network/routeTables/routes\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8a88cf4f-c006-4cfc-99d4-990471e0fa6d?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '495' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:27:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - e309a636-931f-424e-ae1b-aafe88623505 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network route-table route create + Connection: + - keep-alive + ParameterSetName: + - -g --route-table-name -n --next-hop-type --address-prefix + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8a88cf4f-c006-4cfc-99d4-990471e0fa6d?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:28:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - f4fc6f38-4a4b-46c1-aac1-f1c42627c1df + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network route-table route create + Connection: + - keep-alive + ParameterSetName: + - -g --route-table-name -n --next-hop-type --address-prefix + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteVnetLoc?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestRouteVnetLoc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteVnetLoc\",\r\n + \ \"etag\": \"W/\\\"4df77e3b-85a6-48d4-9a47-1efe747ed523\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"nextHopType\": \"VnetLocal\",\r\n \"hasBgpOverride\": false\r\n },\r\n + \ \"type\": \"Microsoft.Network/routeTables/routes\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '496' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:28:03 GMT + etag: + - W/"4df77e3b-85a6-48d4-9a47-1efe747ed523" + 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: + - fad514de-fd4a-4302-841c-02ec3a194a22 + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "properties": {"dhcpOptions": {}, "addressSpace": + {"addressPrefixes": ["10.0.0.0/16"]}}, "tags": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + Content-Length: + - '123' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --location --address-prefix + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestVnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet\",\r\n + \ \"etag\": \"W/\\\"e6ae9a35-87f4-48ab-a86f-982fe2af32c4\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"b08b5909-9317-4b61-a1fa-7ec6a32f8136\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/77a655e4-4581-4f0e-8471-d7746e222915?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:28:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 79c5f466-2837-4789-9912-dce9c2d03d14 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -g -n --location --address-prefix + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/77a655e4-4581-4f0e-8471-d7746e222915?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:28:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 0295dac5-8f41-401a-a476-aeb9e48a0f2e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -g -n --location --address-prefix + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestVnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet\",\r\n + \ \"etag\": \"W/\\\"f0b63cdb-f023-48e5-ad15-4f0b6e16ed02\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"b08b5909-9317-4b61-a1fa-7ec6a32f8136\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:28:12 GMT + etag: + - W/"f0b63cdb-f023-48e5-ad15-4f0b6e16ed02" + 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: + - 5208e877-e478-4fc6-9883-0ee2e64790ac + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -g --vnet-name -n --address-prefix --route-table + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestRouteTable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable\",\r\n + \ \"etag\": \"W/\\\"4df77e3b-85a6-48d4-9a47-1efe747ed523\\\"\",\r\n \"type\": + \"Microsoft.Network/routeTables\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0e1c20cd-b749-4f22-8c25-3fa176b70c02\",\r\n + \ \"disableBgpRoutePropagation\": false,\r\n \"routes\": [\r\n {\r\n + \ \"name\": \"vcCliTestRouteInternet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteInternet\",\r\n + \ \"etag\": \"W/\\\"4df77e3b-85a6-48d4-9a47-1efe747ed523\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"0.0.0.0/0\",\r\n \"nextHopType\": + \"Internet\",\r\n \"hasBgpOverride\": false\r\n },\r\n \"type\": + \"Microsoft.Network/routeTables/routes\"\r\n },\r\n {\r\n \"name\": + \"vcCliTestRouteVnetLoc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteVnetLoc\",\r\n + \ \"etag\": \"W/\\\"4df77e3b-85a6-48d4-9a47-1efe747ed523\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"nextHopType\": + \"VnetLocal\",\r\n \"hasBgpOverride\": false\r\n },\r\n \"type\": + \"Microsoft.Network/routeTables/routes\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1651' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:28:13 GMT + etag: + - W/"4df77e3b-85a6-48d4-9a47-1efe747ed523" + 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: + - 84a787f0-992a-4aaf-b1e8-308be6bea427 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -g --vnet-name -n --address-prefix --route-table + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestVnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet\",\r\n + \ \"etag\": \"W/\\\"f0b63cdb-f023-48e5-ad15-4f0b6e16ed02\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"b08b5909-9317-4b61-a1fa-7ec6a32f8136\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:28:13 GMT + etag: + - W/"f0b63cdb-f023-48e5-ad15-4f0b6e16ed02" + 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: + - 8a64f888-3bfb-4d2d-aef4-c555b12941b2 + status: + code: 200 + message: OK +- request: + body: 'b''{"location": "westus", "properties": {"subnets": [{"name": "vcCliTestSubnet", + "properties": {"routeTable": {"location": "westus", "properties": {"routes": + [{"name": "vcCliTestRouteInternet", "properties": {"addressPrefix": "0.0.0.0/0", + "nextHopType": "Internet"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteInternet"}, + {"name": "vcCliTestRouteVnetLoc", "properties": {"addressPrefix": "10.0.0.0/24", + "nextHopType": "VnetLocal"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteVnetLoc"}], + "disableBgpRoutePropagation": false}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable"}, + "addressPrefix": "10.0.0.0/24"}}], "dhcpOptions": {"dnsServers": []}, "enableDdosProtection": + false, "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "enableVmProtection": + false, "virtualNetworkPeerings": []}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet", + "tags": {}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + Content-Length: + - '1315' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g --vnet-name -n --address-prefix --route-table + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestVnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet\",\r\n + \ \"etag\": \"W/\\\"e77b5f8c-f756-4d3a-bf27-1957798092ca\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"b08b5909-9317-4b61-a1fa-7ec6a32f8136\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [\r\n {\r\n \"name\": \"vcCliTestSubnet\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet/subnets/vcCliTestSubnet\",\r\n + \ \"etag\": \"W/\\\"e77b5f8c-f756-4d3a-bf27-1957798092ca\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"routeTable\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable\"\r\n + \ },\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": + \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4ff1e272-2216-4117-8ddd-dead9af12464?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '1568' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:28:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - c0b1d13d-ce97-4a9f-b0ef-2f3e9e1e332f + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -g --vnet-name -n --address-prefix --route-table + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4ff1e272-2216-4117-8ddd-dead9af12464?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:28:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 77624428-1040-46d5-bb35-2f7bc24fc6a6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -g --vnet-name -n --address-prefix --route-table + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestVnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet\",\r\n + \ \"etag\": \"W/\\\"b2396498-ed06-4818-9baf-1f6c0c468d01\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"b08b5909-9317-4b61-a1fa-7ec6a32f8136\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [\r\n {\r\n \"name\": \"vcCliTestSubnet\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet/subnets/vcCliTestSubnet\",\r\n + \ \"etag\": \"W/\\\"b2396498-ed06-4818-9baf-1f6c0c468d01\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"routeTable\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable\"\r\n + \ },\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": + \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1570' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:28:18 GMT + etag: + - W/"b2396498-ed06-4818-9baf-1f6c0c468d01" + 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: + - 370b2b17-8c36-4600-b9e4-35c0a5ba1d2a + status: + code: 200 + message: OK +- 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.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet/subnets/vcCliTestSubnet?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"vcCliTestSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet/subnets/vcCliTestSubnet\",\r\n + \ \"etag\": \"W/\\\"b2396498-ed06-4818-9baf-1f6c0c468d01\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"routeTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable\"\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: + - '741' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:28:18 GMT + etag: + - W/"b2396498-ed06-4818-9baf-1f6c0c468d01" + 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: + - 038ded76-157d-4d89-a161-486124e80947 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/capabilities?include=supportedManagedInstanceVersions&api-version=2017-10-01-preview + response: + body: + string: '{"name":"West 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,"status":"Default"},{"name":"16","value":16,"status":"Available"},{"name":"24","value":24,"status":"Available"}],"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"status":"Available"},{"name":"Gen5","sku":"GP_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"2","value":2,"status":"Available"},{"name":"4","value":4,"status":"Available"},{"name":"8","value":8,"status":"Default"},{"name":"16","value":16,"status":"Available"},{"name":"24","value":24,"status":"Available"},{"name":"32","value":32,"status":"Available"},{"name":"40","value":40,"status":"Available"},{"name":"64","value":64,"status":"Available"},{"name":"80","value":80,"status":"Available"}],"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Default"}],"status":"Default"}],"status":"Default"},{"name":"BusinessCritical","supportedFamilies":[{"name":"Gen4","sku":"BC_Gen4","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"8","value":8,"status":"Default"},{"name":"16","value":16,"status":"Available"},{"name":"24","value":24,"status":"Available"}],"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"status":"Available"},{"name":"Gen5","sku":"BC_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"4","value":4,"status":"Available"},{"name":"8","value":8,"status":"Default"},{"name":"16","value":16,"status":"Available"},{"name":"24","value":24,"status":"Available"},{"name":"32","value":32,"status":"Available"},{"name":"40","value":40,"status":"Available"},{"name":"64","value":64,"status":"Available"},{"name":"80","value":80,"status":"Available"}],"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Default"}],"status":"Default"}],"status":"Available"}],"status":"Default"}],"status":"Available"}' + headers: + cache-control: + - no-cache + content-length: + - '2999' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:28: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: 'b''{"location": "westus", "properties": {"storageSizeInGB": 32, "proxyOverride": + "Proxy", "publicDataEndpointEnabled": true, "vCores": 8, "administratorLoginPassword": + "SecretPassword123", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet/subnets/vcCliTestSubnet", + "administratorLogin": "admin123", "collation": "Serbian_Cyrillic_100_CS_AS", + "licenseType": "LicenseIncluded"}, "sku": {"name": "GP_Gen5"}, "identity": {"type": + "SystemAssigned"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + Content-Length: + - '547' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2018-06-01-preview + response: + body: + string: '{"operation":"UpsertManagedServer","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + cache-control: + - no-cache + content-length: + - '74' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:28:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceOperationResults/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:29: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:30: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:35: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:36: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:37: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:38: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:39: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:40: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:41: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:42: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:43: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:44: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:45: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:48: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:49: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:50: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:51: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:52: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:53: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:54: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:55: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:56: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:57: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:58: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 22:59: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:00: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:01: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:02: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:07: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:08: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:09: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:10: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:11: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:12: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:13: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:14: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:15:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:16:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:17: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:18: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:19: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:21: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:22: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:23: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:24: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:25: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:26: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:27: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:29: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:30: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:31: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:32:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:33:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:34:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:35:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:36: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:37: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:38: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:39: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:40: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:41: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:42: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:43: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:45: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:46: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:47: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:53: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:54: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:55: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:56: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:57: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:58:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Feb 2020 23:59:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:00: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:01: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:02: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:03: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:04: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:05: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:06: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:07: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:08: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:09: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:10: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:11: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:12: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:13: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:16: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:18: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:19: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:21: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:22: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:24: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:25: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:26: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:27: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:28: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:29: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:30: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:31: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:32: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:33: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:34: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:35: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:36: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:37: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:38: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:39: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:41: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:42: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:43: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:44: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:45: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:46: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:47: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:48: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:49: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:50: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:51: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:52: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:58: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 00:59: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:00: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:01: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:02: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:03: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:04: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:05: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:06: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:07: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:08:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:09: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:10:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:11: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:12: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:13: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:14: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:15: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:16: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:17: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:18: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:19: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:20: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:21: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:22: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:24: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:25: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:26:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:27:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:28:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:29:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:30: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:31: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:32: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:33: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:34: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:35: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:36: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:37: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:38: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:39: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:41: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:42: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:44: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:45: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:46: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:47: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:48: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:49:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:50:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:51: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:52: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:53: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:54: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:55: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:56: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:57: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01:58: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 01: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:01: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:02: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:03: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:04: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:05: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:06: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:07: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:08: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:09: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:10: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:11: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:12: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:13: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:14: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:15: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:16: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:18: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:19: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:23: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:25: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:26: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:27: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:28: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:29: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:30: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:31: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:32: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:33: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:34: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:35: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:36: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:37: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:39: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:42: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:44: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:45: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:46: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:47: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:48: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:49: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:50: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:51: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:52: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:53: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:54: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:55: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:56: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:57:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:58: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 02:59: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:00: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:01: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:02: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:03: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:04: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:05: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:06: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:07: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:08: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:11: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:14:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:15:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:16: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:19: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:21: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:22: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:23: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:24: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:25: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:26: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:27: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:28: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:29: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:30: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:31: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:32: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:33: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:34: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:35: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:36: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:37: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:38:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:39: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:40:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:41: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:42: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:43: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:44: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:45: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:50: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:51: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:52: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:53: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:54: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:55: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:56:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"InProgress","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:57: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/c02f56d9-8fd8-4bd6-a375-c019bf16ff5e?api-version=2018-06-01-preview + response: + body: + string: '{"name":"c02f56d9-8fd8-4bd6-a375-c019bf16ff5e","status":"Succeeded","startTime":"2020-02-13T22:28:28.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:58: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled --assign-identity + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2018-06-01-preview + response: + body: + string: '{"identity":{"principalId":"9acb884c-6d3a-46eb-b6fc-b572fbca5396","type":"SystemAssigned","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"fullyQualifiedDomainName":"clitestmi000002.da3aa5b3ed10.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet/subnets/vcCliTestSubnet","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":32,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"da3aa5b3ed10","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"UTC"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}' + headers: + cache-control: + - no-cache + content-length: + - '1125' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:58: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 midb create + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n --collation + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2018-06-01-preview + response: + body: + string: '{"identity":{"principalId":"9acb884c-6d3a-46eb-b6fc-b572fbca5396","type":"SystemAssigned","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"fullyQualifiedDomainName":"clitestmi000002.da3aa5b3ed10.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet/subnets/vcCliTestSubnet","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":32,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"da3aa5b3ed10","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"UTC"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}' + headers: + cache-control: + - no-cache + content-length: + - '1125' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03: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: '{"location": "westus", "properties": {"collation": "Serbian_Cyrillic_100_CS_AS"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb create + Connection: + - keep-alive + Content-Length: + - '81' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g --mi -n --collation + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"operation":"CreateManagedDatabase","startTime":"2020-02-14T03:58:34.49Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/managedDatabaseAzureAsyncOperation/a528dc16-f510-489e-9d6f-a4347dfe21e5?api-version=2018-06-01-preview + cache-control: + - no-cache + content-length: + - '75' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:58:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/managedDatabaseOperationResults/a528dc16-f510-489e-9d6f-a4347dfe21e5?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 midb create + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n --collation + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/managedDatabaseAzureAsyncOperation/a528dc16-f510-489e-9d6f-a4347dfe21e5?api-version=2018-06-01-preview + response: + body: + string: '{"name":"a528dc16-f510-489e-9d6f-a4347dfe21e5","status":"InProgress","startTime":"2020-02-14T03:58:34.49Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:58: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 midb create + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n --collation + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/managedDatabaseAzureAsyncOperation/a528dc16-f510-489e-9d6f-a4347dfe21e5?api-version=2018-06-01-preview + response: + body: + string: '{"name":"a528dc16-f510-489e-9d6f-a4347dfe21e5","status":"Succeeded","startTime":"2020-02-14T03:58:34.49Z"}' + headers: + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb create + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n --collation + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03:59: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 03: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:00: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:01: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '540' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02: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 midb show + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T03:58:36.99Z","earliestRestorePoint":"2020-02-14T04:02:39.047Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003","name":"MIRestoreDeletedDB000003","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '590' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02: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 midb delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g --managed-instance -n --yes + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000003?api-version=2018-06-01-preview + response: + body: + string: '{"operation":"DropManagedDatabase","startTime":"2020-02-14T04:02:42.273Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/managedDatabaseAzureAsyncOperation/d87d07b2-3771-442e-a082-323ec9a2e9ed?api-version=2018-06-01-preview + cache-control: + - no-cache + content-length: + - '74' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/managedDatabaseOperationResults/d87d07b2-3771-442e-a082-323ec9a2e9ed?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 midb delete + Connection: + - keep-alive + ParameterSetName: + - -g --managed-instance -n --yes + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/managedDatabaseAzureAsyncOperation/d87d07b2-3771-442e-a082-323ec9a2e9ed?api-version=2018-06-01-preview + response: + body: + string: '{"name":"d87d07b2-3771-442e-a082-323ec9a2e9ed","status":"Succeeded","startTime":"2020-02-14T04:02:42.273Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:02: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 midb list-deleted + Connection: + - keep-alive + ParameterSetName: + - -g --managed-instance + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/restorableDroppedDatabases?api-version=2017-03-01-preview + response: + body: + string: '{"value":[{"properties":{"databaseName":"MIRestoreDeletedDB000003","creationDate":"2020-02-14T03:58:36.99Z","deletionDate":"2020-02-14T04:02:45.29Z","earliestRestoreDate":"2020-02-14T04:02:39.047Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/restorableDroppedDatabases/MIRestoreDeletedDB000003,132261265652900000","name":"MIRestoreDeletedDB000003,132261265652900000","type":"Microsoft.Sql/managedInstances/restorableDroppedDatabases"}]}' + headers: + cache-control: + - no-cache + content-length: + - '687' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:03: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 midb restore + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n --dest-name --deletion-date --time + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2018-06-01-preview + response: + body: + string: '{"identity":{"principalId":"9acb884c-6d3a-46eb-b6fc-b572fbca5396","type":"SystemAssigned","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"fullyQualifiedDomainName":"clitestmi000002.da3aa5b3ed10.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet/subnets/vcCliTestSubnet","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":32,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"da3aa5b3ed10","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"UTC"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}' + headers: + cache-control: + - no-cache + content-length: + - '1125' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:03: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: 'b''{"location": "westus", "properties": {"restorableDroppedDatabaseId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/restorableDroppedDatabases/MIRestoreDeletedDB000003,132261265652900000", + "restorePointInTime": "2020-02-14T04:02:45.290Z", "createMode": "PointInTimeRestore"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb restore + Connection: + - keep-alive + Content-Length: + - '445' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g --mi -n --dest-name --deletion-date --time + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000004?api-version=2018-06-01-preview + response: + body: + string: '{"operation":"CreateManagedRestoreRequest","startTime":"2020-02-14T04:03:08.21Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/managedDatabaseAzureAsyncOperation/98c8bd4c-c90e-4345-a855-5867a473eccd?api-version=2018-06-01-preview + cache-control: + - no-cache + content-length: + - '81' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:03:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/managedDatabaseOperationResults/98c8bd4c-c90e-4345-a855-5867a473eccd?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 midb restore + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n --dest-name --deletion-date --time + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/managedDatabaseAzureAsyncOperation/98c8bd4c-c90e-4345-a855-5867a473eccd?api-version=2018-06-01-preview + response: + body: + string: '{"name":"98c8bd4c-c90e-4345-a855-5867a473eccd","status":"InProgress","startTime":"2020-02-14T04:03:08.21Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:03: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 midb restore + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n --dest-name --deletion-date --time + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/managedDatabaseAzureAsyncOperation/98c8bd4c-c90e-4345-a855-5867a473eccd?api-version=2018-06-01-preview + response: + body: + string: '{"name":"98c8bd4c-c90e-4345-a855-5867a473eccd","status":"InProgress","startTime":"2020-02-14T04:03:08.21Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:03: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 midb restore + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n --dest-name --deletion-date --time + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/managedDatabaseAzureAsyncOperation/98c8bd4c-c90e-4345-a855-5867a473eccd?api-version=2018-06-01-preview + response: + body: + string: '{"name":"98c8bd4c-c90e-4345-a855-5867a473eccd","status":"InProgress","startTime":"2020-02-14T04:03:08.21Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:03: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql midb restore + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n --dest-name --deletion-date --time + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/managedDatabaseAzureAsyncOperation/98c8bd4c-c90e-4345-a855-5867a473eccd?api-version=2018-06-01-preview + response: + body: + string: '{"name":"98c8bd4c-c90e-4345-a855-5867a473eccd","status":"InProgress","startTime":"2020-02-14T04:03:08.21Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:04: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 midb restore + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n --dest-name --deletion-date --time + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/managedDatabaseAzureAsyncOperation/98c8bd4c-c90e-4345-a855-5867a473eccd?api-version=2018-06-01-preview + response: + body: + string: '{"name":"98c8bd4c-c90e-4345-a855-5867a473eccd","status":"InProgress","startTime":"2020-02-14T04:03:08.21Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:04: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 midb restore + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n --dest-name --deletion-date --time + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westus/managedDatabaseAzureAsyncOperation/98c8bd4c-c90e-4345-a855-5867a473eccd?api-version=2018-06-01-preview + response: + body: + string: '{"name":"98c8bd4c-c90e-4345-a855-5867a473eccd","status":"Succeeded","startTime":"2020-02-14T04:03:08.21Z"}' + headers: + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:04: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 midb restore + Connection: + - keep-alive + ParameterSetName: + - -g --mi -n --dest-name --deletion-date --time + User-Agent: + - python/3.5.4 (Windows-10-10.0.14393-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-sql/0.15.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000004?api-version=2018-06-01-preview + response: + body: + string: '{"properties":{"collation":"Serbian_Cyrillic_100_CS_AS","status":"Online","creationDate":"2020-02-14T04:03:08.553Z","defaultSecondaryLocation":"eastus"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/databases/MIRestoreDeletedDB000004","name":"MIRestoreDeletedDB000004","type":"Microsoft.Sql/managedInstances/databases"}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Feb 2020 04:04: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 +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 b64557fb1dd..9e726c69190 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 @@ -764,6 +764,17 @@ def _create_db_wait_for_first_backup(test, resource_group, server, database_name return db +def _wait_until_first_backup_midb(self): + + earliest_restore_date_string = None + + while earliest_restore_date_string is None: + db = self.cmd('sql midb show -g {rg} --mi {managed_instance_name} -n {database_name}', + checks=[self.greater_than('length(@)', 0)]) + + earliest_restore_date_string = db.json_value['earliestRestorePoint'] + + class SqlServerDbRestoreScenarioTest(ScenarioTest): @ResourceGroupPreparer() @SqlServerPreparer() @@ -2973,6 +2984,212 @@ def test_sql_mi_tdebyok(self, resource_group, resource_group_location): self.check('serverKeyName', 'ServiceManaged')]) +class SqlManagedInstanceDbShortTermRetentionScenarioTest(ScenarioTest): + + @ResourceGroupPreparer(random_name_length=17, name_prefix='clitest') + def test_sql_managed_db_short_retention(self, resource_group, resource_group_location): + + resource_prefix = 'MIDBShortTermRetention' + + self.kwargs.update({ + 'loc': resource_group_location, + 'vnet_name': 'vcCliTestVnet', + 'subnet_name': 'vcCliTestSubnet', + 'route_table_name': 'vcCliTestRouteTable', + 'route_name_internet': 'vcCliTestRouteInternet', + 'route_name_vnetlocal': 'vcCliTestRouteVnetLoc', + 'managed_instance_name': self.create_random_name(managed_instance_name_prefix, managed_instance_name_max_length), + 'database_name': self.create_random_name(resource_prefix, 50), + 'vault_name': self.create_random_name(resource_prefix, 50), + 'admin_login': 'admin123', + 'admin_password': 'SecretPassword123', + 'license_type': 'LicenseIncluded', + 'v_cores': 8, + 'storage_size_in_gb': '32', + 'edition': 'GeneralPurpose', + 'family': 'Gen5', + 'collation': "Serbian_Cyrillic_100_CS_AS", + 'proxy_override': "Proxy", + 'retention_days_inc': 14, + 'retention_days_dec': 7 + }) + + # Create and prepare VNet and subnet for new virtual cluster + self.cmd('network route-table create -g {rg} -n {route_table_name}') + self.cmd('network route-table route create -g {rg} --route-table-name {route_table_name} -n {route_name_internet} --next-hop-type Internet --address-prefix 0.0.0.0/0') + self.cmd('network route-table route create -g {rg} --route-table-name {route_table_name} -n {route_name_vnetlocal} --next-hop-type VnetLocal --address-prefix 10.0.0.0/24') + self.cmd('network vnet create -g {rg} -n {vnet_name} --location {loc} --address-prefix 10.0.0.0/16') + self.cmd('network vnet subnet create -g {rg} --vnet-name {vnet_name} -n {subnet_name} --address-prefix 10.0.0.0/24 --route-table {route_table_name}') + subnet = self.cmd('network vnet subnet show -g {rg} --vnet-name {vnet_name} -n {subnet_name}').get_output_in_json() + + self.kwargs.update({ + 'subnet_id': subnet['id'] + }) + + # create sql managed_instance + self.cmd('sql mi create -g {rg} -n {managed_instance_name} -l {loc} ' + '-u {admin_login} -p {admin_password} --subnet {subnet_id} --license-type {license_type} ' + '--capacity {v_cores} --storage {storage_size_in_gb} --edition {edition} --family {family} ' + '--collation {collation} --proxy-override {proxy_override} --public-data-endpoint-enabled --assign-identity', + checks=[ + self.check('name', '{managed_instance_name}'), + self.check('resourceGroup', '{rg}'), + self.check('administratorLogin', '{admin_login}'), + self.check('vCores', '{v_cores}'), + self.check('storageSizeInGb', '{storage_size_in_gb}'), + self.check('licenseType', '{license_type}'), + self.check('sku.tier', '{edition}'), + self.check('sku.family', '{family}'), + self.check('sku.capacity', '{v_cores}'), + self.check('collation', '{collation}'), + self.check('proxyOverride', '{proxy_override}'), + self.check('publicDataEndpointEnabled', 'True')]).get_output_in_json() + + # create database + self.cmd('sql midb create -g {rg} --mi {managed_instance_name} -n {database_name} --collation {collation}', + checks=[ + self.check('resourceGroup', '{rg}'), + self.check('name', '{database_name}'), + self.check('location', '{loc}'), + self.check('collation', '{collation}'), + self.check('status', 'Online')]) + + # test update short term retention on live database + self.cmd('sql midb short-term-retention-policy set -g {rg} --mi {managed_instance_name} -n {database_name} --retention-days {retention_days_inc}', + checks=[ + self.check('resourceGroup', '{rg}'), + self.check('retentionDays', '{retention_days_inc}')]) + + # test get short term retention on live database + self.cmd('sql midb short-term-retention-policy show -g {rg} --mi {managed_instance_name} -n {database_name}', + checks=[ + self.check('resourceGroup', '{rg}'), + self.check('retentionDays', '{retention_days_inc}')]) + + # Wait for first backup before dropping + _wait_until_first_backup_midb(self) + + # Delete by group/server/name + self.cmd('sql midb delete -g {rg} --managed-instance {managed_instance_name} -n {database_name} --yes', + checks=[NoneCheck()]) + + # Get deleted database + deleted_databases = self.cmd('sql midb list-deleted -g {rg} --managed-instance {managed_instance_name}', + checks=[ + self.greater_than('length(@)', 0)]) + + self.kwargs.update({ + 'deleted_time': _get_deleted_date(deleted_databases.json_value[0]).isoformat() + }) + + # test update short term retention on deleted database + self.cmd('sql midb short-term-retention-policy set -g {rg} --mi {managed_instance_name} -n {database_name} --retention-days {retention_days_dec} --deleted-time {deleted_time}', + checks=[ + self.check('resourceGroup', '{rg}'), + self.check('retentionDays', '{retention_days_dec}')]) + + # test get short term retention on deleted database + self.cmd('sql midb short-term-retention-policy show -g {rg} --mi {managed_instance_name} -n {database_name} --deleted-time {deleted_time}', + checks=[ + self.check('resourceGroup', '{rg}'), + self.check('retentionDays', '{retention_days_dec}')]) + + +class SqlManagedInstanceRestoreDeletedDbScenarioTest(ScenarioTest): + + @ResourceGroupPreparer(random_name_length=17, name_prefix='clitest') + def test_sql_managed_deleted_db_restore(self, resource_group, resource_group_location): + + resource_prefix = 'MIRestoreDeletedDB' + + self.kwargs.update({ + 'loc': resource_group_location, + 'vnet_name': 'vcCliTestVnet', + 'subnet_name': 'vcCliTestSubnet', + 'route_table_name': 'vcCliTestRouteTable', + 'route_name_internet': 'vcCliTestRouteInternet', + 'route_name_vnetlocal': 'vcCliTestRouteVnetLoc', + 'managed_instance_name': self.create_random_name(managed_instance_name_prefix, managed_instance_name_max_length), + 'database_name': self.create_random_name(resource_prefix, 50), + 'restored_database_name': self.create_random_name(resource_prefix, 50), + 'vault_name': self.create_random_name(resource_prefix, 50), + 'admin_login': 'admin123', + 'admin_password': 'SecretPassword123', + 'license_type': 'LicenseIncluded', + 'v_cores': 8, + 'storage_size_in_gb': '32', + 'edition': 'GeneralPurpose', + 'family': 'Gen5', + 'collation': "Serbian_Cyrillic_100_CS_AS", + 'proxy_override': "Proxy", + 'retention_days_inc': 14, + 'retention_days_dec': 7 + }) + + # Create and prepare VNet and subnet for new virtual cluster + self.cmd('network route-table create -g {rg} -n {route_table_name}') + self.cmd('network route-table route create -g {rg} --route-table-name {route_table_name} -n {route_name_internet} --next-hop-type Internet --address-prefix 0.0.0.0/0') + self.cmd('network route-table route create -g {rg} --route-table-name {route_table_name} -n {route_name_vnetlocal} --next-hop-type VnetLocal --address-prefix 10.0.0.0/24') + self.cmd('network vnet create -g {rg} -n {vnet_name} --location {loc} --address-prefix 10.0.0.0/16') + self.cmd('network vnet subnet create -g {rg} --vnet-name {vnet_name} -n {subnet_name} --address-prefix 10.0.0.0/24 --route-table {route_table_name}') + subnet = self.cmd('network vnet subnet show -g {rg} --vnet-name {vnet_name} -n {subnet_name}').get_output_in_json() + + self.kwargs.update({ + 'subnet_id': subnet['id'] + }) + + # create sql managed_instance + self.cmd('sql mi create -g {rg} -n {managed_instance_name} -l {loc} ' + '-u {admin_login} -p {admin_password} --subnet {subnet_id} --license-type {license_type} ' + '--capacity {v_cores} --storage {storage_size_in_gb} --edition {edition} --family {family} ' + '--collation {collation} --proxy-override {proxy_override} --public-data-endpoint-enabled --assign-identity', + checks=[ + self.check('name', '{managed_instance_name}'), + self.check('resourceGroup', '{rg}'), + self.check('administratorLogin', '{admin_login}'), + self.check('vCores', '{v_cores}'), + self.check('storageSizeInGb', '{storage_size_in_gb}'), + self.check('licenseType', '{license_type}'), + self.check('sku.tier', '{edition}'), + self.check('sku.family', '{family}'), + self.check('sku.capacity', '{v_cores}'), + self.check('collation', '{collation}'), + self.check('proxyOverride', '{proxy_override}'), + self.check('publicDataEndpointEnabled', 'True')]).get_output_in_json() + + # create database + self.cmd('sql midb create -g {rg} --mi {managed_instance_name} -n {database_name} --collation {collation}', + checks=[ + self.check('resourceGroup', '{rg}'), + self.check('name', '{database_name}'), + self.check('location', '{loc}'), + self.check('collation', '{collation}'), + self.check('status', 'Online')]) + + # Wait for first backup before dropping + _wait_until_first_backup_midb(self) + + # Delete by group/server/name + self.cmd('sql midb delete -g {rg} --managed-instance {managed_instance_name} -n {database_name} --yes', + checks=[NoneCheck()]) + + # Get deleted database + deleted_databases = self.cmd('sql midb list-deleted -g {rg} --managed-instance {managed_instance_name}', + checks=[ + self.greater_than('length(@)', 0)]) + + self.kwargs.update({ + 'deleted_time': _get_deleted_date(deleted_databases.json_value[0]).isoformat() + }) + + # test restore deleted database + self.cmd('sql midb restore -g {rg} --mi {managed_instance_name} -n {database_name} --dest-name {restored_database_name} --deleted-time {deleted_time} --time {deleted_time}', + checks=[ + self.check('resourceGroup', '{rg}'), + self.check('name', '{restored_database_name}'), + self.check('status', 'Online')]) + + class SqlManagedInstanceDbMgmtScenarioTest(ScenarioTest): @record_only()