diff --git a/src/azure-cli/HISTORY.rst b/src/azure-cli/HISTORY.rst index a69e32a67a6..9db0bbe2666 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -10,6 +10,10 @@ Release History - Changed parameter --ask from utf-8 string to 32 character hex string. job start: - Changed the command from `job start` to `job create`. + +**SQL** + +* New Cmdlets for sql mi ad-admin that supports setting AAD administrator on Managed instance **Compute** 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 62b636cbb93..d48b973c185 100644 --- a/src/azure-cli/azure/cli/command_modules/sql/_help.py +++ b/src/azure-cli/azure/cli/command_modules/sql/_help.py @@ -784,6 +784,26 @@ type: command short-summary: Sets the SQL Instance's encryption protector. """ +helps['sql mi ad-admin'] = """ + type: group + short-summary: Manage a managed instance's Active Directory administrator. + """ +helps['sql mi ad-admin create'] = """ + type: command + short-summary: Creates a new managed instance Active Directory administrator. + """ +helps['sql mi ad-admin update'] = """ + type: command + short-summary: Updates an existing managed instance Active Directory administrator. + """ +helps['sql mi ad-admin list'] = """ + type: command + short-summary: Returns a list of managed instance Active Directory Administrators. + """ +helps['sql mi ad-admin delete'] = """ + type: command + short-summary: Deletes an existing managed instance Active Directory Administrator. + """ helps['sql instance-failover-group'] = """ type: group short-summary: Manage SQL Instance Failover Groups. 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 478aba1ddec..18cfb36f8af 100644 --- a/src/azure-cli/azure/cli/command_modules/sql/_params.py +++ b/src/azure-cli/azure/cli/command_modules/sql/_params.py @@ -16,6 +16,7 @@ ExportRequest, ManagedDatabase, ManagedInstance, + ManagedInstanceAdministrator, Server, ServerAzureADAdministrator, Sku, @@ -195,6 +196,14 @@ def get_location_type_with_default_from_resource_group(cli_ctx): help='Complete the failover even if doing so may result in data loss. ' 'This will allow the failover to proceed even if a primary database is unavailable.') +aad_admin_login_param_type = CLIArgumentType( + options_list=['--display-name', '-u'], + help='Display name of the Azure AD administrator user or group.') + +aad_admin_sid_param_type = CLIArgumentType( + options_list=['--object-id', '-i'], + help='The unique ID of the Azure AD administrator.') + db_service_objective_examples = 'Basic, S0, P1, GP_Gen4_1, BC_Gen5_2.' dw_service_objective_examples = 'DW100, DW1000c' @@ -937,12 +946,10 @@ def _configure_security_policy_storage_params(arg_ctx): options_list=['--server-name', '--server', '-s']) c.argument('login', - options_list=['--display-name', '-u'], - help='Display name of the Azure AD administrator user or group.') + arg_type=aad_admin_login_param_type) c.argument('sid', - options_list=['--object-id', '-i'], - help='The unique ID of the Azure AD administrator ') + arg_type=aad_admin_sid_param_type) c.ignore('tenant_id') @@ -1199,6 +1206,35 @@ def _configure_security_policy_storage_params(arg_ctx): arg_type=kid_param_type, required=True,) + ##### + # sql managed instance ad-admin + ###### + with self.argument_context('sql mi ad-admin') as c: + c.argument('managed_instance_name', + arg_type=managed_instance_param_type) + + c.argument('login', + arg_type=aad_admin_login_param_type) + + c.argument('sid', + arg_type=aad_admin_sid_param_type) + + with self.argument_context('sql mi ad-admin create') as c: + # Create args that will be used to build up the ManagedInstanceAdministrator object + create_args_for_complex_type( + c, 'properties', ManagedInstanceAdministrator, [ + 'login', + 'sid', + ]) + + with self.argument_context('sql mi ad-admin update') as c: + # Create args that will be used to build up the ManagedInstanceAdministrator object + create_args_for_complex_type( + c, 'properties', ManagedInstanceAdministrator, [ + 'login', + 'sid', + ]) + ##### # sql server tde-key ##### 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 846f313c935..c6392a63a70 100644 --- a/src/azure-cli/azure/cli/command_modules/sql/_util.py +++ b/src/azure-cli/azure/cli/command_modules/sql/_util.py @@ -132,6 +132,10 @@ def get_sql_managed_instances_operations(cli_ctx, _): return get_sql_management_client(cli_ctx).managed_instances +def get_sql_managed_instance_azure_ad_administrators_operations(cli_ctx, _): + return get_sql_management_client(cli_ctx).managed_instance_administrators + + def get_sql_managed_databases_operations(cli_ctx, _): return get_sql_management_client(cli_ctx).managed_databases 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 c70f9e605c9..0ca134f8365 100644 --- a/src/azure-cli/azure/cli/command_modules/sql/commands.py +++ b/src/azure-cli/azure/cli/command_modules/sql/commands.py @@ -36,6 +36,7 @@ get_sql_failover_groups_operations, get_sql_firewall_rules_operations, get_sql_managed_databases_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, @@ -493,6 +494,19 @@ def load_command_table(self, _): g.show_command('show', 'get') g.custom_command('set', 'managed_instance_encryption_protector_update') + managed_instance_aadadmin_operations = CliCommandType( + operations_tmpl='azure.mgmt.sql.operations#ManagedInstanceAdministratorsOperations.{}', + client_factory=get_sql_managed_instance_azure_ad_administrators_operations) + + with self.command_group('sql mi ad-admin', + managed_instance_aadadmin_operations, + client_factory=get_sql_managed_instance_azure_ad_administrators_operations) as g: + + g.custom_command('create', 'mi_ad_admin_set') + g.command('list', 'list_by_instance') + g.custom_command('delete', 'mi_ad_admin_delete') + g.custom_command('update', 'mi_ad_admin_set') + ############################################### # sql managed db # ############################################### 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 eee1a5a0858..3006b3fc0d1 100644 --- a/src/azure-cli/azure/cli/command_modules/sql/custom.py +++ b/src/azure-cli/azure/cli/command_modules/sql/custom.py @@ -17,7 +17,6 @@ CapabilityStatus, CreateMode, DatabaseEdition, - EncryptionProtector, FailoverGroup, FailoverGroupReadOnlyEndpoint, FailoverGroupReadWriteEndpoint, @@ -328,6 +327,17 @@ def _db_elastic_pool_update_sku( allow_reset_family=allow_reset_family) +def _get_tenant_id(): + ''' + Gets tenantId from current subscription. + ''' + from azure.cli.core._profile import Profile + + profile = Profile() + sub = profile.get_subscription() + return sub['tenantId'] + + _DEFAULT_SERVER_VERSION = "12.0" @@ -1777,7 +1787,6 @@ def server_update( def server_ad_admin_set( - cmd, client, resource_group_name, server_name, @@ -1785,11 +1794,8 @@ def server_ad_admin_set( ''' Sets a server's AD admin. ''' - from azure.cli.core._profile import Profile - profile = Profile(cli_ctx=cmd.cli_ctx) - sub = profile.get_subscription() - kwargs['tenant_id'] = sub['tenantId'] + kwargs['tenant_id'] = _get_tenant_id() return client.create_or_update( server_name=server_name, @@ -2010,10 +2016,8 @@ def encryption_protector_update( return client.create_or_update( resource_group_name=resource_group_name, server_name=server_name, - parameters=EncryptionProtector( - server_key_type=server_key_type, - server_key_name=key_name - ) + server_key_type=server_key_type, + server_key_name=key_name ) ############################################### @@ -2226,6 +2230,44 @@ def managed_instance_encryption_protector_update( server_key_name=key_name ) + +##### +# sql managed instance ad-admin +##### + + +def mi_ad_admin_set( + client, + resource_group_name, + managed_instance_name, + **kwargs): + ''' + Creates a managed instance active directory administrator. + ''' + + kwargs['tenant_id'] = _get_tenant_id() + + return client.create_or_update( + resource_group_name=resource_group_name, + managed_instance_name=managed_instance_name, + administrator_name="ActiveDirectory", + parameters=kwargs + ) + + +def mi_ad_admin_delete( + client, + resource_group_name, + managed_instance_name): + ''' + Deletes a managed instance active directory administrator. + ''' + return client.delete( + resource_group_name=resource_group_name, + managed_instance_name=managed_instance_name, + administrator_name="ActiveDirectory" + ) + ############################################### # sql managed db # ############################################### diff --git a/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_instance_failover_group_mgmt.yaml b/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_instance_failover_group_mgmt.yaml index 53d7117e6fc..d83fb86da9d 100644 --- a/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_instance_failover_group_mgmt.yaml +++ b/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_instance_failover_group_mgmt.yaml @@ -18,7 +18,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geodrCLtestRG/providers/Microsoft.Sql/managedInstances/geodrmitestgp-01?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geodrCLtestRG/providers/Microsoft.Sql/managedInstances/geodrmitestgp-01?api-version=2018-06-01-preview response: body: string: !!python/unicode '{"identity":{"principalId":"8b8ac196-72ec-43a7-9020-ab1d5fc498cb","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen4","tier":"GeneralPurpose","family":"Gen4","capacity":8},"properties":{"fullyQualifiedDomainName":"geodrmitestgp-01.eus113708aec224c.database.windows.net","administratorLogin":"cloudSA","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geodrCLtestRG/providers/Microsoft.Network/virtualNetworks/geodrEastUSvnet/subnets/default","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":512,"collation":"SQL_Latin1_General_CP1_CI_AS","dnsZone":"eus113708aec224c","publicDataEndpointEnabled":false},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geodrCLtestRG/providers/Microsoft.Sql/managedInstances/geodrmitestgp-01","name":"geodrmitestgp-01","type":"Microsoft.Sql/managedInstances"}' @@ -67,7 +67,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geodrCLtestRG/providers/Microsoft.Sql/managedInstances/geodrmitestgp-secondary?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geodrCLtestRG/providers/Microsoft.Sql/managedInstances/geodrmitestgp-secondary?api-version=2018-06-01-preview response: body: string: !!python/unicode '{"identity":{"principalId":"647bf67a-773a-4b36-af4c-4162e766a4b8","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"fullyQualifiedDomainName":"geodrmitestgp-secondary.eus113708aec224c.database.windows.net","administratorLogin":"cloudSA","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geodrCLtestRG/providers/Microsoft.Network/virtualNetworks/vnet-geodrmitestgp-secondary/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":512,"collation":"SQL_Latin1_General_CP1_CI_AS","dnsZone":"eus113708aec224c","publicDataEndpointEnabled":false,"proxyOverride":"Proxy","timezoneId":"UTC"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geodrCLtestRG/providers/Microsoft.Sql/managedInstances/geodrmitestgp-secondary","name":"geodrmitestgp-secondary","type":"Microsoft.Sql/managedInstances"}' @@ -117,7 +117,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geodrCLtestRG/providers/Microsoft.Sql/managedInstances/geodrmitestgp-01?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geodrCLtestRG/providers/Microsoft.Sql/managedInstances/geodrmitestgp-01?api-version=2018-06-01-preview response: body: string: !!python/unicode '{"identity":{"principalId":"8b8ac196-72ec-43a7-9020-ab1d5fc498cb","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen4","tier":"GeneralPurpose","family":"Gen4","capacity":8},"properties":{"fullyQualifiedDomainName":"geodrmitestgp-01.eus113708aec224c.database.windows.net","administratorLogin":"cloudSA","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geodrCLtestRG/providers/Microsoft.Network/virtualNetworks/geodrEastUSvnet/subnets/default","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":512,"collation":"SQL_Latin1_General_CP1_CI_AS","dnsZone":"eus113708aec224c","publicDataEndpointEnabled":false},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geodrCLtestRG/providers/Microsoft.Sql/managedInstances/geodrmitestgp-01","name":"geodrmitestgp-01","type":"Microsoft.Sql/managedInstances"}' @@ -167,7 +167,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geodrCLtestRG/providers/Microsoft.Sql/managedInstances/geodrmitestgp-secondary?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geodrCLtestRG/providers/Microsoft.Sql/managedInstances/geodrmitestgp-secondary?api-version=2018-06-01-preview response: body: string: !!python/unicode '{"identity":{"principalId":"647bf67a-773a-4b36-af4c-4162e766a4b8","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"fullyQualifiedDomainName":"geodrmitestgp-secondary.eus113708aec224c.database.windows.net","administratorLogin":"cloudSA","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geodrCLtestRG/providers/Microsoft.Network/virtualNetworks/vnet-geodrmitestgp-secondary/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":512,"collation":"SQL_Latin1_General_CP1_CI_AS","dnsZone":"eus113708aec224c","publicDataEndpointEnabled":false,"proxyOverride":"Proxy","timezoneId":"UTC"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geodrCLtestRG/providers/Microsoft.Sql/managedInstances/geodrmitestgp-secondary","name":"geodrmitestgp-secondary","type":"Microsoft.Sql/managedInstances"}' diff --git a/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_managed_db_mgmt.yaml b/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_managed_db_mgmt.yaml index b390b5ca5f3..e548155db9f 100644 --- a/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_managed_db_mgmt.yaml +++ b/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_managed_db_mgmt.yaml @@ -45,7 +45,7 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2018-06-01-preview response: body: {string: '{"operation":"UpsertManagedServer","startTime":"2018-05-31T17:57:35.033Z"}'} headers: @@ -127,7 +127,7 @@ interactions: msrest/0.4.29 msrest_azure/0.4.31 azure-mgmt-sql/0.9.0 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2018-06-01-preview response: body: {string: '{"sku":{"name":"GP_Gen4","tier":"GeneralPurpose","family":"Gen4","capacity":8},"properties":{"fullyQualifiedDomainName":"clitestmi000001.wcus1620a4a77b113.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial/subnets/CooL","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":64},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'} headers: @@ -156,7 +156,7 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2018-06-01-preview response: body: {string: '{"sku":{"name":"GP_Gen4","tier":"GeneralPurpose","family":"Gen4","capacity":8},"properties":{"fullyQualifiedDomainName":"clitestmi000001.wcus1620a4a77b113.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial/subnets/CooL","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":64},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'} headers: @@ -186,7 +186,7 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases/cliautomationdb01?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases/cliautomationdb01?api-version=2018-06-01-preview response: body: {string: '{"operation":"CreateManagedDatabase","startTime":"2018-05-31T17:59:41.44Z"}'} headers: @@ -241,7 +241,7 @@ interactions: msrest/0.4.29 msrest_azure/0.4.31 azure-mgmt-sql/0.9.0 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases/cliautomationdb01?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases/cliautomationdb01?api-version=2018-06-01-preview response: body: {string: '{"properties":{"collation":"Latin1_General_100_CS_AS_SC","status":"Online","creationDate":"2018-05-31T17:59:41.627Z","defaultSecondaryLocation":"westus2"},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases/cliautomationdb01","name":"cliautomationdb01","type":"Microsoft.Sql/managedInstances/databases"}'} headers: @@ -270,7 +270,7 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2018-06-01-preview response: body: {string: '{"sku":{"name":"GP_Gen4","tier":"GeneralPurpose","family":"Gen4","capacity":8},"properties":{"fullyQualifiedDomainName":"clitestmi000001.wcus1620a4a77b113.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial/subnets/CooL","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":64},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'} headers: @@ -301,7 +301,7 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases/restoredcliautomationdb01?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases/restoredcliautomationdb01?api-version=2018-06-01-preview response: body: {string: '{"operation":"CreateManagedRestoreRequest","startTime":"2018-05-31T18:05:02.607Z"}'} headers: @@ -1058,7 +1058,7 @@ interactions: msrest/0.4.29 msrest_azure/0.4.31 azure-mgmt-sql/0.9.0 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases/restoredcliautomationdb01?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases/restoredcliautomationdb01?api-version=2018-06-01-preview response: body: {string: '{"properties":{"collation":"Latin1_General_100_CS_AS_SC","status":"Online","creationDate":"2018-05-31T18:05:02.893Z","defaultSecondaryLocation":"westus2"},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases/restoredcliautomationdb01","name":"restoredcliautomationdb01","type":"Microsoft.Sql/managedInstances/databases"}'} headers: @@ -1087,7 +1087,7 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases?api-version=2018-06-01-preview response: body: {string: '{"value":[{"properties":{"collation":"Latin1_General_100_CS_AS_SC","status":"Online","creationDate":"2018-05-31T17:59:41.627Z","earliestRestorePoint":"2018-05-31T18:00:11.88Z","defaultSecondaryLocation":"westus2"},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases/cliautomationdb01","name":"cliautomationdb01","type":"Microsoft.Sql/managedInstances/databases"},{"properties":{"collation":"Latin1_General_100_CS_AS_SC","status":"Online","creationDate":"2018-05-31T18:05:02.893Z","defaultSecondaryLocation":"westus2"},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases/restoredcliautomationdb01","name":"restoredcliautomationdb01","type":"Microsoft.Sql/managedInstances/databases"}]}'} headers: @@ -1116,7 +1116,7 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases/cliautomationdb01?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases/cliautomationdb01?api-version=2018-06-01-preview response: body: {string: '{"properties":{"collation":"Latin1_General_100_CS_AS_SC","status":"Online","creationDate":"2018-05-31T17:59:41.627Z","earliestRestorePoint":"2018-05-31T18:00:11.88Z","defaultSecondaryLocation":"westus2"},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases/cliautomationdb01","name":"cliautomationdb01","type":"Microsoft.Sql/managedInstances/databases"}'} headers: @@ -1145,7 +1145,7 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases/restoredcliautomationdb01?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases/restoredcliautomationdb01?api-version=2018-06-01-preview response: body: {string: '{"properties":{"collation":"Latin1_General_100_CS_AS_SC","status":"Online","creationDate":"2018-05-31T18:05:02.893Z","defaultSecondaryLocation":"westus2"},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases/restoredcliautomationdb01","name":"restoredcliautomationdb01","type":"Microsoft.Sql/managedInstances/databases"}'} headers: @@ -1175,7 +1175,7 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases/cliautomationdb01?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases/cliautomationdb01?api-version=2018-06-01-preview response: body: {string: '{"operation":"DropManagedDatabase","startTime":"2018-05-31T18:12:16.513Z"}'} headers: @@ -1502,7 +1502,7 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases/cliautomationdb01?api-version=2017-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001/databases/cliautomationdb01?api-version=2018-06-01-preview response: body: {string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Sql/managedInstances/clitestmi000001/databases/cliautomationdb01'' under resource group ''cl_one'' was not found."}}'} @@ -1531,7 +1531,7 @@ interactions: AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2018-06-01-preview response: body: {string: '{"operation":"DropManagedServer","startTime":"2018-05-31T18:15:12.373Z"}'} headers: diff --git a/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_managed_instance_mgmt.yaml b/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_managed_instance_mgmt.yaml index 66757f9b654..e0278f5959e 100644 --- a/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_managed_instance_mgmt.yaml +++ b/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_managed_instance_mgmt.yaml @@ -50,7 +50,7 @@ interactions: azure-mgmt-sql/0.12.0 Azure-SDK-For-Python AZURECLI/2.0.61] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2018-06-01-preview response: body: {string: '{"operation":"UpsertManagedServer","startTime":"2019-04-08T14:21:22.91Z"}'} headers: @@ -370,7 +370,7 @@ interactions: User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sql/0.12.0 Azure-SDK-For-Python AZURECLI/2.0.61] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2018-06-01-preview response: body: {string: '{"sku":{"name":"GP_Gen4","tier":"GeneralPurpose","family":"Gen4","capacity":8},"properties":{"fullyQualifiedDomainName":"clitestmi000001.wcus1620a4a77b113.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial/subnets/CooL","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":64,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"wcus1620a4a77b113","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central European Standard Time"},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'} @@ -399,7 +399,7 @@ interactions: azure-mgmt-sql/0.12.0 Azure-SDK-For-Python AZURECLI/2.0.61] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2018-06-01-preview response: body: {string: '{"sku":{"name":"GP_Gen4","tier":"GeneralPurpose","family":"Gen4","capacity":8},"properties":{"fullyQualifiedDomainName":"clitestmi000001.wcus1620a4a77b113.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial/subnets/CooL","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":64,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"wcus1620a4a77b113","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central European Standard Time"},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'} @@ -428,7 +428,7 @@ interactions: azure-mgmt-sql/0.12.0 Azure-SDK-For-Python AZURECLI/2.0.61] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2018-06-01-preview response: body: {string: '{"sku":{"name":"GP_Gen4","tier":"GeneralPurpose","family":"Gen4","capacity":8},"properties":{"fullyQualifiedDomainName":"clitestmi000001.wcus1620a4a77b113.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial/subnets/CooL","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":64,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"wcus1620a4a77b113","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central European Standard Time"},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'} @@ -457,7 +457,7 @@ interactions: azure-mgmt-sql/0.12.0 Azure-SDK-For-Python AZURECLI/2.0.61] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2018-06-01-preview response: body: {string: '{"sku":{"name":"GP_Gen4","tier":"GeneralPurpose","family":"Gen4","capacity":8},"properties":{"fullyQualifiedDomainName":"clitestmi000001.wcus1620a4a77b113.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial/subnets/CooL","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":64,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"wcus1620a4a77b113","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central European Standard Time"},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'} @@ -494,7 +494,7 @@ interactions: azure-mgmt-sql/0.12.0 Azure-SDK-For-Python AZURECLI/2.0.61] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2018-06-01-preview response: body: {string: '{"operation":"UpsertManagedServer","startTime":"2019-04-08T14:31:37.717Z"}'} headers: @@ -549,7 +549,7 @@ interactions: User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sql/0.12.0 Azure-SDK-For-Python AZURECLI/2.0.61] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2018-06-01-preview response: body: {string: '{"identity":{"principalId":"e0261260-9205-4100-9e6f-75b97f69871c","type":"SystemAssigned","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"sku":{"name":"GP_Gen4","tier":"GeneralPurpose","family":"Gen4","capacity":8},"properties":{"fullyQualifiedDomainName":"clitestmi000001.wcus1620a4a77b113.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial/subnets/CooL","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":64,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"wcus1620a4a77b113","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central European Standard Time"},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'} @@ -578,7 +578,7 @@ interactions: azure-mgmt-sql/0.12.0 Azure-SDK-For-Python AZURECLI/2.0.61] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2018-06-01-preview response: body: {string: '{"identity":{"principalId":"e0261260-9205-4100-9e6f-75b97f69871c","type":"SystemAssigned","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"sku":{"name":"GP_Gen4","tier":"GeneralPurpose","family":"Gen4","capacity":8},"properties":{"fullyQualifiedDomainName":"clitestmi000001.wcus1620a4a77b113.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial/subnets/CooL","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":64,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"wcus1620a4a77b113","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central European Standard Time"},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'} @@ -615,7 +615,7 @@ interactions: azure-mgmt-sql/0.12.0 Azure-SDK-For-Python AZURECLI/2.0.61] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2018-06-01-preview response: body: {string: '{"operation":"UpsertManagedServer","startTime":"2019-04-08T14:32:42.86Z"}'} headers: @@ -670,7 +670,7 @@ interactions: User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sql/0.12.0 Azure-SDK-For-Python AZURECLI/2.0.61] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2018-06-01-preview response: body: {string: '{"identity":{"principalId":"e0261260-9205-4100-9e6f-75b97f69871c","type":"SystemAssigned","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"sku":{"name":"GP_Gen4","tier":"GeneralPurpose","family":"Gen4","capacity":8},"properties":{"fullyQualifiedDomainName":"clitestmi000001.wcus1620a4a77b113.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial/subnets/CooL","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":64,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"wcus1620a4a77b113","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central European Standard Time"},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'} @@ -699,7 +699,7 @@ interactions: azure-mgmt-sql/0.12.0 Azure-SDK-For-Python AZURECLI/2.0.61] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2018-06-01-preview response: body: {string: '{"identity":{"principalId":"e0261260-9205-4100-9e6f-75b97f69871c","type":"SystemAssigned","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"sku":{"name":"GP_Gen4","tier":"GeneralPurpose","family":"Gen4","capacity":8},"properties":{"fullyQualifiedDomainName":"clitestmi000001.wcus1620a4a77b113.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial/subnets/CooL","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":64,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"wcus1620a4a77b113","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central European Standard Time"},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'} @@ -735,7 +735,7 @@ interactions: azure-mgmt-sql/0.12.0 Azure-SDK-For-Python AZURECLI/2.0.61] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2018-06-01-preview response: body: {string: '{"operation":"UpsertManagedServer","startTime":"2019-04-08T14:33:48.503Z"}'} headers: @@ -790,7 +790,7 @@ interactions: User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sql/0.12.0 Azure-SDK-For-Python AZURECLI/2.0.61] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2018-06-01-preview response: body: {string: '{"identity":{"principalId":"e0261260-9205-4100-9e6f-75b97f69871c","type":"SystemAssigned","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"sku":{"name":"GP_Gen4","tier":"GeneralPurpose","family":"Gen4","capacity":8},"properties":{"fullyQualifiedDomainName":"clitestmi000001.wcus1620a4a77b113.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial/subnets/CooL","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":64,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"wcus1620a4a77b113","publicDataEndpointEnabled":false,"proxyOverride":"Redirect","timezoneId":"Central European Standard Time"},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'} @@ -856,7 +856,7 @@ interactions: azure-mgmt-sql/0.12.0 Azure-SDK-For-Python AZURECLI/2.0.61] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2018-06-01-preview response: body: {string: '{"operation":"UpsertManagedServer","startTime":"2019-04-08T14:34:56.143Z"}'} headers: @@ -997,7 +997,7 @@ interactions: User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-sql/0.12.0 Azure-SDK-For-Python AZURECLI/2.0.61] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2018-06-01-preview response: body: {string: '{"identity":{"principalId":"3be198d1-ad48-471e-86b5-6aeea33bd13a","type":"SystemAssigned","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"sku":{"name":"GP_Gen4","tier":"GeneralPurpose","family":"Gen4","capacity":8},"properties":{"fullyQualifiedDomainName":"clitestmi000002.wcus1620a4a77b113.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial/subnets/CooL","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":64,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"wcus1620a4a77b113","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"UTC"},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'} headers: @@ -1025,7 +1025,7 @@ interactions: azure-mgmt-sql/0.12.0 Azure-SDK-For-Python AZURECLI/2.0.61] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2018-06-01-preview response: body: {string: '{"identity":{"principalId":"3be198d1-ad48-471e-86b5-6aeea33bd13a","type":"SystemAssigned","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"sku":{"name":"GP_Gen4","tier":"GeneralPurpose","family":"Gen4","capacity":8},"properties":{"fullyQualifiedDomainName":"clitestmi000002.wcus1620a4a77b113.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Network/virtualNetworks/cl_initial/subnets/CooL","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":64,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"wcus1620a4a77b113","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"UTC"},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'} headers: @@ -1052,7 +1052,7 @@ interactions: azure-mgmt-sql/0.12.0 Azure-SDK-For-Python AZURECLI/2.0.61] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/managedInstances?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/managedInstances?api-version=2018-06-01-preview response: body: {string: '{"value":[{"identity":{"principalId":"5530da52-c01f-4d3d-b8fa-288ede4cf8cc","type":"SystemAssigned","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"sku":{"name":"GP_Gen4","tier":"GeneralPurpose","family":"Gen4","capacity":8},"properties":{"fullyQualifiedDomainName":"sqlmip2s2.eus10591ea51e31a.database.windows.net","administratorLogin":"cloudSA","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlmip2s2/providers/Microsoft.Network/virtualNetworks/SQLMI-VNET/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":256,"collation":"SQL_Latin1_General_CP1_CI_AS","dnsZone":"eus10591ea51e31a","publicDataEndpointEnabled":false},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlmip2s2/providers/Microsoft.Sql/managedInstances/sqlmip2s2","name":"sqlmip2s2","type":"Microsoft.Sql/managedInstances"},{"identity":{"principalId":"46d48381-f5cf-4330-b947-c080bc53a210","type":"SystemAssigned","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"fullyQualifiedDomainName":"geo2-neu-midemo.1549d2323079.database.windows.net","administratorLogin":"cloudsa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cc-fg-rg/providers/Microsoft.Network/virtualNetworks/neu-site-vnet/subnets/ManagedIntance","state":"Ready","licenseType":"BasePrice","vCores":8,"storageSizeInGB":32,"collation":"SQL_Latin1_General_CP1_CI_AS","dnsZone":"1549d2323079","publicDataEndpointEnabled":false},"location":"northeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cc-fg-rg/providers/Microsoft.Sql/managedInstances/geo2-neu-midemo","name":"geo2-neu-midemo","type":"Microsoft.Sql/managedInstances"},{"identity":{"principalId":"ace8759f-dc93-4224-95ff-d7b0e05e103e","type":"SystemAssigned","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"sku":{"name":"GP_Gen4","tier":"GeneralPurpose","family":"Gen4","capacity":8},"properties":{"fullyQualifiedDomainName":"ivanmestrovic-gp-02-pilot.wcus17662feb9ce98.database.windows.net","administratorLogin":"cloudSA","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_pilot/providers/Microsoft.Network/virtualNetworks/cl_pilot/subnets/CLean","state":"Ready","licenseType":"BasePrice","vCores":8,"storageSizeInGB":960,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":false},"location":"westcentralus","tags":{"Owner":"JovanPop","Purpose":"Testing custom instance collation - Serbian_Cyrillic_100_CS_AS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_pilot/providers/Microsoft.Sql/managedInstances/ivanmestrovic-gp-02-pilot","name":"ivanmestrovic-gp-02-pilot","type":"Microsoft.Sql/managedInstances"},{"identity":{"principalId":"f2771259-a69c-4673-a2aa-7b95ab7cb93a","type":"SystemAssigned","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"sku":{"name":"BC_Gen4","tier":"BusinessCritical","family":"Gen4","capacity":8},"properties":{"fullyQualifiedDomainName":"sabanbajramovic-bc-01-pilot.wcus17662feb9ce98.database.windows.net","administratorLogin":"cloudSA","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_pilot/providers/Microsoft.Network/virtualNetworks/cl_pilot/subnets/CLean","state":"Ready","licenseType":"BasePrice","vCores":8,"storageSizeInGB":1024,"collation":"SQL_Latin1_General_CP1_CI_AS","dnsZone":"wcus17662feb9ce98","publicDataEndpointEnabled":false,"timezoneId":"UTC"},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_pilot/providers/Microsoft.Sql/managedInstances/sabanbajramovic-bc-01-pilot","name":"sabanbajramovic-bc-01-pilot","type":"Microsoft.Sql/managedInstances"},{"identity":{"principalId":"6a061a52-1745-4c10-8964-b59632ba0850","type":"SystemAssigned","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"sku":{"name":"GP_Gen4","tier":"GeneralPurpose","family":"Gen4","capacity":16},"properties":{"fullyQualifiedDomainName":"sqlmi-chegar-hill.wcus17662feb9ce98.database.windows.net","administratorLogin":"cloudsa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_pilot/providers/Microsoft.Network/virtualNetworks/cl_pilot/subnets/CLean","state":"Ready","licenseType":"BasePrice","vCores":16,"storageSizeInGB":8192,"collation":"SQL_Latin1_General_CP1_CI_AS","dnsZone":"wcus17662feb9ce98","publicDataEndpointEnabled":false},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Managed-Instances/providers/Microsoft.Sql/managedInstances/sqlmi-chegar-hill","name":"sqlmi-chegar-hill","type":"Microsoft.Sql/managedInstances"},{"identity":{"principalId":"363736e6-6f1c-4a6f-8173-8159c98832ae","type":"SystemAssigned","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"sku":{"name":"GP_Gen4","tier":"GeneralPurpose","family":"Gen4","capacity":8},"properties":{"fullyQualifiedDomainName":"nmapwcus.efd321c1d3b1.database.windows.net","administratorLogin":"boss","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srki_test/providers/Microsoft.Network/virtualNetworks/vnet-nmapwcus/subnets/ManagedInstance","state":"Ready","licenseType":"BasePrice","vCores":8,"storageSizeInGB":32,"collation":"SQL_Latin1_General_CP1_CI_AS","publicDataEndpointEnabled":false},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srki_test/providers/Microsoft.Sql/managedInstances/nmapwcus","name":"nmapwcus","type":"Microsoft.Sql/managedInstances"},{"identity":{"principalId":"dd00f110-39ba-404d-9d9c-4b1ab588d897","type":"SystemAssigned","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"sku":{"name":"BC_Gen4","tier":"BusinessCritical","family":"Gen4","capacity":24},"properties":{"fullyQualifiedDomainName":"sqlmi-msfeb18-sindjelic-bc-00.wcus17662feb9ce98.database.windows.net","administratorLogin":"cloudSA","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_pilot/providers/Microsoft.Network/virtualNetworks/cl_pilot/subnets/CLean","state":"Ready","licenseType":"BasePrice","vCores":24,"storageSizeInGB":480,"collation":"SQL_Latin1_General_CP1_CI_AS","dnsZone":"wcus17662feb9ce98","publicDataEndpointEnabled":false},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_pilot/providers/Microsoft.Sql/managedInstances/sqlmi-msfeb18-sindjelic-bc-00","name":"sqlmi-msfeb18-sindjelic-bc-00","type":"Microsoft.Sql/managedInstances"},{"identity":{"principalId":"73bca0cd-2811-442b-957a-6381614db17c","type":"SystemAssigned","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"sku":{"name":"GP_Gen4","tier":"GeneralPurpose","family":"Gen4","capacity":24},"properties":{"fullyQualifiedDomainName":"milevamaric-gp-pilot-000.wcus17662feb9ce98.database.windows.net","administratorLogin":"milevasa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_pilot/providers/Microsoft.Network/virtualNetworks/cl_pilot/subnets/CLean","state":"Ready","licenseType":"LicenseIncluded","vCores":24,"storageSizeInGB":1024,"collation":"SQL_Latin1_General_CP1_CI_AS","dnsZone":"wcus17662feb9ce98","publicDataEndpointEnabled":false},"location":"westcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_pilot/providers/Microsoft.Sql/managedInstances/milevamaric-gp-pilot-000","name":"milevamaric-gp-pilot-000","type":"Microsoft.Sql/managedInstances"},{"identity":{"principalId":"75ff73f7-000c-4a23-9d53-bdd0db467144","type":"SystemAssigned","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"sku":{"name":"GP_Gen4","tier":"GeneralPurpose","family":"Gen4","capacity":8},"properties":{"fullyQualifiedDomainName":"nondeftz.deed314aaf8a.database.windows.net","administratorLogin":"nmijat","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JovanPopTestResourceGroup/providers/Microsoft.Network/virtualNetworks/JovanPopVirtualNetwork/subnets/mi","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":256,"collation":"SQL_Latin1_General_CP1_CI_AS","dnsZone":"deed314aaf8a","publicDataEndpointEnabled":false,"timezoneId":"Central @@ -1095,7 +1095,7 @@ interactions: azure-mgmt-sql/0.12.0 Azure-SDK-For-Python AZURECLI/2.0.61] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2018-06-01-preview response: body: {string: '{"operation":"DropManagedServer","startTime":"2019-04-08T14:39:08.627Z"}'} headers: @@ -1152,7 +1152,7 @@ interactions: azure-mgmt-sql/0.12.0 Azure-SDK-For-Python AZURECLI/2.0.61] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2018-06-01-preview response: body: {string: '{"operation":"DropManagedServer","startTime":"2019-04-08T14:39:26.437Z"}'} headers: @@ -1208,7 +1208,7 @@ interactions: azure-mgmt-sql/0.12.0 Azure-SDK-For-Python AZURECLI/2.0.61] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2018-06-01-preview response: body: {string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Sql/managedInstances/clitestmi000001'' under resource group ''cl_one'' was not found."}}'} @@ -1235,7 +1235,7 @@ interactions: azure-mgmt-sql/0.12.0 Azure-SDK-For-Python AZURECLI/2.0.61] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2015-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cl_one/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2018-06-01-preview response: body: {string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Sql/managedInstances/clitestmi000002'' under resource group ''cl_one'' was not found."}}'} diff --git a/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_mi_aad_admin.yaml b/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_mi_aad_admin.yaml new file mode 100644 index 00000000000..5edd3aa5c7f --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_mi_aad_admin.yaml @@ -0,0 +1,10464 @@ +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.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-resource/3.1.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2019-05-10 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-09-03T16:01:51Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:01:55 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.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-network/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + 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-04-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/\\\"475ddbf4-a17c-43a2-b626-44ba56d2eb70\\\"\",\r\n \"type\": + \"Microsoft.Network/routeTables\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d3821838-efa9-4fce-a44a-bb494f6c0c1b\",\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/11f7782e-95ca-458e-b4d6-ac534d23e0d3?api-version=2019-04-01 + cache-control: + - no-cache + content-length: + - '504' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:02:00 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: + - aedf4d67-56b9-415a-b134-b7ac9d9c01b1 + 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.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-network/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/11f7782e-95ca-458e-b4d6-ac534d23e0d3?api-version=2019-04-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: + - Tue, 03 Sep 2019 16:02: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: + - 5495408b-6ad2-4eeb-adf9-5a70ab4faf9a + 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.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-network/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable?api-version=2019-04-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/\\\"d2182066-0f7e-4644-b3d8-acb668a5cda9\\\"\",\r\n \"type\": + \"Microsoft.Network/routeTables\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d3821838-efa9-4fce-a44a-bb494f6c0c1b\",\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: + - Tue, 03 Sep 2019 16:02:13 GMT + etag: + - W/"d2182066-0f7e-4644-b3d8-acb668a5cda9" + 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: + - 8204e3d5-1794-4142-bcc5-3c450cf4b70b + status: + code: 200 + message: OK +- request: + body: '{"properties": {"addressPrefix": "0.0.0.0/0", "nextHopType": "Internet"}, + "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.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-network/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + 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-04-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/\\\"a29cad31-284c-44ff-90f9-2132a72640ca\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"0.0.0.0/0\",\r\n + \ \"nextHopType\": \"Internet\"\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/485002cd-8af5-4e11-acc2-0f0a402b4169?api-version=2019-04-01 + cache-control: + - no-cache + content-length: + - '464' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:02:14 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: + - 6c0bd24f-ecea-4a35-86a0-9e2e2a19d554 + 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.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-network/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/485002cd-8af5-4e11-acc2-0f0a402b4169?api-version=2019-04-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: + - Tue, 03 Sep 2019 16:02:25 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: + - 1ae6271f-bd4c-42e0-b2a0-5b4362be2c4f + 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.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-network/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + 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-04-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/\\\"955fc473-38c2-40ef-9838-06c77ce59cb5\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"0.0.0.0/0\",\r\n + \ \"nextHopType\": \"Internet\"\r\n },\r\n \"type\": \"Microsoft.Network/routeTables/routes\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '465' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:02:25 GMT + etag: + - W/"955fc473-38c2-40ef-9838-06c77ce59cb5" + 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: + - 6199aebb-9b48-4edd-8979-3b7ebf10f08e + status: + code: 200 + message: OK +- request: + body: '{"properties": {"addressPrefix": "10.0.0.0/24", "nextHopType": "VnetLocal"}, + "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.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-network/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + 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-04-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/\\\"736bb8da-ee5d-45e8-ac70-615100c0a5b4\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"nextHopType\": \"VnetLocal\"\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/731781fc-087a-4dd7-8018-7f13cb65c252?api-version=2019-04-01 + cache-control: + - no-cache + content-length: + - '465' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:02:27 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: + - 70cc607e-f031-4b4d-917b-e22f1ed45c0a + 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.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-network/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/731781fc-087a-4dd7-8018-7f13cb65c252?api-version=2019-04-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: + - Tue, 03 Sep 2019 16:02:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 5dd9b4c3-bf4a-435d-916c-40c5868f6687 + 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.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-network/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + 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-04-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/\\\"7f0d37f9-7577-4338-8b79-d53e20d9fe6d\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"type\": \"Microsoft.Network/routeTables/routes\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '466' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:02:39 GMT + etag: + - W/"7f0d37f9-7577-4338-8b79-d53e20d9fe6d" + 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: + - 29210db4-a937-431a-8d43-818ed93627b9 + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + 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.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-network/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + 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-04-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/\\\"7cada306-a7ad-447f-af1f-5b3bda629a25\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"bbb16686-20f8-468d-b29e-fc7ad3d54a91\",\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/a58c00bf-4824-4890-990b-260b6b09072e?api-version=2019-04-01 + cache-control: + - no-cache + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:02:43 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: + - 891d4d91-0d33-4a53-a2ff-306dd1fb25f2 + 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.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-network/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a58c00bf-4824-4890-990b-260b6b09072e?api-version=2019-04-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: + - Tue, 03 Sep 2019 16:02:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - cab28b9f-29bf-46dd-b439-fbdaeefe49d6 + 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.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-network/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet?api-version=2019-04-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/\\\"9d413887-e7e4-45f1-9578-9a93781ab816\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"bbb16686-20f8-468d-b29e-fc7ad3d54a91\",\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: + - Tue, 03 Sep 2019 16:02:47 GMT + etag: + - W/"9d413887-e7e4-45f1-9578-9a93781ab816" + 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: + - eaa95e43-5512-424c-8fd4-098e5ead6277 + 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.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-network/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + 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-04-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/\\\"7f0d37f9-7577-4338-8b79-d53e20d9fe6d\\\"\",\r\n \"type\": + \"Microsoft.Network/routeTables\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d3821838-efa9-4fce-a44a-bb494f6c0c1b\",\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/\\\"7f0d37f9-7577-4338-8b79-d53e20d9fe6d\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"0.0.0.0/0\",\r\n \"nextHopType\": + \"Internet\"\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/\\\"7f0d37f9-7577-4338-8b79-d53e20d9fe6d\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"nextHopType\": + \"VnetLocal\"\r\n },\r\n \"type\": \"Microsoft.Network/routeTables/routes\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1579' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:02:48 GMT + etag: + - W/"7f0d37f9-7577-4338-8b79-d53e20d9fe6d" + 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: + - 6358f1dd-4d5e-4f01-94e3-e4038bf8685b + 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.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-network/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + 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-04-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/\\\"9d413887-e7e4-45f1-9578-9a93781ab816\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"bbb16686-20f8-468d-b29e-fc7ad3d54a91\",\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: + - Tue, 03 Sep 2019 16:02:49 GMT + etag: + - W/"9d413887-e7e4-45f1-9578-9a93781ab816" + 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: + - 726b3e39-ca9e-4bd7-898a-38d4eff99040 + status: + code: 200 + message: OK +- request: + body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet", + "location": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"properties": + {"addressPrefix": "10.0.0.0/24", "routeTable": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable", + "location": "westus", "properties": {"routes": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteInternet", + "properties": {"addressPrefix": "0.0.0.0/0", "nextHopType": "Internet", "provisioningState": + "Succeeded"}, "name": "vcCliTestRouteInternet", "etag": "W/\\"7f0d37f9-7577-4338-8b79-d53e20d9fe6d\\""}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/routeTables/vcCliTestRouteTable/routes/vcCliTestRouteVnetLoc", + "properties": {"addressPrefix": "10.0.0.0/24", "nextHopType": "VnetLocal", "provisioningState": + "Succeeded"}, "name": "vcCliTestRouteVnetLoc", "etag": "W/\\"7f0d37f9-7577-4338-8b79-d53e20d9fe6d\\""}], + "disableBgpRoutePropagation": false, "provisioningState": "Succeeded"}, "etag": + "W/\\"7f0d37f9-7577-4338-8b79-d53e20d9fe6d\\""}}, "name": "vcCliTestSubnet"}], + "virtualNetworkPeerings": [], "resourceGuid": "bbb16686-20f8-468d-b29e-fc7ad3d54a91", + "provisioningState": "Succeeded", "enableDdosProtection": false, "enableVmProtection": + false}, "etag": "W/\\"9d413887-e7e4-45f1-9578-9a93781ab816\\""}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + Content-Length: + - '1723' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g --vnet-name -n --address-prefix --route-table + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-network/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + 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-04-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/\\\"6953f0e1-a625-4104-a4d5-c23e6df98430\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"bbb16686-20f8-468d-b29e-fc7ad3d54a91\",\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/\\\"6953f0e1-a625-4104-a4d5-c23e6df98430\\\"\",\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/2c401e51-18e8-4a90-b8ad-644389a45f31?api-version=2019-04-01 + cache-control: + - no-cache + content-length: + - '1568' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:02:49 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: + - 2a8fdd2b-9812-4e1d-ad40-6cd94cf6f865 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + 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.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-network/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2c401e51-18e8-4a90-b8ad-644389a45f31?api-version=2019-04-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: + - Tue, 03 Sep 2019 16:02:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2cebe755-0737-4191-9532-e8f944896544 + 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.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-network/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet?api-version=2019-04-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/\\\"d5ee10ca-bcda-412b-89e7-68811e0eedc7\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"bbb16686-20f8-468d-b29e-fc7ad3d54a91\",\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/\\\"d5ee10ca-bcda-412b-89e7-68811e0eedc7\\\"\",\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: + - Tue, 03 Sep 2019 16:02:53 GMT + etag: + - W/"d5ee10ca-bcda-412b-89e7-68811e0eedc7" + 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: + - 5c196894-26a6-41bd-857a-4415b20220e3 + 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.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-network/4.0.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + 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-04-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/\\\"d5ee10ca-bcda-412b-89e7-68811e0eedc7\\\"\",\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: + - Tue, 03 Sep 2019 16:02:54 GMT + etag: + - W/"d5ee10ca-bcda-412b-89e7-68811e0eedc7" + 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: + - 89a15bb2-fa42-49d9-9dd2-e441f6477b2e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + 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":"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: + - '2955' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16: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''{"location": "westus", "sku": {"name": "GP_Gen5"}, "properties": {"administratorLogin": + "admin123", "administratorLoginPassword": "SecretPassword123", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/vcCliTestVnet/subnets/vcCliTestSubnet", + "licenseType": "LicenseIncluded", "vCores": 8, "storageSizeInGB": 32, "collation": + "Serbian_Cyrillic_100_CS_AS", "publicDataEndpointEnabled": true, "proxyOverride": + "Proxy"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + Content-Length: + - '507' + 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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + 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":"2019-09-03T16:02:58.043Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + cache-control: + - no-cache + content-length: + - '74' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:02:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceOperationResults/0159b6fd-083e-451f-aead-747bc4eef6a8?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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:03: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:04: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:09:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:13: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:14: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:15: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:16: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:17: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:18: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:19: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:21:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:22: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:27: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:28: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:29: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:32: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:33: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:34: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:36: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:37: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:38: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:39: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:40: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:41: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:42: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:44: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:45: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:46: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:47: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:48: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:49: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:50: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:51: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:52: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:53: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:55: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:56: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:57: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:58: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 16:59: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:02: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:03: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:04: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:05: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:06: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:07: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:08: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:09: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:10: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:16: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:18: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:19: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:21: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:27: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:28: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:29: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:30: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:33:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:34: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:36: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:38:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:39:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:40: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:41:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:42: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:43: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:44: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:45: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:46: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:47: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:48: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:49: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:51: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:52: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:53: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:54: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:55:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:56: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17:57:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 17: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:01: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:03:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:04: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:05: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:06: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:07: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:08: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:09: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:10: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:11:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:12: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:13: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:14: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:15:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:16: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:18:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:19:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:21: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:26: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:27: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:28: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:30: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:31: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:32: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:33: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:34: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:35: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:36:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:37: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:38: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:39: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:40: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:41: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:42: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:43: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:44: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:45: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:46:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:47: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:48: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:49: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:50: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:51: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:52: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:53: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:54: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:55: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:56: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:57: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18:58: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 18: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 19: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 mi create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family + --collation --proxy-override --public-data-endpoint-enabled + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 19: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 19: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 19: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"InProgress","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 19: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/managedInstanceAzureAsyncOperation/0159b6fd-083e-451f-aead-747bc4eef6a8?api-version=2018-06-01-preview + response: + body: + string: '{"name":"0159b6fd-083e-451f-aead-747bc4eef6a8","status":"Succeeded","startTime":"2019-09-03T16:02:58.043Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 19:05: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 + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + 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: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"fullyQualifiedDomainName":"clitestmi000002.615697363f52.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":"615697363f52","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: + - '985' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 19: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: '{"properties": {"administratorType": "ActiveDirectory", "login": "DSEngAll", + "sid": "5e90ef3b-9b42-4777-819b-25c36961ea4d", "tenantId": "0c1edf5d-e5c5-4aca-ab69-ef194134f44b"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi ad-admin create + Connection: + - keep-alive + Content-Length: + - '176' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --mi -g -i -u + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/administrators/ActiveDirectory?api-version=2017-03-01-preview + response: + body: + string: '{"operation":"CreateActiveDirectoryAdministrator","startTime":"2019-09-03T19:06:00.413Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/administratorAzureAsyncOperation/48fd9ef6-b1bb-4d09-8690-19d5ea7074f9?api-version=2017-03-01-preview + cache-control: + - no-cache + content-length: + - '89' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 19:05:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/administratorOperationResults/48fd9ef6-b1bb-4d09-8690-19d5ea7074f9?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 mi ad-admin create + Connection: + - keep-alive + ParameterSetName: + - --mi -g -i -u + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/administratorAzureAsyncOperation/48fd9ef6-b1bb-4d09-8690-19d5ea7074f9?api-version=2017-03-01-preview + response: + body: + string: '{"name":"48fd9ef6-b1bb-4d09-8690-19d5ea7074f9","status":"Succeeded","startTime":"2019-09-03T19:06:00.413Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 19:16: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 ad-admin create + Connection: + - keep-alive + ParameterSetName: + - --mi -g -i -u + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/administrators/ActiveDirectory?api-version=2017-03-01-preview + response: + body: + string: '{"properties":{"administratorType":"ActiveDirectory","login":"DSEngAll","sid":"5e90ef3b-9b42-4777-819b-25c36961ea4d","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/administrators/ActiveDirectory","name":"ActiveDirectory","type":"Microsoft.Sql/managedInstances/administrators"}' + headers: + cache-control: + - no-cache + content-length: + - '476' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 19:16: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 ad-admin list + Connection: + - keep-alive + ParameterSetName: + - --mi -g + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/administrators?api-version=2017-03-01-preview + response: + body: + string: '{"value":[{"properties":{"administratorType":"ActiveDirectory","login":"DSEngAll","sid":"5e90ef3b-9b42-4777-819b-25c36961ea4d","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/administrators/ActiveDirectory","name":"ActiveDirectory","type":"Microsoft.Sql/managedInstances/administrators"}]}' + headers: + cache-control: + - no-cache + content-length: + - '488' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 19:16: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: '{"properties": {"administratorType": "ActiveDirectory", "login": "TestUser", + "sid": "e4d43337-d52c-4a0c-b581-09055e0359a0", "tenantId": "0c1edf5d-e5c5-4aca-ab69-ef194134f44b"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi ad-admin update + Connection: + - keep-alive + Content-Length: + - '176' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --mi -g -u -i + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/administrators/ActiveDirectory?api-version=2017-03-01-preview + response: + body: + string: '{"operation":"UpdateActiveDirectoryAdministrator","startTime":"2019-09-03T19:16:03.713Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/administratorAzureAsyncOperation/3d0aefb3-9bf8-4411-a71c-85caef7e50cc?api-version=2017-03-01-preview + cache-control: + - no-cache + content-length: + - '89' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 19:16:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/administratorOperationResults/3d0aefb3-9bf8-4411-a71c-85caef7e50cc?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 mi ad-admin update + Connection: + - keep-alive + ParameterSetName: + - --mi -g -u -i + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/administratorAzureAsyncOperation/3d0aefb3-9bf8-4411-a71c-85caef7e50cc?api-version=2017-03-01-preview + response: + body: + string: '{"name":"3d0aefb3-9bf8-4411-a71c-85caef7e50cc","status":"Succeeded","startTime":"2019-09-03T19:16:03.713Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 19: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 mi ad-admin update + Connection: + - keep-alive + ParameterSetName: + - --mi -g -u -i + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/administrators/ActiveDirectory?api-version=2017-03-01-preview + response: + body: + string: '{"properties":{"administratorType":"ActiveDirectory","login":"TestUser","sid":"e4d43337-d52c-4a0c-b581-09055e0359a0","tenantId":"0c1edf5d-e5c5-4aca-ab69-ef194134f44b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/administrators/ActiveDirectory","name":"ActiveDirectory","type":"Microsoft.Sql/managedInstances/administrators"}' + headers: + cache-control: + - no-cache + content-length: + - '476' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 19: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 mi ad-admin delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --mi -g + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/administrators/ActiveDirectory?api-version=2017-03-01-preview + response: + body: + string: '{"operation":"DropActiveDirectoryAdministrator","startTime":"2019-09-03T19:26:06.74Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/administratorAzureAsyncOperation/af734eb3-c1a8-454b-8e18-2136ea9e48df?api-version=2017-03-01-preview + cache-control: + - no-cache + content-length: + - '86' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 19:26:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/administratorOperationResults/af734eb3-c1a8-454b-8e18-2136ea9e48df?api-version=2017-03-01-preview + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sql mi ad-admin delete + Connection: + - keep-alive + ParameterSetName: + - --mi -g + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/locations/westus/administratorAzureAsyncOperation/af734eb3-c1a8-454b-8e18-2136ea9e48df?api-version=2017-03-01-preview + response: + body: + string: '{"name":"af734eb3-c1a8-454b-8e18-2136ea9e48df","status":"Succeeded","startTime":"2019-09-03T19:26:06.74Z"}' + headers: + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 19: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 ad-admin list + Connection: + - keep-alive + ParameterSetName: + - --mi -g + User-Agent: + - python/3.6.5 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.13.0 + Azure-SDK-For-Python AZURECLI/2.0.72 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002/administrators?api-version=2017-03-01-preview + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Sep 2019 19:36: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 +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_virtual_cluster_mgmt.yaml b/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_virtual_cluster_mgmt.yaml index 4dcb6a74cd1..4d766d5191f 100644 --- a/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_virtual_cluster_mgmt.yaml +++ b/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_virtual_cluster_mgmt.yaml @@ -1195,7 +1195,7 @@ interactions: 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=2015-05-01-preview + 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":"2019-07-31T15:42:38.933Z"}' @@ -10701,7 +10701,7 @@ interactions: - python/3.7.3 (Windows-2012ServerR2-6.3.9600-SP0) msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-sql/0.12.0 Azure-SDK-For-Python AZURECLI/2.0.70 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2015-05-01-preview + 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: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"fullyQualifiedDomainName":"clitestmi000002.e0b2c62cf61d.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":"e0b2c62cf61d","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"}' @@ -10931,7 +10931,7 @@ interactions: accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2015-05-01-preview + 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":"DropManagedServer","startTime":"2019-07-31T19:02:16.823Z"}' 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 8b1a917e70a..2f1a44c5809 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 @@ -2927,6 +2927,109 @@ def test_sql_managed_db_mgmt(self): .format(managed_instance_1['id']), checks=NoneCheck()) +class SqlManagedInstanceAzureActiveDirectoryAdministratorScenarioTest(ScenarioTest): + + @ResourceGroupPreparer(random_name_length=17, name_prefix='clitest') + def test_sql_mi_aad_admin(self, resource_group, resource_group_location): + + print('Test is started...\n') + + 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), + '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" + }) + + # 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() + + print('Vnet is created...\n') + + 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', + 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('identity', None), + self.check('collation', '{collation}'), + self.check('proxyOverride', '{proxy_override}'), + self.check('publicDataEndpointEnabled', 'True')]) + + print('Managed instance is created...\n') + + self.kwargs.update({ + 'oid': '5e90ef3b-9b42-4777-819b-25c36961ea4d', + 'oid2': 'e4d43337-d52c-4a0c-b581-09055e0359a0', + 'user': 'DSEngAll', + 'user2': 'TestUser' + }) + + print('Arguments are updated with login and sid data') + + self.cmd('sql mi ad-admin create --mi {managed_instance_name} -g {rg} -i {oid} -u {user}', + checks=[ + self.check('login', '{user}'), + self.check('sid', '{oid}')]) + + print('Aad admin is set...\n') + + self.cmd('sql mi ad-admin list --mi {managed_instance_name} -g {rg}', + checks=[ + self.check('[0].login', '{user}'), + self.check('[0].sid', '{oid}')]) + + print('Get aad admin...\n') + + self.cmd('sql mi ad-admin update --mi {managed_instance_name} -g {rg} -u {user2} -i {oid2}', + checks=[ + self.check('login', '{user2}'), + self.check('sid', '{oid2}')]) + + print('Aad admin is updated...\n') + + self.cmd('sql mi ad-admin delete --mi {managed_instance_name} -g {rg}') + + print('Aad admin is deleted...\n') + + self.cmd('sql mi ad-admin list --mi {managed_instance_name} -g {rg}', + checks=[ + self.check('login', None)]) + + print('Test is finished...\n') + + class SqlFailoverGroupMgmtScenarioTest(ScenarioTest): # create 2 servers in the same resource group, and 1 server in a different resource group @ResourceGroupPreparer(parameter_name="resource_group_1", diff --git a/src/azure-cli/requirements.py2.Darwin.txt b/src/azure-cli/requirements.py2.Darwin.txt index 1586781de5c..41ab584a231 100644 --- a/src/azure-cli/requirements.py2.Darwin.txt +++ b/src/azure-cli/requirements.py2.Darwin.txt @@ -71,7 +71,7 @@ azure-mgmt-security==0.1.0 azure-mgmt-servicebus==0.6.0 azure-mgmt-servicefabric==0.2.0 azure-mgmt-signalr==0.3.0 -azure-mgmt-sql==0.12.0 +azure-mgmt-sql==0.13.0 azure-mgmt-sqlvirtualmachine==0.4.0 azure-mgmt-storage==4.0.0 azure-mgmt-trafficmanager==0.51.0 diff --git a/src/azure-cli/requirements.py2.Linux.txt b/src/azure-cli/requirements.py2.Linux.txt index 1586781de5c..41ab584a231 100644 --- a/src/azure-cli/requirements.py2.Linux.txt +++ b/src/azure-cli/requirements.py2.Linux.txt @@ -71,7 +71,7 @@ azure-mgmt-security==0.1.0 azure-mgmt-servicebus==0.6.0 azure-mgmt-servicefabric==0.2.0 azure-mgmt-signalr==0.3.0 -azure-mgmt-sql==0.12.0 +azure-mgmt-sql==0.13.0 azure-mgmt-sqlvirtualmachine==0.4.0 azure-mgmt-storage==4.0.0 azure-mgmt-trafficmanager==0.51.0 diff --git a/src/azure-cli/requirements.py2.windows.txt b/src/azure-cli/requirements.py2.windows.txt index 1f0c92cf1f9..484f36f6748 100644 --- a/src/azure-cli/requirements.py2.windows.txt +++ b/src/azure-cli/requirements.py2.windows.txt @@ -70,7 +70,7 @@ azure-mgmt-security==0.1.0 azure-mgmt-servicebus==0.6.0 azure-mgmt-servicefabric==0.2.0 azure-mgmt-signalr==0.3.0 -azure-mgmt-sql==0.12.0 +azure-mgmt-sql==0.13.0 azure-mgmt-sqlvirtualmachine==0.4.0 azure-mgmt-storage==4.0.0 azure-mgmt-trafficmanager==0.51.0 diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 4c5e5faf950..63d23156c1b 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -71,7 +71,7 @@ azure-mgmt-security==0.1.0 azure-mgmt-servicebus==0.6.0 azure-mgmt-servicefabric==0.2.0 azure-mgmt-signalr==0.3.0 -azure-mgmt-sql==0.12.0 +azure-mgmt-sql==0.13.0 azure-mgmt-sqlvirtualmachine==0.4.0 azure-mgmt-storage==4.0.0 azure-mgmt-trafficmanager==0.51.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 4c5e5faf950..63d23156c1b 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -71,7 +71,7 @@ azure-mgmt-security==0.1.0 azure-mgmt-servicebus==0.6.0 azure-mgmt-servicefabric==0.2.0 azure-mgmt-signalr==0.3.0 -azure-mgmt-sql==0.12.0 +azure-mgmt-sql==0.13.0 azure-mgmt-sqlvirtualmachine==0.4.0 azure-mgmt-storage==4.0.0 azure-mgmt-trafficmanager==0.51.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index 908cb149ebd..e58bb060196 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -70,7 +70,7 @@ azure-mgmt-security==0.1.0 azure-mgmt-servicebus==0.6.0 azure-mgmt-servicefabric==0.2.0 azure-mgmt-signalr==0.3.0 -azure-mgmt-sql==0.12.0 +azure-mgmt-sql==0.13.0 azure-mgmt-sqlvirtualmachine==0.4.0 azure-mgmt-storage==4.0.0 azure-mgmt-trafficmanager==0.51.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index ee034e01d8f..0eed9793ccd 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -120,7 +120,7 @@ 'azure-mgmt-servicebus~=0.6.0', 'azure-mgmt-servicefabric~=0.2.0', 'azure-mgmt-signalr~=0.3.0', - 'azure-mgmt-sql~=0.12.0', + 'azure-mgmt-sql~=0.13', 'azure-mgmt-sqlvirtualmachine~=0.4.0', 'azure-mgmt-storage~=4.0', 'azure-mgmt-trafficmanager~=0.51.0',