diff --git a/src/azure-cli/azure/cli/command_modules/rdbms/_client_factory.py b/src/azure-cli/azure/cli/command_modules/rdbms/_client_factory.py index 73085b9f9e9..9c1369820c3 100644 --- a/src/azure-cli/azure/cli/command_modules/rdbms/_client_factory.py +++ b/src/azure-cli/azure/cli/command_modules/rdbms/_client_factory.py @@ -180,3 +180,27 @@ def cf_mysql_replica(cli_ctx, _): def cf_postgres_replica(cli_ctx, _): return get_postgresql_management_client(cli_ctx).replicas + + +def cf_mariadb_private_endpoint_connections_operations(cli_ctx, _): + return get_mariadb_management_client(cli_ctx).private_endpoint_connections + + +def cf_mariadb_private_link_resources_operations(cli_ctx, _): + return get_mariadb_management_client(cli_ctx).private_link_resources + + +def cf_mysql_private_endpoint_connections_operations(cli_ctx, _): + return get_mysql_management_client(cli_ctx).private_endpoint_connections + + +def cf_mysql_private_link_resources_operations(cli_ctx, _): + return get_mysql_management_client(cli_ctx).private_link_resources + + +def cf_postgres_private_endpoint_connections_operations(cli_ctx, _): + return get_postgresql_management_client(cli_ctx).private_endpoint_connections + + +def cf_postgres_private_link_resources_operations(cli_ctx, _): + return get_postgresql_management_client(cli_ctx).private_link_resources diff --git a/src/azure-cli/azure/cli/command_modules/rdbms/_help.py b/src/azure-cli/azure/cli/command_modules/rdbms/_help.py index e5cdb4e75f2..b0da4ef21e5 100644 --- a/src/azure-cli/azure/cli/command_modules/rdbms/_help.py +++ b/src/azure-cli/azure/cli/command_modules/rdbms/_help.py @@ -309,6 +309,41 @@ text: az mariadb server-logs list -g testgroup -s testsvr --max-file-size 30 """ +helps['mariadb server private-endpoint-connection'] = """ +type: group +short-summary: Manage MariaDB server private endpoint connections. +""" + +helps['mariadb server private-endpoint-connection approve'] = """ +type: command +short-summary: Approve the specified private endpoint connection associated with a MariaDB server. +""" + +helps['mariadb server private-endpoint-connection reject'] = """ +type: command +short-summary: Reject the specified private endpoint connection associated with a MariaDB server. +""" + +helps['mariadb server private-endpoint-connection delete'] = """ +type: command +short-summary: Delete the specified private endpoint connection associated with a MariaDB server. +""" + +helps['mariadb server private-endpoint-connection show'] = """ +type: command +short-summary: Show details of a private endpoint connection associated with a MariaDB server. +""" + +helps['mariadb server private-link-resource'] = """ +type: group +short-summary: Manage MariaDB server private link resources. +""" + +helps['mariadb server private-link-resource list'] = """ +type: command +short-summary: List the private link resources supported for a MariaDB server. +""" + helps['mysql'] = """ type: group short-summary: Manage Azure Database for MySQL servers. @@ -619,6 +654,41 @@ text: az mysql server-logs list -g testgroup -s testsvr --max-file-size 30 """ +helps['mysql server private-endpoint-connection'] = """ +type: group +short-summary: Manage MySQL server private endpoint connections. +""" + +helps['mysql server private-endpoint-connection approve'] = """ +type: command +short-summary: Approve the specified private endpoint connection associated with a MySQL server. +""" + +helps['mysql server private-endpoint-connection reject'] = """ +type: command +short-summary: Reject the specified private endpoint connection associated with a MySQL server. +""" + +helps['mysql server private-endpoint-connection delete'] = """ +type: command +short-summary: Delete the specified private endpoint connection associated with a MySQL server. +""" + +helps['mysql server private-endpoint-connection show'] = """ +type: command +short-summary: Show details of a private endpoint connection associated with a MySQL server. +""" + +helps['mysql server private-link-resource'] = """ +type: group +short-summary: Manage MySQL server private link resources. +""" + +helps['mysql server private-link-resource list'] = """ +type: command +short-summary: List the private link resources supported for a MySQL server. +""" + helps['postgres'] = """ type: group short-summary: Manage Azure Database for PostgreSQL servers. @@ -921,3 +991,38 @@ - name: List log files for 'testsvr' less than 30Kb in size. text: az postgres server-logs list -g testgroup -s testsvr --max-file-size 30 """ + +helps['postgres server private-endpoint-connection'] = """ +type: group +short-summary: Manage PostgreSQL server private endpoint connections. +""" + +helps['postgres server private-endpoint-connection approve'] = """ +type: command +short-summary: Approve the specified private endpoint connection associated with a PostgreSQL server. +""" + +helps['postgres server private-endpoint-connection reject'] = """ +type: command +short-summary: Reject the specified private endpoint connection associated with a PostgreSQL server. +""" + +helps['postgres server private-endpoint-connection delete'] = """ +type: command +short-summary: Delete the specified private endpoint connection associated with a PostgreSQL server. +""" + +helps['postgres server private-endpoint-connection show'] = """ +type: command +short-summary: Show details of a private endpoint connection associated with a PostgreSQL server. +""" + +helps['postgres server private-link-resource'] = """ +type: group +short-summary: Manage PostgreSQL server private link resources. +""" + +helps['postgres server private-link-resource list'] = """ +type: command +short-summary: List the private link resources supported for a PostgreSQL server. +""" diff --git a/src/azure-cli/azure/cli/command_modules/rdbms/_params.py b/src/azure-cli/azure/cli/command_modules/rdbms/_params.py index 60a02b2d4d4..6548d59a840 100644 --- a/src/azure-cli/azure/cli/command_modules/rdbms/_params.py +++ b/src/azure-cli/azure/cli/command_modules/rdbms/_params.py @@ -125,3 +125,22 @@ def _complex_params(command_group): for scope in ['mariadb server replica list', 'mysql server replica list', 'postgres server replica list']: with self.argument_context(scope) as c: c.argument('server_name', options_list=['--server-name', '-s'], help='Name of the master server.') + + for item in ['approve', 'reject', 'delete', 'show']: + for scope in ['mariadb server private-endpoint-connection {}', 'mysql server private-endpoint-connection {}', 'postgres server private-endpoint-connection {}']: + with self.argument_context(scope.format(item)) as c: + c.argument('private_endpoint_connection_name', options_list=['--name', '-n'], required=False, + help='The name of the private endpoint connection associated with the Server. ' + 'Required if --id is not specified') + c.extra('connection_id', options_list=['--id'], required=False, + help='The ID of the private endpoint connection associated with the Server. ' + 'If specified --server-name/-s and --name/-n, this should be omitted.') + c.argument('server_name', options_list=['--server-name', '-s'], required=False, + help='Name of the Server. Required if --id is not specified') + c.argument('resource_group_name', help='The resource group name of specified server.', + required=False) + c.argument('description', help='Comments for {} operation.'.format(item)) + + for scope in ['mariadb server private-link-resource', 'mysql server private-link-resource', 'postgres server private-link-resource']: + with self.argument_context(scope) as c: + c.argument('server_name', options_list=['--server-name', '-s'], required=True, help='Name of the Server.') diff --git a/src/azure-cli/azure/cli/command_modules/rdbms/commands.py b/src/azure-cli/azure/cli/command_modules/rdbms/commands.py index 530132ec1ba..a646baf9a02 100644 --- a/src/azure-cli/azure/cli/command_modules/rdbms/commands.py +++ b/src/azure-cli/azure/cli/command_modules/rdbms/commands.py @@ -4,6 +4,10 @@ # -------------------------------------------------------------------------------------------- from azure.cli.core.commands import CliCommandType +from azure.cli.core.profiles import ResourceType + +from azure.cli.command_modules.rdbms.validators import ( + validate_private_endpoint_connection_id) from azure.cli.command_modules.rdbms._client_factory import ( cf_mariadb_servers, @@ -13,6 +17,8 @@ cf_mariadb_config, cf_mariadb_log, cf_mariadb_replica, + cf_mariadb_private_endpoint_connections_operations, + cf_mariadb_private_link_resources_operations, cf_mysql_servers, cf_mysql_db, cf_mysql_firewall_rules, @@ -20,13 +26,17 @@ cf_mysql_config, cf_mysql_log, cf_mysql_replica, + cf_mysql_private_endpoint_connections_operations, + cf_mysql_private_link_resources_operations, cf_postgres_servers, cf_postgres_db, cf_postgres_firewall_rules, cf_postgres_virtual_network_rules_operations, cf_postgres_config, cf_postgres_log, - cf_postgres_replica) + cf_postgres_replica, + cf_postgres_private_endpoint_connections_operations, + cf_postgres_private_link_resources_operations) # pylint: disable=too-many-locals, too-many-statements, line-too-long @@ -139,6 +149,42 @@ def load_command_table(self, _): client_factory=cf_postgres_db ) + mariadb_private_endpoint_connections_sdk = CliCommandType( + operations_tmpl='azure.mgmt.rdbms.mariadb.operations#PrivateEndpointConnectionsOperations.{}', + client_factory=cf_mariadb_private_endpoint_connections_operations, + resource_type=ResourceType.MGMT_RDBMS + ) + + mariadb_private_link_resources_sdk = CliCommandType( + operations_tmpl='azure.mgmt.rdbms.mariadb.operations#PrivateLinkResourcesOperations.{}', + client_factory=cf_mariadb_private_link_resources_operations, + resource_type=ResourceType.MGMT_RDBMS + ) + + mysql_private_endpoint_connections_sdk = CliCommandType( + operations_tmpl='azure.mgmt.rdbms.mysql.operations#PrivateEndpointConnectionsOperations.{}', + client_factory=cf_mysql_private_endpoint_connections_operations, + resource_type=ResourceType.MGMT_RDBMS + ) + + mysql_private_link_resources_sdk = CliCommandType( + operations_tmpl='azure.mgmt.rdbms.mysql.operations#PrivateLinkResourcesOperations.{}', + client_factory=cf_mysql_private_link_resources_operations, + resource_type=ResourceType.MGMT_RDBMS + ) + + postgres_private_endpoint_connections_sdk = CliCommandType( + operations_tmpl='azure.mgmt.rdbms.postgresql.operations#PrivateEndpointConnectionsOperations.{}', + client_factory=cf_postgres_private_endpoint_connections_operations, + resource_type=ResourceType.MGMT_RDBMS + ) + + postgres_private_link_resources_sdk = CliCommandType( + operations_tmpl='azure.mgmt.rdbms.postgresql.operations#PrivateLinkResourcesOperations.{}', + client_factory=cf_postgres_private_link_resources_operations, + resource_type=ResourceType.MGMT_RDBMS + ) + with self.command_group('mariadb server', mariadb_servers_sdk, client_factory=cf_mariadb_servers) as g: g.custom_command('create', '_server_create') g.custom_command('restore', '_server_restore', supports_no_wait=True) @@ -297,3 +343,48 @@ def load_command_table(self, _): g.command('delete', 'delete', confirmation=True) g.show_command('show', 'get') g.command('list', 'list_by_server') + + with self.command_group('mariadb server private-endpoint-connection', + mariadb_private_endpoint_connections_sdk, + client_factory=cf_mariadb_private_endpoint_connections_operations) as g: + g.custom_command('approve', 'approve_private_endpoint_connection', + validator=validate_private_endpoint_connection_id) + g.custom_command('reject', 'reject_private_endpoint_connection', + validator=validate_private_endpoint_connection_id) + g.command('delete', 'delete', validator=validate_private_endpoint_connection_id) + g.show_command('show', 'get', validator=validate_private_endpoint_connection_id) + + with self.command_group('mariadb server private-link-resource', + mariadb_private_link_resources_sdk, + client_factory=cf_mariadb_private_link_resources_operations) as g: + g.show_command('list', 'list_by_server') + + with self.command_group('mysql server private-endpoint-connection', + mysql_private_endpoint_connections_sdk, + client_factory=cf_mysql_private_endpoint_connections_operations) as g: + g.custom_command('approve', 'approve_private_endpoint_connection', + validator=validate_private_endpoint_connection_id) + g.custom_command('reject', 'reject_private_endpoint_connection', + validator=validate_private_endpoint_connection_id) + g.command('delete', 'delete', validator=validate_private_endpoint_connection_id) + g.show_command('show', 'get', validator=validate_private_endpoint_connection_id) + + with self.command_group('mysql server private-link-resource', + mysql_private_link_resources_sdk, + client_factory=cf_mysql_private_link_resources_operations) as g: + g.show_command('list', 'list_by_server') + + with self.command_group('postgres server private-endpoint-connection', + postgres_private_endpoint_connections_sdk, + client_factory=cf_postgres_private_endpoint_connections_operations) as g: + g.custom_command('approve', 'approve_private_endpoint_connection', + validator=validate_private_endpoint_connection_id) + g.custom_command('reject', 'reject_private_endpoint_connection', + validator=validate_private_endpoint_connection_id) + g.command('delete', 'delete', validator=validate_private_endpoint_connection_id) + g.show_command('show', 'get', validator=validate_private_endpoint_connection_id) + + with self.command_group('postgres server private-link-resource', + postgres_private_link_resources_sdk, + client_factory=cf_postgres_private_link_resources_operations) as g: + g.show_command('list', 'list_by_server') diff --git a/src/azure-cli/azure/cli/command_modules/rdbms/custom.py b/src/azure-cli/azure/cli/command_modules/rdbms/custom.py index 73ae72333ea..a7bbe6fee31 100644 --- a/src/azure-cli/azure/cli/command_modules/rdbms/custom.py +++ b/src/azure-cli/azure/cli/command_modules/rdbms/custom.py @@ -9,8 +9,8 @@ from msrestazure.tools import resource_id, is_valid_resource_id, parse_resource_id # pylint: disable=import-error from azure.cli.core.commands.client_factory import get_subscription_id from azure.cli.core.util import CLIError, sdk_no_wait -from azure.mgmt.rdbms.mysql.operations.servers_operations import ServersOperations as MySqlServersOperations -from azure.mgmt.rdbms.mariadb.operations.servers_operations import ServersOperations as MariaDBServersOperations +from azure.mgmt.rdbms.mysql.operations._servers_operations import ServersOperations as MySqlServersOperations +from azure.mgmt.rdbms.mariadb.operations._servers_operations import ServersOperations as MariaDBServersOperations from ._client_factory import get_mariadb_management_client, get_mysql_management_client, get_postgresql_management_client SKU_TIER_MAP = {'Basic': 'b', 'GeneralPurpose': 'gp', 'MemoryOptimized': 'mo'} @@ -425,3 +425,38 @@ def _server_list_custom_func(client, resource_group_name=None): if resource_group_name: return client.list_by_resource_group(resource_group_name) return client.list() + + +# region private_endpoint +def _update_private_endpoint_connection_status(cmd, client, resource_group_name, server_name, + private_endpoint_connection_name, is_approved=True, description=None): # pylint: disable=unused-argument + private_endpoint_connection = client.get(resource_group_name=resource_group_name, server_name=server_name, + private_endpoint_connection_name=private_endpoint_connection_name) + + new_status = 'Approved' if is_approved else 'Rejected' + private_endpoint_connection.private_link_service_connection_state.status = new_status + private_endpoint_connection.private_link_service_connection_state.description = description + + return client.create_or_update(resource_group_name=resource_group_name, + server_name=server_name, + private_endpoint_connection_name=private_endpoint_connection_name, + properties=private_endpoint_connection) + + +def approve_private_endpoint_connection(cmd, client, resource_group_name, server_name, private_endpoint_connection_name, + description=None): + """Approve a private endpoint connection request for a server.""" + + return _update_private_endpoint_connection_status( + cmd, client, resource_group_name, server_name, private_endpoint_connection_name, is_approved=True, + description=description) + + +def reject_private_endpoint_connection(cmd, client, resource_group_name, server_name, private_endpoint_connection_name, + description=None): + """Reject a private endpoint connection request for a server.""" + + return _update_private_endpoint_connection_status( + cmd, client, resource_group_name, server_name, private_endpoint_connection_name, is_approved=False, + description=description) +# endregion diff --git a/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_mariadb_proxy_resources_mgmt.yaml b/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_mariadb_proxy_resources_mgmt.yaml index 9d81f19f564..790ee4ec8ef 100644 --- a/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_mariadb_proxy_resources_mgmt.yaml +++ b/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_mariadb_proxy_resources_mgmt.yaml @@ -19,30 +19,30 @@ interactions: ParameterSetName: - -l -g -n -u -p --sku-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002?api-version=2018-06-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2020-02-07T18:54:07.29Z"}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-04T18:37:41.503Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9ea505bb-b3b7-4f6e-9cc6-4fa548f6fed5?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/195ab63c-31bf-4d42-8278-71736fcdda8b?api-version=2018-06-01 cache-control: - no-cache content-length: - - '73' + - '74' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:54:07 GMT + - Wed, 04 Mar 2020 18:37:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/9ea505bb-b3b7-4f6e-9cc6-4fa548f6fed5?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/195ab63c-31bf-4d42-8278-71736fcdda8b?api-version=2018-06-01 pragma: - no-cache server: @@ -70,22 +70,22 @@ interactions: ParameterSetName: - -l -g -n -u -p --sku-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9ea505bb-b3b7-4f6e-9cc6-4fa548f6fed5?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/195ab63c-31bf-4d42-8278-71736fcdda8b?api-version=2018-06-01 response: body: - string: '{"name":"9ea505bb-b3b7-4f6e-9cc6-4fa548f6fed5","status":"InProgress","startTime":"2020-02-07T18:54:07.29Z"}' + string: '{"name":"195ab63c-31bf-4d42-8278-71736fcdda8b","status":"InProgress","startTime":"2020-03-04T18:37:41.503Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:55:10 GMT + - Wed, 04 Mar 2020 18:38:41 GMT expires: - '-1' pragma: @@ -117,22 +117,22 @@ interactions: ParameterSetName: - -l -g -n -u -p --sku-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9ea505bb-b3b7-4f6e-9cc6-4fa548f6fed5?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/195ab63c-31bf-4d42-8278-71736fcdda8b?api-version=2018-06-01 response: body: - string: '{"name":"9ea505bb-b3b7-4f6e-9cc6-4fa548f6fed5","status":"Succeeded","startTime":"2020-02-07T18:54:07.29Z"}' + string: '{"name":"195ab63c-31bf-4d42-8278-71736fcdda8b","status":"Succeeded","startTime":"2020-03-04T18:37:41.503Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:56:13 GMT + - Wed, 04 Mar 2020 18:39:42 GMT expires: - '-1' pragma: @@ -164,22 +164,22 @@ interactions: ParameterSetName: - -l -g -n -u -p --sku-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002?api-version=2018-06-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.mariadb.database.azure.com","earliestRestoreDate":"2020-02-07T19:04:07.57+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforMariaDB/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.mariadb.database.azure.com","earliestRestoreDate":"2020-03-04T18:47:41.877+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","infrastructureEncryption":"Enabled","privateEndpointConnections":[]},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforMariaDB/servers"}' headers: cache-control: - no-cache content-length: - - '973' + - '1088' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:56:16 GMT + - Wed, 04 Mar 2020 18:39:42 GMT expires: - '-1' pragma: @@ -215,18 +215,18 @@ interactions: ParameterSetName: - -n -g -s --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/firewallRules/rule1?api-version=2018-06-01 response: body: - string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-02-07T18:56:19.973Z"}' + string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-03-04T18:39:43.547Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8673a3c3-32f5-4436-9a67-8ecf2b85568a?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/26708d38-e83f-4bd0-ad73-910087b0e5b4?api-version=2018-06-01 cache-control: - no-cache content-length: @@ -234,11 +234,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:56:19 GMT + - Wed, 04 Mar 2020 18:39:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/8673a3c3-32f5-4436-9a67-8ecf2b85568a?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/26708d38-e83f-4bd0-ad73-910087b0e5b4?api-version=2018-06-01 pragma: - no-cache server: @@ -248,7 +248,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 202 message: Accepted @@ -266,13 +266,13 @@ interactions: ParameterSetName: - -n -g -s --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8673a3c3-32f5-4436-9a67-8ecf2b85568a?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/26708d38-e83f-4bd0-ad73-910087b0e5b4?api-version=2018-06-01 response: body: - string: '{"name":"8673a3c3-32f5-4436-9a67-8ecf2b85568a","status":"Succeeded","startTime":"2020-02-07T18:56:19.973Z"}' + string: '{"name":"26708d38-e83f-4bd0-ad73-910087b0e5b4","status":"Succeeded","startTime":"2020-03-04T18:39:43.547Z"}' headers: cache-control: - no-cache @@ -281,7 +281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:56:36 GMT + - Wed, 04 Mar 2020 18:39:58 GMT expires: - '-1' pragma: @@ -313,8 +313,8 @@ interactions: ParameterSetName: - -n -g -s --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/firewallRules/rule1?api-version=2018-06-01 response: @@ -328,7 +328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:56:38 GMT + - Wed, 04 Mar 2020 18:39:59 GMT expires: - '-1' pragma: @@ -360,8 +360,8 @@ interactions: ParameterSetName: - --name -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -377,7 +377,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:56:42 GMT + - Wed, 04 Mar 2020 18:40:00 GMT expires: - '-1' pragma: @@ -409,8 +409,8 @@ interactions: ParameterSetName: - -n -g -s --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -426,7 +426,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:56:44 GMT + - Wed, 04 Mar 2020 18:40:01 GMT expires: - '-1' pragma: @@ -462,18 +462,18 @@ interactions: ParameterSetName: - -n -g -s --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/firewallRules/rule1?api-version=2018-06-01 response: body: - string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-02-07T18:56:46.147Z"}' + string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-03-04T18:40:02.597Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/790a3a04-8a9d-42af-a7ed-e11735e3fd88?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/39a0d6a6-1404-440d-8d41-8ca82a16c219?api-version=2018-06-01 cache-control: - no-cache content-length: @@ -481,11 +481,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:56:46 GMT + - Wed, 04 Mar 2020 18:40:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/790a3a04-8a9d-42af-a7ed-e11735e3fd88?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/39a0d6a6-1404-440d-8d41-8ca82a16c219?api-version=2018-06-01 pragma: - no-cache server: @@ -495,7 +495,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 202 message: Accepted @@ -513,13 +513,13 @@ interactions: ParameterSetName: - -n -g -s --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/790a3a04-8a9d-42af-a7ed-e11735e3fd88?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/39a0d6a6-1404-440d-8d41-8ca82a16c219?api-version=2018-06-01 response: body: - string: '{"name":"790a3a04-8a9d-42af-a7ed-e11735e3fd88","status":"Succeeded","startTime":"2020-02-07T18:56:46.147Z"}' + string: '{"name":"39a0d6a6-1404-440d-8d41-8ca82a16c219","status":"Succeeded","startTime":"2020-03-04T18:40:02.597Z"}' headers: cache-control: - no-cache @@ -528,7 +528,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:57:03 GMT + - Wed, 04 Mar 2020 18:40:18 GMT expires: - '-1' pragma: @@ -560,8 +560,8 @@ interactions: ParameterSetName: - -n -g -s --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/firewallRules/rule1?api-version=2018-06-01 response: @@ -575,7 +575,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:57:05 GMT + - Wed, 04 Mar 2020 18:40:18 GMT expires: - '-1' pragma: @@ -607,8 +607,8 @@ interactions: ParameterSetName: - --name -g --server --start-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -624,7 +624,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:57:07 GMT + - Wed, 04 Mar 2020 18:40:18 GMT expires: - '-1' pragma: @@ -660,18 +660,18 @@ interactions: ParameterSetName: - --name -g --server --start-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/firewallRules/rule1?api-version=2018-06-01 response: body: - string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-02-07T18:57:10.143Z"}' + string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-03-04T18:40:19.597Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/f976e209-f1fc-4a4f-99cf-896ffbff6edb?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8ce896bb-e71f-4d4e-b98a-ea0aaece1a58?api-version=2018-06-01 cache-control: - no-cache content-length: @@ -679,11 +679,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:57:09 GMT + - Wed, 04 Mar 2020 18:40:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/f976e209-f1fc-4a4f-99cf-896ffbff6edb?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/8ce896bb-e71f-4d4e-b98a-ea0aaece1a58?api-version=2018-06-01 pragma: - no-cache server: @@ -711,13 +711,13 @@ interactions: ParameterSetName: - --name -g --server --start-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/f976e209-f1fc-4a4f-99cf-896ffbff6edb?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8ce896bb-e71f-4d4e-b98a-ea0aaece1a58?api-version=2018-06-01 response: body: - string: '{"name":"f976e209-f1fc-4a4f-99cf-896ffbff6edb","status":"Succeeded","startTime":"2020-02-07T18:57:10.143Z"}' + string: '{"name":"8ce896bb-e71f-4d4e-b98a-ea0aaece1a58","status":"Succeeded","startTime":"2020-03-04T18:40:19.597Z"}' headers: cache-control: - no-cache @@ -726,7 +726,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:57:26 GMT + - Wed, 04 Mar 2020 18:40:34 GMT expires: - '-1' pragma: @@ -758,8 +758,8 @@ interactions: ParameterSetName: - --name -g --server --start-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/firewallRules/rule1?api-version=2018-06-01 response: @@ -773,7 +773,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:57:29 GMT + - Wed, 04 Mar 2020 18:40:34 GMT expires: - '-1' pragma: @@ -805,8 +805,8 @@ interactions: ParameterSetName: - -n -g -s --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -822,7 +822,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:57:31 GMT + - Wed, 04 Mar 2020 18:40:35 GMT expires: - '-1' pragma: @@ -858,18 +858,18 @@ interactions: ParameterSetName: - -n -g -s --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/firewallRules/rule1?api-version=2018-06-01 response: body: - string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-02-07T18:57:33.767Z"}' + string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-03-04T18:40:36.783Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e035b7a4-4636-40b0-9ca1-f694f48483b5?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/c9a841e5-f487-488f-a535-8b2b9b276edf?api-version=2018-06-01 cache-control: - no-cache content-length: @@ -877,11 +877,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:57:33 GMT + - Wed, 04 Mar 2020 18:40:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/e035b7a4-4636-40b0-9ca1-f694f48483b5?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/c9a841e5-f487-488f-a535-8b2b9b276edf?api-version=2018-06-01 pragma: - no-cache server: @@ -909,13 +909,13 @@ interactions: ParameterSetName: - -n -g -s --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e035b7a4-4636-40b0-9ca1-f694f48483b5?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/c9a841e5-f487-488f-a535-8b2b9b276edf?api-version=2018-06-01 response: body: - string: '{"name":"e035b7a4-4636-40b0-9ca1-f694f48483b5","status":"Succeeded","startTime":"2020-02-07T18:57:33.767Z"}' + string: '{"name":"c9a841e5-f487-488f-a535-8b2b9b276edf","status":"Succeeded","startTime":"2020-03-04T18:40:36.783Z"}' headers: cache-control: - no-cache @@ -924,7 +924,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:57:49 GMT + - Wed, 04 Mar 2020 18:40:51 GMT expires: - '-1' pragma: @@ -956,8 +956,8 @@ interactions: ParameterSetName: - -n -g -s --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/firewallRules/rule1?api-version=2018-06-01 response: @@ -971,7 +971,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:57:51 GMT + - Wed, 04 Mar 2020 18:40:51 GMT expires: - '-1' pragma: @@ -1007,18 +1007,18 @@ interactions: ParameterSetName: - --name -g --server --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/firewallRules/rule2?api-version=2018-06-01 response: body: - string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-02-07T18:57:54.023Z"}' + string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-03-04T18:40:53.347Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/37dba95e-eabb-4dc3-ba9a-a235c28b3be1?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/50894fcc-840a-4de6-bc40-7862b87ac260?api-version=2018-06-01 cache-control: - no-cache content-length: @@ -1026,11 +1026,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:57:53 GMT + - Wed, 04 Mar 2020 18:40:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/37dba95e-eabb-4dc3-ba9a-a235c28b3be1?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/50894fcc-840a-4de6-bc40-7862b87ac260?api-version=2018-06-01 pragma: - no-cache server: @@ -1058,13 +1058,13 @@ interactions: ParameterSetName: - --name -g --server --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/37dba95e-eabb-4dc3-ba9a-a235c28b3be1?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/50894fcc-840a-4de6-bc40-7862b87ac260?api-version=2018-06-01 response: body: - string: '{"name":"37dba95e-eabb-4dc3-ba9a-a235c28b3be1","status":"Succeeded","startTime":"2020-02-07T18:57:54.023Z"}' + string: '{"name":"50894fcc-840a-4de6-bc40-7862b87ac260","status":"Succeeded","startTime":"2020-03-04T18:40:53.347Z"}' headers: cache-control: - no-cache @@ -1073,7 +1073,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:58:10 GMT + - Wed, 04 Mar 2020 18:41:08 GMT expires: - '-1' pragma: @@ -1105,8 +1105,8 @@ interactions: ParameterSetName: - --name -g --server --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/firewallRules/rule2?api-version=2018-06-01 response: @@ -1120,7 +1120,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:58:12 GMT + - Wed, 04 Mar 2020 18:41:08 GMT expires: - '-1' pragma: @@ -1152,8 +1152,8 @@ interactions: ParameterSetName: - -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -1169,7 +1169,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:58:14 GMT + - Wed, 04 Mar 2020 18:41:09 GMT expires: - '-1' pragma: @@ -1203,18 +1203,18 @@ interactions: ParameterSetName: - --name -g --server --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/firewallRules/rule1?api-version=2018-06-01 response: body: - string: '{"operation":"DropElasticServerFirewallRule","startTime":"2020-02-07T18:58:17.103Z"}' + string: '{"operation":"DropElasticServerFirewallRule","startTime":"2020-03-04T18:41:10.863Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/ca811372-2ae3-49b6-a852-babe1a98979f?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1d52c29e-a0d9-4399-8c08-b2f57ba82149?api-version=2018-06-01 cache-control: - no-cache content-length: @@ -1222,11 +1222,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:58:17 GMT + - Wed, 04 Mar 2020 18:41:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/ca811372-2ae3-49b6-a852-babe1a98979f?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/1d52c29e-a0d9-4399-8c08-b2f57ba82149?api-version=2018-06-01 pragma: - no-cache server: @@ -1254,13 +1254,13 @@ interactions: ParameterSetName: - --name -g --server --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/ca811372-2ae3-49b6-a852-babe1a98979f?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1d52c29e-a0d9-4399-8c08-b2f57ba82149?api-version=2018-06-01 response: body: - string: '{"name":"ca811372-2ae3-49b6-a852-babe1a98979f","status":"Succeeded","startTime":"2020-02-07T18:58:17.103Z"}' + string: '{"name":"1d52c29e-a0d9-4399-8c08-b2f57ba82149","status":"Succeeded","startTime":"2020-03-04T18:41:10.863Z"}' headers: cache-control: - no-cache @@ -1269,7 +1269,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:58:32 GMT + - Wed, 04 Mar 2020 18:41:25 GMT expires: - '-1' pragma: @@ -1301,8 +1301,8 @@ interactions: ParameterSetName: - -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -1318,7 +1318,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:58:35 GMT + - Wed, 04 Mar 2020 18:41:27 GMT expires: - '-1' pragma: @@ -1352,18 +1352,18 @@ interactions: ParameterSetName: - -n -g -s --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/firewallRules/rule2?api-version=2018-06-01 response: body: - string: '{"operation":"DropElasticServerFirewallRule","startTime":"2020-02-07T18:58:38.91Z"}' + string: '{"operation":"DropElasticServerFirewallRule","startTime":"2020-03-04T18:41:28.21Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/ec615157-d081-4bee-b8aa-9b62f39f0109?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/67bb9f4b-ab4c-42b0-a474-73fced369ecd?api-version=2018-06-01 cache-control: - no-cache content-length: @@ -1371,11 +1371,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:58:38 GMT + - Wed, 04 Mar 2020 18:41:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/ec615157-d081-4bee-b8aa-9b62f39f0109?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/67bb9f4b-ab4c-42b0-a474-73fced369ecd?api-version=2018-06-01 pragma: - no-cache server: @@ -1385,7 +1385,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -1403,13 +1403,13 @@ interactions: ParameterSetName: - -n -g -s --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/ec615157-d081-4bee-b8aa-9b62f39f0109?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/67bb9f4b-ab4c-42b0-a474-73fced369ecd?api-version=2018-06-01 response: body: - string: '{"name":"ec615157-d081-4bee-b8aa-9b62f39f0109","status":"Succeeded","startTime":"2020-02-07T18:58:38.91Z"}' + string: '{"name":"67bb9f4b-ab4c-42b0-a474-73fced369ecd","status":"Succeeded","startTime":"2020-03-04T18:41:28.21Z"}' headers: cache-control: - no-cache @@ -1418,7 +1418,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:58:54 GMT + - Wed, 04 Mar 2020 18:41:42 GMT expires: - '-1' pragma: @@ -1450,8 +1450,8 @@ interactions: ParameterSetName: - -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -1467,7 +1467,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:58:58 GMT + - Wed, 04 Mar 2020 18:41:44 GMT expires: - '-1' pragma: @@ -1505,8 +1505,8 @@ interactions: ParameterSetName: - -n -g -l --address-prefix --subnet-name --subnet-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT @@ -1514,15 +1514,15 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"61989f0c-a52f-48bd-bf4e-0718a4f9ddb4\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a6fd26cd-6028-4ed8-85ff-5ff0e7fcb329\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"2676d487-484f-4f60-a045-0d0ad0f80f22\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"b2951b57-0332-49e8-87c3-27dbb0a2b629\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"61989f0c-a52f-48bd-bf4e-0718a4f9ddb4\\\"\",\r\n + \ \"etag\": \"W/\\\"a6fd26cd-6028-4ed8-85ff-5ff0e7fcb329\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1531,7 +1531,7 @@ interactions: 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/eastus/operations/7ee5e16a-0801-44fb-9383-a5897cdc0546?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ba58b898-3ae5-437e-a5b4-365a022ad05b?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -1539,7 +1539,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:59:04 GMT + - Wed, 04 Mar 2020 18:41:45 GMT expires: - '-1' pragma: @@ -1552,9 +1552,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 70ef25e3-021d-4707-be00-3560d87e0889 + - 5e1f4cd0-dcc1-452b-9a37-94e76ba1a956 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -1572,10 +1572,10 @@ interactions: ParameterSetName: - -n -g -l --address-prefix --subnet-name --subnet-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7ee5e16a-0801-44fb-9383-a5897cdc0546?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ba58b898-3ae5-437e-a5b4-365a022ad05b?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1587,7 +1587,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:59:09 GMT + - Wed, 04 Mar 2020 18:41:49 GMT expires: - '-1' pragma: @@ -1604,7 +1604,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 602f57a1-272a-4fb5-8173-ff86685a49f9 + - 54680080-bb9b-4b20-b3f1-2c33b3eebd3a status: code: 200 message: OK @@ -1622,22 +1622,22 @@ interactions: ParameterSetName: - -n -g -l --address-prefix --subnet-name --subnet-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet?api-version=2019-11-01 response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"3a6be4cb-f782-4dab-98d1-ffebc1a341e1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4cd68e14-f4d2-48f4-9b4c-51d5b1260f67\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"2676d487-484f-4f60-a045-0d0ad0f80f22\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"b2951b57-0332-49e8-87c3-27dbb0a2b629\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"3a6be4cb-f782-4dab-98d1-ffebc1a341e1\\\"\",\r\n + \ \"etag\": \"W/\\\"4cd68e14-f4d2-48f4-9b4c-51d5b1260f67\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1652,9 +1652,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:59:11 GMT + - Wed, 04 Mar 2020 18:41:49 GMT etag: - - W/"3a6be4cb-f782-4dab-98d1-ffebc1a341e1" + - W/"4cd68e14-f4d2-48f4-9b4c-51d5b1260f67" expires: - '-1' pragma: @@ -1671,7 +1671,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6818d37c-0910-4a7c-b564-10b53128c6af + - b3bb2921-758e-4571-95fb-0238319b23e5 status: code: 200 message: OK @@ -1689,8 +1689,8 @@ interactions: ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -1698,15 +1698,15 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"3a6be4cb-f782-4dab-98d1-ffebc1a341e1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4cd68e14-f4d2-48f4-9b4c-51d5b1260f67\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"2676d487-484f-4f60-a045-0d0ad0f80f22\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"b2951b57-0332-49e8-87c3-27dbb0a2b629\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"3a6be4cb-f782-4dab-98d1-ffebc1a341e1\\\"\",\r\n + \ \"etag\": \"W/\\\"4cd68e14-f4d2-48f4-9b4c-51d5b1260f67\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1721,9 +1721,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:59:13 GMT + - Wed, 04 Mar 2020 18:41:50 GMT etag: - - W/"3a6be4cb-f782-4dab-98d1-ffebc1a341e1" + - W/"4cd68e14-f4d2-48f4-9b4c-51d5b1260f67" expires: - '-1' pragma: @@ -1740,7 +1740,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d846bd7d-c9e2-41e7-bd83-3811a3c3323b + - a2afdd79-ebc2-4e52-89c7-5d8331ed6d36 status: code: 200 message: OK @@ -1769,8 +1769,8 @@ interactions: ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT @@ -1778,22 +1778,22 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"8d99119b-a50f-40c1-8b77-672e97a30021\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5ad8faab-4e0e-4d85-ab24-86be5fe2b5a0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"2676d487-484f-4f60-a045-0d0ad0f80f22\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"b2951b57-0332-49e8-87c3-27dbb0a2b629\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"8d99119b-a50f-40c1-8b77-672e97a30021\\\"\",\r\n + \ \"etag\": \"W/\\\"5ad8faab-4e0e-4d85-ab24-86be5fe2b5a0\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"clitestsubnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet2\",\r\n - \ \"etag\": \"W/\\\"8d99119b-a50f-40c1-8b77-672e97a30021\\\"\",\r\n + \ \"etag\": \"W/\\\"5ad8faab-4e0e-4d85-ab24-86be5fe2b5a0\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1802,7 +1802,7 @@ interactions: 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/eastus/operations/06cd0ca9-4084-4c45-b1ef-8b4ac45bcbdc?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a157ee01-440d-4b06-88ed-59cec7282087?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -1810,7 +1810,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:59:14 GMT + - Wed, 04 Mar 2020 18:41:50 GMT expires: - '-1' pragma: @@ -1827,7 +1827,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 40e3d7ea-39a4-4197-88d5-340aa72aaf3f + - 46c6c639-4c76-4520-bd88-38b95b0c6893 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1847,10 +1847,10 @@ interactions: ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/06cd0ca9-4084-4c45-b1ef-8b4ac45bcbdc?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a157ee01-440d-4b06-88ed-59cec7282087?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1862,7 +1862,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:59:20 GMT + - Wed, 04 Mar 2020 18:41:54 GMT expires: - '-1' pragma: @@ -1879,7 +1879,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a938e5a5-56ca-436c-8deb-f73983f26218 + - a1ddb277-c2ba-4d7f-801d-ec9139c34e6d status: code: 200 message: OK @@ -1897,29 +1897,29 @@ interactions: ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet?api-version=2019-11-01 response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"f14a9974-b0ba-4eb0-8d36-3ae2df298e08\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2c265b42-59a7-4d17-a480-d00c62901d09\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"2676d487-484f-4f60-a045-0d0ad0f80f22\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"b2951b57-0332-49e8-87c3-27dbb0a2b629\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"f14a9974-b0ba-4eb0-8d36-3ae2df298e08\\\"\",\r\n + \ \"etag\": \"W/\\\"2c265b42-59a7-4d17-a480-d00c62901d09\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"clitestsubnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet2\",\r\n - \ \"etag\": \"W/\\\"f14a9974-b0ba-4eb0-8d36-3ae2df298e08\\\"\",\r\n + \ \"etag\": \"W/\\\"2c265b42-59a7-4d17-a480-d00c62901d09\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1934,9 +1934,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:59:20 GMT + - Wed, 04 Mar 2020 18:41:54 GMT etag: - - W/"f14a9974-b0ba-4eb0-8d36-3ae2df298e08" + - W/"2c265b42-59a7-4d17-a480-d00c62901d09" expires: - '-1' pragma: @@ -1953,7 +1953,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cffb9069-3a16-47dd-b276-c27afcf8169d + - 092953f3-7304-4050-bdb7-0ffacabbe6f2 status: code: 200 message: OK @@ -1976,30 +1976,30 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule1?api-version=2018-06-01 response: body: - string: '{"operation":"UpsertElasticServerVnetFirewallRule","startTime":"2020-02-07T18:59:24.15Z"}' + string: '{"operation":"UpsertElasticServerVnetFirewallRule","startTime":"2020-03-04T18:41:55.397Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/14ea55d1-2547-46ac-81ad-4ff6380a11a1?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/c57f3075-5d2f-4743-a65c-9d1b976d2d36?api-version=2018-06-01 cache-control: - no-cache content-length: - - '89' + - '90' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:59:24 GMT + - Wed, 04 Mar 2020 18:41:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/14ea55d1-2547-46ac-81ad-4ff6380a11a1?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/c57f3075-5d2f-4743-a65c-9d1b976d2d36?api-version=2018-06-01 pragma: - no-cache server: @@ -2027,22 +2027,22 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/14ea55d1-2547-46ac-81ad-4ff6380a11a1?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/c57f3075-5d2f-4743-a65c-9d1b976d2d36?api-version=2018-06-01 response: body: - string: '{"name":"14ea55d1-2547-46ac-81ad-4ff6380a11a1","status":"Succeeded","startTime":"2020-02-07T18:59:24.15Z"}' + string: '{"name":"c57f3075-5d2f-4743-a65c-9d1b976d2d36","status":"Succeeded","startTime":"2020-03-04T18:41:55.397Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:59:56 GMT + - Wed, 04 Mar 2020 18:42:27 GMT expires: - '-1' pragma: @@ -2074,8 +2074,8 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule1?api-version=2018-06-01 response: @@ -2089,7 +2089,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 18:59:58 GMT + - Wed, 04 Mar 2020 18:42:27 GMT expires: - '-1' pragma: @@ -2121,8 +2121,8 @@ interactions: ParameterSetName: - -n -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -2138,7 +2138,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:00:02 GMT + - Wed, 04 Mar 2020 18:42:29 GMT expires: - '-1' pragma: @@ -2175,18 +2175,18 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule2?api-version=2018-06-01 response: body: - string: '{"operation":"UpsertElasticServerVnetFirewallRule","startTime":"2020-02-07T19:00:05.953Z"}' + string: '{"operation":"UpsertElasticServerVnetFirewallRule","startTime":"2020-03-04T18:42:30.633Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/cd95bf10-5cf1-40be-b3de-93ee0ae4b88e?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/ac7e1980-7135-4be0-ba6c-75ed7f9c819a?api-version=2018-06-01 cache-control: - no-cache content-length: @@ -2194,11 +2194,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:00:06 GMT + - Wed, 04 Mar 2020 18:42:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/cd95bf10-5cf1-40be-b3de-93ee0ae4b88e?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/ac7e1980-7135-4be0-ba6c-75ed7f9c819a?api-version=2018-06-01 pragma: - no-cache server: @@ -2226,13 +2226,13 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/cd95bf10-5cf1-40be-b3de-93ee0ae4b88e?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/ac7e1980-7135-4be0-ba6c-75ed7f9c819a?api-version=2018-06-01 response: body: - string: '{"name":"cd95bf10-5cf1-40be-b3de-93ee0ae4b88e","status":"Succeeded","startTime":"2020-02-07T19:00:05.953Z"}' + string: '{"name":"ac7e1980-7135-4be0-ba6c-75ed7f9c819a","status":"Succeeded","startTime":"2020-03-04T18:42:30.633Z"}' headers: cache-control: - no-cache @@ -2241,7 +2241,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:00:38 GMT + - Wed, 04 Mar 2020 18:43:02 GMT expires: - '-1' pragma: @@ -2273,8 +2273,8 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule2?api-version=2018-06-01 response: @@ -2288,7 +2288,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:00:40 GMT + - Wed, 04 Mar 2020 18:43:02 GMT expires: - '-1' pragma: @@ -2320,8 +2320,8 @@ interactions: ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -2329,22 +2329,22 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"b82c08cf-99d7-4525-b875-6447cb717148\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"10334b39-cf2c-413b-9969-c6d646a721e1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"2676d487-484f-4f60-a045-0d0ad0f80f22\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"b2951b57-0332-49e8-87c3-27dbb0a2b629\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"b82c08cf-99d7-4525-b875-6447cb717148\\\"\",\r\n + \ \"etag\": \"W/\\\"10334b39-cf2c-413b-9969-c6d646a721e1\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"clitestsubnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet2\",\r\n - \ \"etag\": \"W/\\\"b82c08cf-99d7-4525-b875-6447cb717148\\\"\",\r\n + \ \"etag\": \"W/\\\"10334b39-cf2c-413b-9969-c6d646a721e1\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -2359,9 +2359,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:00:43 GMT + - Wed, 04 Mar 2020 18:43:03 GMT etag: - - W/"b82c08cf-99d7-4525-b875-6447cb717148" + - W/"10334b39-cf2c-413b-9969-c6d646a721e1" expires: - '-1' pragma: @@ -2378,7 +2378,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e15bbe74-15e7-4f28-89e3-99f7116a77cd + - 5018c95b-c048-47f6-b0fe-b6b1d153acb8 status: code: 200 message: OK @@ -2410,8 +2410,8 @@ interactions: ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT @@ -2419,29 +2419,29 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"4891d1d9-816a-4fd5-b210-e45e1c0a1f74\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"93d6ca4d-43ac-4b80-ad72-78ad7337ce2e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"2676d487-484f-4f60-a045-0d0ad0f80f22\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"b2951b57-0332-49e8-87c3-27dbb0a2b629\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"4891d1d9-816a-4fd5-b210-e45e1c0a1f74\\\"\",\r\n + \ \"etag\": \"W/\\\"93d6ca4d-43ac-4b80-ad72-78ad7337ce2e\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"clitestsubnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet2\",\r\n - \ \"etag\": \"W/\\\"4891d1d9-816a-4fd5-b210-e45e1c0a1f74\\\"\",\r\n + \ \"etag\": \"W/\\\"93d6ca4d-43ac-4b80-ad72-78ad7337ce2e\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.1.0/24\",\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 \"name\": \"clitestsubnet3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet3\",\r\n - \ \"etag\": \"W/\\\"4891d1d9-816a-4fd5-b210-e45e1c0a1f74\\\"\",\r\n + \ \"etag\": \"W/\\\"93d6ca4d-43ac-4b80-ad72-78ad7337ce2e\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.3.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -2450,7 +2450,7 @@ interactions: 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/eastus/operations/378c06b9-02a5-4cda-b353-822ff2e53893?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/182331c1-3784-4110-979d-1de8243eb374?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -2458,7 +2458,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:00:44 GMT + - Wed, 04 Mar 2020 18:43:04 GMT expires: - '-1' pragma: @@ -2475,9 +2475,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0b49be03-33af-483c-b92d-5c7b47cad242 + - 0ade7f12-dd86-4427-8863-f1bd6f1d9014 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -2495,10 +2495,10 @@ interactions: ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/378c06b9-02a5-4cda-b353-822ff2e53893?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/182331c1-3784-4110-979d-1de8243eb374?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2510,7 +2510,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:00:49 GMT + - Wed, 04 Mar 2020 18:43:06 GMT expires: - '-1' pragma: @@ -2527,7 +2527,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dbb2a844-015e-4435-976b-cc48d021da82 + - 63d9aadb-4cb3-4d1d-a02b-8f15b35def53 status: code: 200 message: OK @@ -2545,36 +2545,36 @@ interactions: ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet?api-version=2019-11-01 response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"5081b2cf-ae29-416c-a2a7-6a32c056cf63\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8f160aec-a929-4c57-be8a-40b03b817848\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"2676d487-484f-4f60-a045-0d0ad0f80f22\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"b2951b57-0332-49e8-87c3-27dbb0a2b629\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"5081b2cf-ae29-416c-a2a7-6a32c056cf63\\\"\",\r\n + \ \"etag\": \"W/\\\"8f160aec-a929-4c57-be8a-40b03b817848\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"clitestsubnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet2\",\r\n - \ \"etag\": \"W/\\\"5081b2cf-ae29-416c-a2a7-6a32c056cf63\\\"\",\r\n + \ \"etag\": \"W/\\\"8f160aec-a929-4c57-be8a-40b03b817848\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.1.0/24\",\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 \"name\": \"clitestsubnet3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet3\",\r\n - \ \"etag\": \"W/\\\"5081b2cf-ae29-416c-a2a7-6a32c056cf63\\\"\",\r\n + \ \"etag\": \"W/\\\"8f160aec-a929-4c57-be8a-40b03b817848\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.3.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -2589,9 +2589,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:00:50 GMT + - Wed, 04 Mar 2020 18:43:07 GMT etag: - - W/"5081b2cf-ae29-416c-a2a7-6a32c056cf63" + - W/"8f160aec-a929-4c57-be8a-40b03b817848" expires: - '-1' pragma: @@ -2608,7 +2608,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 16d4993e-6c6e-4777-ae13-c357c13fd2eb + - f2a42c2b-46ab-4f10-83cf-0ec34559e358 status: code: 200 message: OK @@ -2626,8 +2626,8 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -2643,7 +2643,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:00:53 GMT + - Wed, 04 Mar 2020 18:43:07 GMT expires: - '-1' pragma: @@ -2680,18 +2680,18 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule2?api-version=2018-06-01 response: body: - string: '{"operation":"UpsertElasticServerVnetFirewallRule","startTime":"2020-02-07T19:00:56.033Z"}' + string: '{"operation":"UpsertElasticServerVnetFirewallRule","startTime":"2020-03-04T18:43:09.083Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/5d6749d3-d211-4a11-b636-e747474ead28?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/cf464a1f-3949-4eba-827b-5caeace7bc4a?api-version=2018-06-01 cache-control: - no-cache content-length: @@ -2699,11 +2699,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:00:57 GMT + - Wed, 04 Mar 2020 18:43:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/5d6749d3-d211-4a11-b636-e747474ead28?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/cf464a1f-3949-4eba-827b-5caeace7bc4a?api-version=2018-06-01 pragma: - no-cache server: @@ -2713,7 +2713,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -2731,13 +2731,13 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/5d6749d3-d211-4a11-b636-e747474ead28?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/cf464a1f-3949-4eba-827b-5caeace7bc4a?api-version=2018-06-01 response: body: - string: '{"name":"5d6749d3-d211-4a11-b636-e747474ead28","status":"Succeeded","startTime":"2020-02-07T19:00:56.033Z"}' + string: '{"name":"cf464a1f-3949-4eba-827b-5caeace7bc4a","status":"Succeeded","startTime":"2020-03-04T18:43:09.083Z"}' headers: cache-control: - no-cache @@ -2746,7 +2746,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:01:30 GMT + - Wed, 04 Mar 2020 18:43:40 GMT expires: - '-1' pragma: @@ -2778,8 +2778,8 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule2?api-version=2018-06-01 response: @@ -2793,7 +2793,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:01:33 GMT + - Wed, 04 Mar 2020 18:43:40 GMT expires: - '-1' pragma: @@ -2825,8 +2825,8 @@ interactions: ParameterSetName: - -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -2842,7 +2842,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:01:35 GMT + - Wed, 04 Mar 2020 18:43:41 GMT expires: - '-1' pragma: @@ -2876,18 +2876,18 @@ interactions: ParameterSetName: - --name -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule1?api-version=2018-06-01 response: body: - string: '{"operation":"DropElasticServerVnetFirewallRule","startTime":"2020-02-07T19:01:38.837Z"}' + string: '{"operation":"DropElasticServerVnetFirewallRule","startTime":"2020-03-04T18:43:42.367Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/d7d8bf16-419c-4f61-9840-6111a77f1b39?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/44145d29-6e25-4bde-9727-207ff156a40a?api-version=2018-06-01 cache-control: - no-cache content-length: @@ -2895,11 +2895,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:01:39 GMT + - Wed, 04 Mar 2020 18:43:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/d7d8bf16-419c-4f61-9840-6111a77f1b39?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/44145d29-6e25-4bde-9727-207ff156a40a?api-version=2018-06-01 pragma: - no-cache server: @@ -2909,7 +2909,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -2927,13 +2927,13 @@ interactions: ParameterSetName: - --name -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/d7d8bf16-419c-4f61-9840-6111a77f1b39?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/44145d29-6e25-4bde-9727-207ff156a40a?api-version=2018-06-01 response: body: - string: '{"name":"d7d8bf16-419c-4f61-9840-6111a77f1b39","status":"Succeeded","startTime":"2020-02-07T19:01:38.837Z"}' + string: '{"name":"44145d29-6e25-4bde-9727-207ff156a40a","status":"Succeeded","startTime":"2020-03-04T18:43:42.367Z"}' headers: cache-control: - no-cache @@ -2942,7 +2942,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:01:56 GMT + - Wed, 04 Mar 2020 18:43:58 GMT expires: - '-1' pragma: @@ -2974,8 +2974,8 @@ interactions: ParameterSetName: - -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -2991,7 +2991,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:01:58 GMT + - Wed, 04 Mar 2020 18:43:59 GMT expires: - '-1' pragma: @@ -3025,30 +3025,30 @@ interactions: ParameterSetName: - -n -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule2?api-version=2018-06-01 response: body: - string: '{"operation":"DropElasticServerVnetFirewallRule","startTime":"2020-02-07T19:02:00.47Z"}' + string: '{"operation":"DropElasticServerVnetFirewallRule","startTime":"2020-03-04T18:44:01.507Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a91d4edc-9793-4ea8-a111-ccf3da282449?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/fea594e0-36ee-4e8b-9056-f882f1ad46b5?api-version=2018-06-01 cache-control: - no-cache content-length: - - '87' + - '88' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:02:01 GMT + - Wed, 04 Mar 2020 18:44:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/a91d4edc-9793-4ea8-a111-ccf3da282449?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/fea594e0-36ee-4e8b-9056-f882f1ad46b5?api-version=2018-06-01 pragma: - no-cache server: @@ -3076,22 +3076,22 @@ interactions: ParameterSetName: - -n -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a91d4edc-9793-4ea8-a111-ccf3da282449?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/fea594e0-36ee-4e8b-9056-f882f1ad46b5?api-version=2018-06-01 response: body: - string: '{"name":"a91d4edc-9793-4ea8-a111-ccf3da282449","status":"Succeeded","startTime":"2020-02-07T19:02:00.47Z"}' + string: '{"name":"fea594e0-36ee-4e8b-9056-f882f1ad46b5","status":"Succeeded","startTime":"2020-03-04T18:44:01.507Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:02:18 GMT + - Wed, 04 Mar 2020 18:44:17 GMT expires: - '-1' pragma: @@ -3123,8 +3123,8 @@ interactions: ParameterSetName: - -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -3140,7 +3140,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:02:22 GMT + - Wed, 04 Mar 2020 18:44:18 GMT expires: - '-1' pragma: @@ -3174,8 +3174,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE @@ -3185,17 +3185,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/324e1a24-83e8-4881-999e-5951f3f9942a?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c2236f4e-a12c-449e-baf3-637188b41934?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Feb 2020 19:02:25 GMT + - Wed, 04 Mar 2020 18:44:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/324e1a24-83e8-4881-999e-5951f3f9942a?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/c2236f4e-a12c-449e-baf3-637188b41934?api-version=2019-11-01 pragma: - no-cache server: @@ -3206,7 +3206,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dec2161f-680f-4e0c-9edd-23aef1b92692 + - f74c4110-bb54-414b-b0fb-c232b7c22f13 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -3226,10 +3226,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/324e1a24-83e8-4881-999e-5951f3f9942a?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c2236f4e-a12c-449e-baf3-637188b41934?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3241,7 +3241,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:02:38 GMT + - Wed, 04 Mar 2020 18:44:30 GMT expires: - '-1' pragma: @@ -3258,7 +3258,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7d27cc81-657e-4e06-bb23-57e9cb6d2e72 + - 8d3e1885-53ca-4c54-840c-730a40129d36 status: code: 200 message: OK @@ -3276,8 +3276,8 @@ interactions: ParameterSetName: - -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -3293,7 +3293,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:02:41 GMT + - Wed, 04 Mar 2020 18:44:31 GMT expires: - '-1' pragma: @@ -3325,8 +3325,8 @@ interactions: ParameterSetName: - --name -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -3343,7 +3343,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:02:44 GMT + - Wed, 04 Mar 2020 18:44:32 GMT expires: - '-1' pragma: @@ -3379,30 +3379,30 @@ interactions: ParameterSetName: - -n -g -s --value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/configurations/log_slow_admin_statements?api-version=2018-06-01 response: body: - string: '{"operation":"UpdateElasticServerConfig","startTime":"2020-02-07T19:02:47.243Z"}' + string: '{"operation":"UpdateElasticServerConfig","startTime":"2020-03-04T18:44:33.15Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/df712b90-2fdd-40c5-abbe-60573a5caefd?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/3b3a3b15-97b0-4bea-8d97-8a3d5a1ae81b?api-version=2018-06-01 cache-control: - no-cache content-length: - - '80' + - '79' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:02:46 GMT + - Wed, 04 Mar 2020 18:44:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/df712b90-2fdd-40c5-abbe-60573a5caefd?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/3b3a3b15-97b0-4bea-8d97-8a3d5a1ae81b?api-version=2018-06-01 pragma: - no-cache server: @@ -3412,7 +3412,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 202 message: Accepted @@ -3430,22 +3430,22 @@ interactions: ParameterSetName: - -n -g -s --value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/df712b90-2fdd-40c5-abbe-60573a5caefd?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/3b3a3b15-97b0-4bea-8d97-8a3d5a1ae81b?api-version=2018-06-01 response: body: - string: '{"name":"df712b90-2fdd-40c5-abbe-60573a5caefd","status":"Succeeded","startTime":"2020-02-07T19:02:47.243Z"}' + string: '{"name":"3b3a3b15-97b0-4bea-8d97-8a3d5a1ae81b","status":"Succeeded","startTime":"2020-03-04T18:44:33.15Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:03:03 GMT + - Wed, 04 Mar 2020 18:44:48 GMT expires: - '-1' pragma: @@ -3477,8 +3477,8 @@ interactions: ParameterSetName: - -n -g -s --value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/configurations/log_slow_admin_statements?api-version=2018-06-01 response: @@ -3493,7 +3493,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:03:04 GMT + - Wed, 04 Mar 2020 18:44:49 GMT expires: - '-1' pragma: @@ -3529,30 +3529,30 @@ interactions: ParameterSetName: - -n -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/configurations/log_slow_admin_statements?api-version=2018-06-01 response: body: - string: '{"operation":"UpdateElasticServerConfig","startTime":"2020-02-07T19:03:08.81Z"}' + string: '{"operation":"UpdateElasticServerConfig","startTime":"2020-03-04T18:44:50.117Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/60e83cc7-c173-4b26-a584-d22981ba1957?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/83e0a01a-4c0c-4d55-ba07-f66753bcb40e?api-version=2018-06-01 cache-control: - no-cache content-length: - - '79' + - '80' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:03:08 GMT + - Wed, 04 Mar 2020 18:44:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/60e83cc7-c173-4b26-a584-d22981ba1957?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/83e0a01a-4c0c-4d55-ba07-f66753bcb40e?api-version=2018-06-01 pragma: - no-cache server: @@ -3562,7 +3562,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 202 message: Accepted @@ -3580,22 +3580,22 @@ interactions: ParameterSetName: - -n -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/60e83cc7-c173-4b26-a584-d22981ba1957?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/83e0a01a-4c0c-4d55-ba07-f66753bcb40e?api-version=2018-06-01 response: body: - string: '{"name":"60e83cc7-c173-4b26-a584-d22981ba1957","status":"Succeeded","startTime":"2020-02-07T19:03:08.81Z"}' + string: '{"name":"83e0a01a-4c0c-4d55-ba07-f66753bcb40e","status":"Succeeded","startTime":"2020-03-04T18:44:50.117Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:03:26 GMT + - Wed, 04 Mar 2020 18:45:05 GMT expires: - '-1' pragma: @@ -3627,8 +3627,8 @@ interactions: ParameterSetName: - -n -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/configurations/log_slow_admin_statements?api-version=2018-06-01 response: @@ -3643,7 +3643,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:03:28 GMT + - Wed, 04 Mar 2020 18:45:05 GMT expires: - '-1' pragma: @@ -3675,8 +3675,8 @@ interactions: ParameterSetName: - -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -3918,7 +3918,7 @@ interactions: parameter controls whetherthe server permits no client updates. When the server is read replica or server storage is full, this parameter will not take effect.","defaultValue":"OFF","dataType":"Enumeration","allowedValues":"ON,OFF","source":"system-default","isConfigPendingRestart":"False","isDynamicConfig":"True"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/configurations/read_only","name":"read_only","type":"Microsoft.DBforMariaDB/servers/configurations"},{"properties":{"value":"1073741824","description":"This option places an upper limit on the total size in bytes of all relay logs - on the slave.","defaultValue":"1073741824","dataType":"Integer","allowedValues":"1073741824-3221225472","source":"system-default","isConfigPendingRestart":"False","isDynamicConfig":"False"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/configurations/relay_log_space_limit","name":"relay_log_space_limit","type":"Microsoft.DBforMariaDB/servers/configurations"},{"properties":{"value":"3126987833","description":"The + on the slave.","defaultValue":"1073741824","dataType":"Integer","allowedValues":"1073741824-3221225472","source":"system-default","isConfigPendingRestart":"False","isDynamicConfig":"False"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/configurations/relay_log_space_limit","name":"relay_log_space_limit","type":"Microsoft.DBforMariaDB/servers/configurations"},{"properties":{"value":"1449554715","description":"The server ID, used in replication to give each master and slave a unique identity.","defaultValue":"1000","dataType":"Integer","allowedValues":"1000-4294967295","source":"user-override","isConfigPendingRestart":"False","isDynamicConfig":"True"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/configurations/server_id","name":"server_id","type":"Microsoft.DBforMariaDB/servers/configurations"},{"properties":{"value":"ON","description":"Track changes to the default schema.","defaultValue":"ON","dataType":"Enumeration","allowedValues":"ON,OFF","source":"system-default","isConfigPendingRestart":"False","isDynamicConfig":"True"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/configurations/session_track_schema","name":"session_track_schema","type":"Microsoft.DBforMariaDB/servers/configurations"},{"properties":{"value":"OFF","description":"Track changes to the session state.","defaultValue":"OFF","dataType":"Enumeration","allowedValues":"ON,OFF","source":"system-default","isConfigPendingRestart":"False","isDynamicConfig":"True"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/configurations/session_track_state_change","name":"session_track_state_change","type":"Microsoft.DBforMariaDB/servers/configurations"},{"properties":{"value":"OFF","description":"Track @@ -3979,7 +3979,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:03:32 GMT + - Wed, 04 Mar 2020 18:45:06 GMT expires: - '-1' pragma: @@ -4015,18 +4015,18 @@ interactions: ParameterSetName: - -n -g -s --value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/configurations/slow_query_log?api-version=2018-06-01 response: body: - string: '{"operation":"UpdateElasticServerConfig","startTime":"2020-02-07T19:03:34.383Z"}' + string: '{"operation":"UpdateElasticServerConfig","startTime":"2020-03-04T18:45:08.187Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/62bbf788-12ab-4560-aefa-bf680d1a63e9?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/f6de0802-ea7e-4896-aacb-724b1fc62285?api-version=2018-06-01 cache-control: - no-cache content-length: @@ -4034,11 +4034,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:03:33 GMT + - Wed, 04 Mar 2020 18:45:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/62bbf788-12ab-4560-aefa-bf680d1a63e9?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/f6de0802-ea7e-4896-aacb-724b1fc62285?api-version=2018-06-01 pragma: - no-cache server: @@ -4048,7 +4048,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 202 message: Accepted @@ -4066,13 +4066,13 @@ interactions: ParameterSetName: - -n -g -s --value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/62bbf788-12ab-4560-aefa-bf680d1a63e9?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/f6de0802-ea7e-4896-aacb-724b1fc62285?api-version=2018-06-01 response: body: - string: '{"name":"62bbf788-12ab-4560-aefa-bf680d1a63e9","status":"Succeeded","startTime":"2020-02-07T19:03:34.383Z"}' + string: '{"name":"f6de0802-ea7e-4896-aacb-724b1fc62285","status":"Succeeded","startTime":"2020-03-04T18:45:08.187Z"}' headers: cache-control: - no-cache @@ -4081,7 +4081,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:03:55 GMT + - Wed, 04 Mar 2020 18:45:23 GMT expires: - '-1' pragma: @@ -4113,8 +4113,8 @@ interactions: ParameterSetName: - -n -g -s --value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/configurations/slow_query_log?api-version=2018-06-01 response: @@ -4129,7 +4129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:03:58 GMT + - Wed, 04 Mar 2020 18:45:23 GMT expires: - '-1' pragma: @@ -4161,15 +4161,15 @@ interactions: ParameterSetName: - -g -s --file-last-written User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/logFiles?api-version=2018-06-01 response: body: - string: '{"value":[{"properties":{"name":"mysql-slow-azuredbclitest000002-2020020718.log","sizeInKB":1,"createdTime":"0001-01-01T00:00:00+00:00","lastModifiedTime":"2020-02-07T19:03:34+00:00","type":"slowlog","url":"https://wasd2prodeus1afse62.file.core.windows.net/1c81ad25346d402f918236ac2024c32f/serverlogs/mysql-slow-azuredbclitest000002-2020020718.log?sv=2018-11-09&sr=f&sig=gGNPUSndF1lbJSlKFqVzVeWiC8O%2BP3toXZbwFAyw%2BYM%3D&se=2020-02-07T20%3A04%3A01Z&sp=r"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/logFiles/mysql-slow-azuredbclitest000002-2020020718.log","name":"mysql-slow-azuredbclitest000002-2020020718.log","type":"Microsoft.DBforMariaDB/servers/logFiles"}]}' + string: '{"value":[{"properties":{"name":"mysql-slow-azuredbclitest000002-2020030418.log","sizeInKB":1,"createdTime":"0001-01-01T00:00:00+00:00","lastModifiedTime":"2020-03-04T18:45:08+00:00","type":"slowlog","url":"https://wasd2prodeus1afse52.file.core.windows.net/80c79e2532eb474dba4c6a353a4f1798/serverlogs/mysql-slow-azuredbclitest000002-2020030418.log?sv=2018-11-09&sr=f&sig=fblGAuiVmhJRDCz%2FqSqFvYGc8%2FUfa9kBF5F6bluqZ3o%3D&se=2020-03-04T19%3A45%3A25Z&sp=r"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/logFiles/mysql-slow-azuredbclitest000002-2020030418.log","name":"mysql-slow-azuredbclitest000002-2020030418.log","type":"Microsoft.DBforMariaDB/servers/logFiles"}]}' headers: cache-control: - no-cache @@ -4178,7 +4178,1271 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:04:01 GMT + - Wed, 04 Mar 2020 18:45:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - mariadb server private-link-resource list + Connection: + - keep-alive + ParameterSetName: + - -g -s + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/privateLinkResources?api-version=2018-06-01 + response: + body: + string: '{"value":[{"properties":{"groupId":"mariadbServer","requiredMembers":["mariadbServer"]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/privateLinkResources/plr","name":"plr","type":"Microsoft.DBforMariaDB/servers/privateLinkResources"}]}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:45:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"properties": {"addressPrefix": + "10.0.0.0/24"}, "name": "cli-subnet-000004"}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + Content-Length: + - '222' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g -l --subnet-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003\",\r\n + \ \"etag\": \"W/\\\"3c6992c4-c89c-4733-ba0d-4106b1e2bcb0\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"b90e89f9-7f7b-4ac1-aacc-426d1d0048bf\",\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\": \"cli-subnet-000004\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n + \ \"etag\": \"W/\\\"3c6992c4-c89c-4733-ba0d-4106b1e2bcb0\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\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/eastus/operations/3fb516c0-5dc6-41ef-bfcd-dcf1b3148528?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '1528' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:45:26 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: + - 3649f480-4fe3-47b3-bc39-136166396eef + 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: + - -n -g -l --subnet-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3fb516c0-5dc6-41ef-bfcd-dcf1b3148528?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:45:29 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: + - f02d3afb-3ecc-45d2-b886-e27cbbed38f8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --subnet-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003\",\r\n + \ \"etag\": \"W/\\\"3f22b1c6-4922-4a4a-a4ed-80bfa6d72ab8\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"b90e89f9-7f7b-4ac1-aacc-426d1d0048bf\",\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\": \"cli-subnet-000004\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n + \ \"etag\": \"W/\\\"3f22b1c6-4922-4a4a-a4ed-80bfa6d72ab8\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\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: + - '1530' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:45:29 GMT + etag: + - W/"3f22b1c6-4922-4a4a-a4ed-80bfa6d72ab8" + 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: + - 3cfdce2c-d1ab-4e46-bdcf-f8b98c778a84 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet update + Connection: + - keep-alive + ParameterSetName: + - -n --vnet-name -g --disable-private-endpoint-network-policies + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"cli-subnet-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n + \ \"etag\": \"W/\\\"3f22b1c6-4922-4a4a-a4ed-80bfa6d72ab8\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": + \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '639' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:45:30 GMT + etag: + - W/"3f22b1c6-4922-4a4a-a4ed-80bfa6d72ab8" + 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: + - 86af275b-9116-4fae-986b-cb9de504e993 + status: + code: 200 + message: OK +- request: + body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004", + "properties": {"addressPrefix": "10.0.0.0/24", "delegations": [], "privateEndpointNetworkPolicies": + "Disabled", "privateLinkServiceNetworkPolicies": "Enabled"}, "name": "cli-subnet-000004"}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet update + Connection: + - keep-alive + Content-Length: + - '451' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --vnet-name -g --disable-private-endpoint-network-policies + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"cli-subnet-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n + \ \"etag\": \"W/\\\"3966394a-2a8b-4b8e-9838-fcee546ceeb8\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": + \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0f6a90a6-e260-4af9-bb65-1fb8bcdb8c9b?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '639' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:45:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 8dd953ac-6319-4f83-ab40-080108d94a5e + 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 update + Connection: + - keep-alive + ParameterSetName: + - -n --vnet-name -g --disable-private-endpoint-network-policies + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0f6a90a6-e260-4af9-bb65-1fb8bcdb8c9b?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:45:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 4a5b81ea-b771-4e0d-9dea-a6c938048ab8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet update + Connection: + - keep-alive + ParameterSetName: + - -n --vnet-name -g --disable-private-endpoint-network-policies + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"cli-subnet-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n + \ \"etag\": \"W/\\\"32e132db-bb7f-4677-a162-b1b23ee736fb\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": + \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '640' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:45:35 GMT + etag: + - W/"32e132db-bb7f-4677-a162-b1b23ee736fb" + 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: + - 63d74564-1780-452e-8c12-d5b0d08d8006 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - mariadb server show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002?api-version=2018-06-01 + response: + body: + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.mariadb.database.azure.com","earliestRestoreDate":"2020-03-04T18:47:41.877+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","infrastructureEncryption":"Enabled","privateEndpointConnections":[]},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforMariaDB/servers"}' + headers: + cache-control: + - no-cache + content-length: + - '1088' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:45: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: + - mariadb server private-link-resource list + Connection: + - keep-alive + ParameterSetName: + - -g -s + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/privateLinkResources?api-version=2018-06-01 + response: + body: + string: '{"value":[{"properties":{"groupId":"mariadbServer","requiredMembers":["mariadbServer"]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/privateLinkResources/plr","name":"plr","type":"Microsoft.DBforMariaDB/servers/privateLinkResources"}]}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:45: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: 'b''b\''{"location": "eastus", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004"}, + "privateLinkServiceConnections": [{"properties": {"privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002", + "groupIds": ["mariadbServer"]}, "name": "cli-pec-000006"}]}}\''''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + Content-Length: + - '699' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id + --group-ids + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"cli-pe-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005\",\r\n + \ \"etag\": \"W/\\\"838c6db8-73f3-46dc-82e9-d4101f91340d\\\"\",\r\n \"type\": + \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": + \"3d167788-978c-4543-ac71-0808e9856f88\",\r\n \"privateLinkServiceConnections\": + [\r\n {\r\n \"name\": \"cli-pec-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006\",\r\n + \ \"etag\": \"W/\\\"838c6db8-73f3-46dc-82e9-d4101f91340d\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002\",\r\n + \ \"groupIds\": [\r\n \"mariadbServer\"\r\n ],\r\n + \ \"privateLinkServiceConnectionState\": {\r\n \"status\": + \"Approved\",\r\n \"description\": \"\",\r\n \"actionsRequired\": + \"None\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n + \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n + \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/cli-pe-000005.nic.afe70d3c-84a5-4950-849b-18c2959d7741\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/42030fd5-3665-4dfb-b8dc-e03e8824e59e?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '2329' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:45:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 476e4285-e101-4312-8503-10d6adb99601 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id + --group-ids + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/42030fd5-3665-4dfb-b8dc-e03e8824e59e?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:45:50 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: + - c7256a6c-bfef-4d6d-8230-40f85d432a8e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id + --group-ids + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/42030fd5-3665-4dfb-b8dc-e03e8824e59e?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:46:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 86314d4c-c707-47c7-a3d8-f83291057751 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id + --group-ids + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/42030fd5-3665-4dfb-b8dc-e03e8824e59e?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:46:10 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: + - ab6dc9ff-1c48-431b-9dd1-c19a43da9c20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id + --group-ids + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"cli-pe-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005\",\r\n + \ \"etag\": \"W/\\\"7036cc1c-f553-487b-8fe4-d8ac4451c465\\\"\",\r\n \"type\": + \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"3d167788-978c-4543-ac71-0808e9856f88\",\r\n \"privateLinkServiceConnections\": + [\r\n {\r\n \"name\": \"cli-pec-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006\",\r\n + \ \"etag\": \"W/\\\"7036cc1c-f553-487b-8fe4-d8ac4451c465\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002\",\r\n + \ \"groupIds\": [\r\n \"mariadbServer\"\r\n ],\r\n + \ \"privateLinkServiceConnectionState\": {\r\n \"status\": + \"Approved\",\r\n \"description\": \"Auto-approved\",\r\n \"actionsRequired\": + \"None\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n + \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n + \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/cli-pe-000005.nic.afe70d3c-84a5-4950-849b-18c2959d7741\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2343' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:46:10 GMT + etag: + - W/"7036cc1c-f553-487b-8fe4-d8ac4451c465" + 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: + - 1311c9b2-65cd-446d-9c6d-266ee8ebda78 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - rest + Connection: + - keep-alive + ParameterSetName: + - --method --uri + User-Agent: + - AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002?api-version=2018-06-01 + response: + body: + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.mariadb.database.azure.com","earliestRestoreDate":"2020-03-04T18:47:41.877+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","infrastructureEncryption":"Enabled","privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-7e50ed49-abbc-46bb-ac8e-fb6f79b9ea08","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Ready"}}]},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforMariaDB/servers"}' + headers: + cache-control: + - no-cache + content-length: + - '1884' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:46: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: + - mariadb server private-endpoint-connection show + Connection: + - keep-alive + ParameterSetName: + - --server-name -g --name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-7e50ed49-abbc-46bb-ac8e-fb6f79b9ea08?api-version=2018-06-01 + response: + body: + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Ready"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-7e50ed49-abbc-46bb-ac8e-fb6f79b9ea08","name":"cli-pe-000005-7e50ed49-abbc-46bb-ac8e-fb6f79b9ea08","type":"Microsoft.DBforMariaDB/servers/privateEndpointConnections"}' + headers: + cache-control: + - no-cache + content-length: + - '934' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:46: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: + - mariadb server private-endpoint-connection approve + Connection: + - keep-alive + ParameterSetName: + - --server-name -g --name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-7e50ed49-abbc-46bb-ac8e-fb6f79b9ea08?api-version=2018-06-01 + response: + body: + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Ready"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-7e50ed49-abbc-46bb-ac8e-fb6f79b9ea08","name":"cli-pe-000005-7e50ed49-abbc-46bb-ac8e-fb6f79b9ea08","type":"Microsoft.DBforMariaDB/servers/privateEndpointConnections"}' + headers: + cache-control: + - no-cache + content-length: + - '934' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:46: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: '{}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - mariadb server private-endpoint-connection approve + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --server-name -g --name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-7e50ed49-abbc-46bb-ac8e-fb6f79b9ea08?api-version=2018-06-01 + response: + body: + string: '{"error":{"code":"PrivateEndpointConnectionStatusNotPending","message":"Private + Endpoint Connection Status is not Pending"}}' + headers: + cache-control: + - no-cache + content-length: + - '124' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:46:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 400 + message: Bad Request +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - mariadb server private-endpoint-connection reject + Connection: + - keep-alive + ParameterSetName: + - --server-name -g --name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-7e50ed49-abbc-46bb-ac8e-fb6f79b9ea08?api-version=2018-06-01 + response: + body: + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Ready"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-7e50ed49-abbc-46bb-ac8e-fb6f79b9ea08","name":"cli-pe-000005-7e50ed49-abbc-46bb-ac8e-fb6f79b9ea08","type":"Microsoft.DBforMariaDB/servers/privateEndpointConnections"}' + headers: + cache-control: + - no-cache + content-length: + - '934' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:46:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - mariadb server private-endpoint-connection reject + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --server-name -g --name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-7e50ed49-abbc-46bb-ac8e-fb6f79b9ea08?api-version=2018-06-01 + response: + body: + string: '{"error":{"code":"PrivateEndpointConnectionStatusNotPending","message":"Private + Endpoint Connection Status is not Pending"}}' + headers: + cache-control: + - no-cache + content-length: + - '124' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:46:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 400 + message: Bad Request +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - mariadb server private-endpoint-connection delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --id + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-7e50ed49-abbc-46bb-ac8e-fb6f79b9ea08?api-version=2018-06-01 + response: + body: + string: '{"operation":"DropElasticServerPrivateEndpointConnection","startTime":"2020-03-04T18:46:15.46Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/locations/eastus/privateEndpointConnectionAzureAsyncOperation/2bbf41dc-bd4c-4232-8129-7cdff5c45c6f?api-version=2018-06-01 + cache-control: + - no-cache + content-length: + - '96' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:46:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/locations/eastus/privateEndpointConnectionOperationResults/2bbf41dc-bd4c-4232-8129-7cdff5c45c6f?api-version=2018-06-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - mariadb server private-endpoint-connection delete + Connection: + - keep-alive + ParameterSetName: + - --id + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/locations/eastus/privateEndpointConnectionAzureAsyncOperation/2bbf41dc-bd4c-4232-8129-7cdff5c45c6f?api-version=2018-06-01 + response: + body: + string: '{"name":"2bbf41dc-bd4c-4232-8129-7cdff5c45c6f","status":"Succeeded","startTime":"2020-03-04T18:46:15.46Z"}' + headers: + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:46:31 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_mariadb_server_mgmt.yaml b/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_mariadb_server_mgmt.yaml index 54fe84e188c..7ce5c202cc1 100644 --- a/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_mariadb_server_mgmt.yaml +++ b/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_mariadb_server_mgmt.yaml @@ -1,95 +1,54 @@ interactions: - request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-03-20T01:18:50Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.60 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-03-20T01:18:50Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 01:18:50 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-03-20T01:18:51Z"}}' + body: '{"sku": {"name": "GP_Gen5_2"}, "properties": {"storageProfile": {"backupRetentionDays": + 10, "geoRedundantBackup": "Enabled", "storageAutogrow": "Enabled"}, "createMode": + "Default", "administratorLogin": "cloudsa", "administratorLoginPassword": "SecretPassword123"}, + "location": "eastus", "tags": {"key": "1"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - group create + - mariadb server create Connection: - keep-alive Content-Length: - - '110' + - '309' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - --location --name --tag + - -g --name -l --admin-user --admin-password --sku-name --tags --geo-redundant-backup + --backup-retention User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000002?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003?api-version=2018-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002","name":"clitest.rg000002","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-03-20T01:18:51Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-03T02:29:10.417Z"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1ad7fe4f-fdaa-4ce0-9596-5a509bfadc88?api-version=2018-06-01 cache-control: - no-cache content-length: - - '384' + - '74' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:18:52 GMT + - Tue, 03 Mar 2020 02:29:10 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/1ad7fe4f-fdaa-4ce0-9596-5a509bfadc88?api-version=2018-06-01 pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -97,13 +56,10 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' status: - code: 201 - message: Created + code: 202 + message: Accepted - request: - body: '{"sku": {"name": "GP_Gen5_2"}, "properties": {"storageProfile": {"backupRetentionDays": - 10, "geoRedundantBackup": "Enabled"}, "createMode": "Default", "administratorLogin": - "cloudsa", "administratorLoginPassword": "SecretPassword123"}, "location": "koreasouth", - "tags": {"key": "1"}}' + body: null headers: Accept: - application/json @@ -113,51 +69,43 @@ interactions: - mariadb server create Connection: - keep-alive - Content-Length: - - '283' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g --name -l --admin-user --admin-password --sku-name --tags --geo-redundant-backup --backup-retention User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003?api-version=2018-06-01 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1ad7fe4f-fdaa-4ce0-9596-5a509bfadc88?api-version=2018-06-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2019-03-20T01:18:53.667Z"}' + string: '{"name":"1ad7fe4f-fdaa-4ce0-9596-5a509bfadc88","status":"InProgress","startTime":"2020-03-03T02:29:10.417Z"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/6c8f296f-f90e-41bc-9843-b84a54a4ec2a?api-version=2018-06-01 cache-control: - no-cache content-length: - - '74' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:18:53 GMT + - Tue, 03 Mar 2020 02:30:10 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/operationResults/6c8f296f-f90e-41bc-9843-b84a54a4ec2a?api-version=2018-06-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -173,13 +121,13 @@ interactions: - -g --name -l --admin-user --admin-password --sku-name --tags --geo-redundant-backup --backup-retention User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/6c8f296f-f90e-41bc-9843-b84a54a4ec2a?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1ad7fe4f-fdaa-4ce0-9596-5a509bfadc88?api-version=2018-06-01 response: body: - string: '{"name":"6c8f296f-f90e-41bc-9843-b84a54a4ec2a","status":"Succeeded","startTime":"2019-03-20T01:18:53.667Z"}' + string: '{"name":"1ad7fe4f-fdaa-4ce0-9596-5a509bfadc88","status":"Succeeded","startTime":"2020-03-03T02:29:10.417Z"}' headers: cache-control: - no-cache @@ -188,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:19:54 GMT + - Tue, 03 Mar 2020 02:31:11 GMT expires: - '-1' pragma: @@ -221,22 +169,22 @@ interactions: - -g --name -l --admin-user --admin-password --sku-name --tags --geo-redundant-backup --backup-retention User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003?api-version=2018-06-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2019-03-20T01:28:53.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.73+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","infrastructureEncryption":"Enabled","privateEndpointConnections":[]},"location":"eastus","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' headers: cache-control: - no-cache content-length: - - '969' + - '1106' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:19:54 GMT + - Tue, 03 Mar 2020 02:31:11 GMT expires: - '-1' pragma: @@ -268,24 +216,24 @@ interactions: ParameterSetName: - -g --name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003?api-version=2018-06-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2019-03-20T01:28:53.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.73+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","infrastructureEncryption":"Enabled","privateEndpointConnections":[]},"location":"eastus","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' headers: cache-control: - no-cache content-length: - - '969' + - '1106' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:19:55 GMT + - Tue, 03 Mar 2020 02:31:12 GMT expires: - '-1' pragma: @@ -317,24 +265,24 @@ interactions: ParameterSetName: - -g --name --admin-password --ssl-enforcement --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003?api-version=2018-06-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2019-03-20T01:28:53.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.73+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","infrastructureEncryption":"Enabled","privateEndpointConnections":[]},"location":"eastus","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' headers: cache-control: - no-cache content-length: - - '969' + - '1106' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:19:57 GMT + - Tue, 03 Mar 2020 02:31:13 GMT expires: - '-1' pragma: @@ -354,8 +302,8 @@ interactions: message: OK - request: body: '{"properties": {"storageProfile": {"backupRetentionDays": 10, "geoRedundantBackup": - "Enabled", "storageMB": 5120}, "administratorLoginPassword": "SecretPassword456", - "sslEnforcement": "Disabled"}, "tags": {"key": "2"}}' + "Enabled", "storageMB": 5120, "storageAutogrow": "Enabled"}, "administratorLoginPassword": + "SecretPassword456", "sslEnforcement": "Disabled"}, "tags": {"key": "2"}}' headers: Accept: - application/json @@ -366,24 +314,24 @@ interactions: Connection: - keep-alive Content-Length: - - '218' + - '248' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g --name --admin-password --ssl-enforcement --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003?api-version=2018-06-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2019-03-20T01:19:59.543Z"}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-03T02:31:14.073Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/a29157e7-340a-4f3d-b713-db26dc319948?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/95f5bfa7-f06a-4a55-bf56-ef8282e44c23?api-version=2018-06-01 cache-control: - no-cache content-length: @@ -391,11 +339,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:19:59 GMT + - Tue, 03 Mar 2020 02:31:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/operationResults/a29157e7-340a-4f3d-b713-db26dc319948?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/95f5bfa7-f06a-4a55-bf56-ef8282e44c23?api-version=2018-06-01 pragma: - no-cache server: @@ -423,13 +371,13 @@ interactions: ParameterSetName: - -g --name --admin-password --ssl-enforcement --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/a29157e7-340a-4f3d-b713-db26dc319948?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/95f5bfa7-f06a-4a55-bf56-ef8282e44c23?api-version=2018-06-01 response: body: - string: '{"name":"a29157e7-340a-4f3d-b713-db26dc319948","status":"Succeeded","startTime":"2019-03-20T01:19:59.543Z"}' + string: '{"name":"95f5bfa7-f06a-4a55-bf56-ef8282e44c23","status":"Succeeded","startTime":"2020-03-03T02:31:14.073Z"}' headers: cache-control: - no-cache @@ -438,7 +386,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:21:00 GMT + - Tue, 03 Mar 2020 02:32:14 GMT expires: - '-1' pragma: @@ -470,22 +418,22 @@ interactions: ParameterSetName: - -g --name --admin-password --ssl-enforcement --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003?api-version=2018-06-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2019-03-20T01:28:53.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.73+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","infrastructureEncryption":"Enabled","privateEndpointConnections":[]},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' headers: cache-control: - no-cache content-length: - - '970' + - '1107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:21:01 GMT + - Tue, 03 Mar 2020 02:32:14 GMT expires: - '-1' pragma: @@ -517,24 +465,24 @@ interactions: ParameterSetName: - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003?api-version=2018-06-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2019-03-20T01:28:53.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.73+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","infrastructureEncryption":"Enabled","privateEndpointConnections":[]},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' headers: cache-control: - no-cache content-length: - - '970' + - '1107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:21:02 GMT + - Tue, 03 Mar 2020 02:32:14 GMT expires: - '-1' pragma: @@ -554,7 +502,7 @@ interactions: message: OK - request: body: '{"sku": {"name": "GP_Gen5_4"}, "properties": {"storageProfile": {"backupRetentionDays": - 10, "geoRedundantBackup": "Enabled", "storageMB": 5120}}}' + 10, "geoRedundantBackup": "Enabled", "storageMB": 5120, "storageAutogrow": "Enabled"}}}' headers: Accept: - application/json @@ -565,36 +513,36 @@ interactions: Connection: - keep-alive Content-Length: - - '145' + - '175' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003?api-version=2018-06-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2019-03-20T01:21:04.577Z"}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-03T02:32:16.2Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/15d1665b-1c0c-42f1-82d7-05e9e318f543?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/c6b73fe6-1dcb-48f1-91a2-696f3fc435c5?api-version=2018-06-01 cache-control: - no-cache content-length: - - '74' + - '72' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:21:04 GMT + - Tue, 03 Mar 2020 02:32:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/operationResults/15d1665b-1c0c-42f1-82d7-05e9e318f543?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/c6b73fe6-1dcb-48f1-91a2-696f3fc435c5?api-version=2018-06-01 pragma: - no-cache server: @@ -622,22 +570,22 @@ interactions: ParameterSetName: - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/15d1665b-1c0c-42f1-82d7-05e9e318f543?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/c6b73fe6-1dcb-48f1-91a2-696f3fc435c5?api-version=2018-06-01 response: body: - string: '{"name":"15d1665b-1c0c-42f1-82d7-05e9e318f543","status":"Succeeded","startTime":"2019-03-20T01:21:04.577Z"}' + string: '{"name":"c6b73fe6-1dcb-48f1-91a2-696f3fc435c5","status":"Succeeded","startTime":"2020-03-03T02:32:16.2Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '105' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:22:05 GMT + - Tue, 03 Mar 2020 02:33:15 GMT expires: - '-1' pragma: @@ -669,22 +617,22 @@ interactions: ParameterSetName: - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003?api-version=2018-06-01 response: body: - string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2019-03-20T01:28:53.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' + string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.73+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","infrastructureEncryption":"Enabled","privateEndpointConnections":[]},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' headers: cache-control: - no-cache content-length: - - '970' + - '1107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:22:05 GMT + - Tue, 03 Mar 2020 02:33:15 GMT expires: - '-1' pragma: @@ -716,24 +664,24 @@ interactions: ParameterSetName: - -g --name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003?api-version=2018-06-01 response: body: - string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2019-03-20T01:28:53.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' + string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.73+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","infrastructureEncryption":"Enabled","privateEndpointConnections":[]},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' headers: cache-control: - no-cache content-length: - - '970' + - '1107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:22:07 GMT + - Tue, 03 Mar 2020 02:33:17 GMT expires: - '-1' pragma: @@ -765,24 +713,24 @@ interactions: ParameterSetName: - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003?api-version=2018-06-01 response: body: - string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2019-03-20T01:28:53.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' + string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.73+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","infrastructureEncryption":"Enabled","privateEndpointConnections":[]},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' headers: cache-control: - no-cache content-length: - - '970' + - '1107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:22:08 GMT + - Tue, 03 Mar 2020 02:33:17 GMT expires: - '-1' pragma: @@ -802,7 +750,7 @@ interactions: message: OK - request: body: '{"sku": {"name": "GP_Gen5_2"}, "properties": {"storageProfile": {"backupRetentionDays": - 10, "geoRedundantBackup": "Enabled", "storageMB": 5120}}}' + 10, "geoRedundantBackup": "Enabled", "storageMB": 5120, "storageAutogrow": "Enabled"}}}' headers: Accept: - application/json @@ -813,24 +761,24 @@ interactions: Connection: - keep-alive Content-Length: - - '145' + - '175' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003?api-version=2018-06-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2019-03-20T01:22:10.393Z"}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-03T02:33:18.733Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/cecf1f20-1ecf-4d33-b52c-845586689689?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/f01d8bf6-1a33-4d65-b3e8-8b31b686fff1?api-version=2018-06-01 cache-control: - no-cache content-length: @@ -838,11 +786,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:22:09 GMT + - Tue, 03 Mar 2020 02:33:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/operationResults/cecf1f20-1ecf-4d33-b52c-845586689689?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/f01d8bf6-1a33-4d65-b3e8-8b31b686fff1?api-version=2018-06-01 pragma: - no-cache server: @@ -852,7 +800,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -870,13 +818,13 @@ interactions: ParameterSetName: - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/cecf1f20-1ecf-4d33-b52c-845586689689?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/f01d8bf6-1a33-4d65-b3e8-8b31b686fff1?api-version=2018-06-01 response: body: - string: '{"name":"cecf1f20-1ecf-4d33-b52c-845586689689","status":"Succeeded","startTime":"2019-03-20T01:22:10.393Z"}' + string: '{"name":"f01d8bf6-1a33-4d65-b3e8-8b31b686fff1","status":"Succeeded","startTime":"2020-03-03T02:33:18.733Z"}' headers: cache-control: - no-cache @@ -885,7 +833,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:23:11 GMT + - Tue, 03 Mar 2020 02:34:19 GMT expires: - '-1' pragma: @@ -917,22 +865,22 @@ interactions: ParameterSetName: - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003?api-version=2018-06-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2019-03-20T01:28:53.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.73+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","infrastructureEncryption":"Enabled","privateEndpointConnections":[]},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' headers: cache-control: - no-cache content-length: - - '970' + - '1107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:23:12 GMT + - Tue, 03 Mar 2020 02:34:19 GMT expires: - '-1' pragma: @@ -964,24 +912,24 @@ interactions: ParameterSetName: - -g --name --ssl-enforcement User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003?api-version=2018-06-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2019-03-20T01:28:53.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.73+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","infrastructureEncryption":"Enabled","privateEndpointConnections":[]},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' headers: cache-control: - no-cache content-length: - - '970' + - '1107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:23:12 GMT + - Tue, 03 Mar 2020 02:34:19 GMT expires: - '-1' pragma: @@ -1001,7 +949,8 @@ interactions: message: OK - request: body: '{"properties": {"storageProfile": {"backupRetentionDays": 10, "geoRedundantBackup": - "Enabled", "storageMB": 5120}, "sslEnforcement": "Enabled"}}' + "Enabled", "storageMB": 5120, "storageAutogrow": "Enabled"}, "sslEnforcement": + "Enabled"}}' headers: Accept: - application/json @@ -1012,24 +961,24 @@ interactions: Connection: - keep-alive Content-Length: - - '144' + - '174' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g --name --ssl-enforcement User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003?api-version=2018-06-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2019-03-20T01:23:14.887Z"}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-03T02:34:20.923Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/455f9f47-f8dc-462b-ac97-508d7b1f3503?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/692e4a5a-dba8-4f59-b00a-050954e99b87?api-version=2018-06-01 cache-control: - no-cache content-length: @@ -1037,11 +986,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:23:14 GMT + - Tue, 03 Mar 2020 02:34:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/operationResults/455f9f47-f8dc-462b-ac97-508d7b1f3503?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/692e4a5a-dba8-4f59-b00a-050954e99b87?api-version=2018-06-01 pragma: - no-cache server: @@ -1051,7 +1000,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 202 message: Accepted @@ -1069,13 +1018,13 @@ interactions: ParameterSetName: - -g --name --ssl-enforcement User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/455f9f47-f8dc-462b-ac97-508d7b1f3503?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/692e4a5a-dba8-4f59-b00a-050954e99b87?api-version=2018-06-01 response: body: - string: '{"name":"455f9f47-f8dc-462b-ac97-508d7b1f3503","status":"Succeeded","startTime":"2019-03-20T01:23:14.887Z"}' + string: '{"name":"692e4a5a-dba8-4f59-b00a-050954e99b87","status":"Succeeded","startTime":"2020-03-03T02:34:20.923Z"}' headers: cache-control: - no-cache @@ -1084,7 +1033,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:24:15 GMT + - Tue, 03 Mar 2020 02:35:20 GMT expires: - '-1' pragma: @@ -1116,22 +1065,22 @@ interactions: ParameterSetName: - -g --name --ssl-enforcement User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003?api-version=2018-06-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2019-03-20T01:28:53.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.73+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","infrastructureEncryption":"Enabled","privateEndpointConnections":[]},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' headers: cache-control: - no-cache content-length: - - '969' + - '1106' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:24:16 GMT + - Tue, 03 Mar 2020 02:35:20 GMT expires: - '-1' pragma: @@ -1163,24 +1112,24 @@ interactions: ParameterSetName: - -g --name --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003?api-version=2018-06-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2019-03-20T01:28:53.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.73+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","infrastructureEncryption":"Enabled","privateEndpointConnections":[]},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' headers: cache-control: - no-cache content-length: - - '969' + - '1106' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:24:17 GMT + - Tue, 03 Mar 2020 02:35:22 GMT expires: - '-1' pragma: @@ -1200,7 +1149,8 @@ interactions: message: OK - request: body: '{"properties": {"storageProfile": {"backupRetentionDays": 10, "geoRedundantBackup": - "Enabled", "storageMB": 5120}}, "tags": {"key": "3"}}' + "Enabled", "storageMB": 5120, "storageAutogrow": "Enabled"}}, "tags": {"key": + "3"}}' headers: Accept: - application/json @@ -1211,36 +1161,36 @@ interactions: Connection: - keep-alive Content-Length: - - '137' + - '167' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g --name --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003?api-version=2018-06-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2019-03-20T01:24:19.193Z"}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-03T02:35:23.41Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/6889dcbe-cf20-4786-a4ef-4bdce6c43b17?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e4378532-0224-4e87-8910-fa8e04132735?api-version=2018-06-01 cache-control: - no-cache content-length: - - '74' + - '73' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:24:18 GMT + - Tue, 03 Mar 2020 02:35:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/operationResults/6889dcbe-cf20-4786-a4ef-4bdce6c43b17?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/e4378532-0224-4e87-8910-fa8e04132735?api-version=2018-06-01 pragma: - no-cache server: @@ -1250,7 +1200,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -1268,22 +1218,22 @@ interactions: ParameterSetName: - -g --name --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/6889dcbe-cf20-4786-a4ef-4bdce6c43b17?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e4378532-0224-4e87-8910-fa8e04132735?api-version=2018-06-01 response: body: - string: '{"name":"6889dcbe-cf20-4786-a4ef-4bdce6c43b17","status":"Succeeded","startTime":"2019-03-20T01:24:19.193Z"}' + string: '{"name":"e4378532-0224-4e87-8910-fa8e04132735","status":"Succeeded","startTime":"2020-03-03T02:35:23.41Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '106' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:25:19 GMT + - Tue, 03 Mar 2020 02:36:24 GMT expires: - '-1' pragma: @@ -1315,22 +1265,22 @@ interactions: ParameterSetName: - -g --name --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003?api-version=2018-06-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2019-03-20T01:28:53.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.73+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","infrastructureEncryption":"Enabled","privateEndpointConnections":[]},"location":"eastus","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' headers: cache-control: - no-cache content-length: - - '969' + - '1106' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:25:20 GMT + - Tue, 03 Mar 2020 02:36:24 GMT expires: - '-1' pragma: @@ -1362,24 +1312,24 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003?api-version=2018-06-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2019-03-20T01:28:53.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.73+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","infrastructureEncryption":"Enabled","privateEndpointConnections":[]},"location":"eastus","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' headers: cache-control: - no-cache content-length: - - '969' + - '1106' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:30:22 GMT + - Tue, 03 Mar 2020 02:41:24 GMT expires: - '-1' pragma: @@ -1398,9 +1348,9 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"properties": {"createMode": "PointInTimeRestore", "sourceServerId": + body: 'b''{"properties": {"createMode": "PointInTimeRestore", "sourceServerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003", - "restorePointInTime": "2019-03-20T01:30:21.493088Z"}, "location": "koreasouth"}\''''' + "restorePointInTime": "2020-03-03T02:41:24.403131Z"}, "location": "eastus"}''' headers: Accept: - application/json @@ -1411,36 +1361,36 @@ interactions: Connection: - keep-alive Content-Length: - - '400' + - '396' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMariaDB/servers/azuredbclirestore000004?api-version=2018-06-01 response: body: - string: '{"operation":"RestoreElasticServer","startTime":"2019-03-20T01:30:23.487Z"}' + string: '{"operation":"RestoreElasticServer","startTime":"2020-03-03T02:41:25.47Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 cache-control: - no-cache content-length: - - '75' + - '74' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:30:23 GMT + - Tue, 03 Mar 2020 02:41:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/operationResults/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 pragma: - no-cache server: @@ -1450,7 +1400,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 202 message: Accepted @@ -1468,22 +1418,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 response: body: - string: '{"name":"17fc30ef-4a55-46a7-a86c-4b4ed86484f8","status":"InProgress","startTime":"2019-03-20T01:30:23.487Z"}' + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:30:34 GMT + - Tue, 03 Mar 2020 02:41:35 GMT expires: - '-1' pragma: @@ -1515,22 +1465,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 response: body: - string: '{"name":"17fc30ef-4a55-46a7-a86c-4b4ed86484f8","status":"InProgress","startTime":"2019-03-20T01:30:23.487Z"}' + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:30:45 GMT + - Tue, 03 Mar 2020 02:41:45 GMT expires: - '-1' pragma: @@ -1562,22 +1512,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 response: body: - string: '{"name":"17fc30ef-4a55-46a7-a86c-4b4ed86484f8","status":"InProgress","startTime":"2019-03-20T01:30:23.487Z"}' + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:30:55 GMT + - Tue, 03 Mar 2020 02:41:55 GMT expires: - '-1' pragma: @@ -1609,22 +1559,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 response: body: - string: '{"name":"17fc30ef-4a55-46a7-a86c-4b4ed86484f8","status":"InProgress","startTime":"2019-03-20T01:30:23.487Z"}' + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:31:06 GMT + - Tue, 03 Mar 2020 02:42:06 GMT expires: - '-1' pragma: @@ -1656,22 +1606,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 response: body: - string: '{"name":"17fc30ef-4a55-46a7-a86c-4b4ed86484f8","status":"InProgress","startTime":"2019-03-20T01:30:23.487Z"}' + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:31:17 GMT + - Tue, 03 Mar 2020 02:42:16 GMT expires: - '-1' pragma: @@ -1703,22 +1653,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 response: body: - string: '{"name":"17fc30ef-4a55-46a7-a86c-4b4ed86484f8","status":"InProgress","startTime":"2019-03-20T01:30:23.487Z"}' + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:31:28 GMT + - Tue, 03 Mar 2020 02:42:26 GMT expires: - '-1' pragma: @@ -1750,22 +1700,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 response: body: - string: '{"name":"17fc30ef-4a55-46a7-a86c-4b4ed86484f8","status":"InProgress","startTime":"2019-03-20T01:30:23.487Z"}' + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:31:39 GMT + - Tue, 03 Mar 2020 02:42:36 GMT expires: - '-1' pragma: @@ -1797,22 +1747,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 response: body: - string: '{"name":"17fc30ef-4a55-46a7-a86c-4b4ed86484f8","status":"InProgress","startTime":"2019-03-20T01:30:23.487Z"}' + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:31:50 GMT + - Tue, 03 Mar 2020 02:42:46 GMT expires: - '-1' pragma: @@ -1844,22 +1794,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 response: body: - string: '{"name":"17fc30ef-4a55-46a7-a86c-4b4ed86484f8","status":"InProgress","startTime":"2019-03-20T01:30:23.487Z"}' + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:32:01 GMT + - Tue, 03 Mar 2020 02:42:56 GMT expires: - '-1' pragma: @@ -1891,22 +1841,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 response: body: - string: '{"name":"17fc30ef-4a55-46a7-a86c-4b4ed86484f8","status":"InProgress","startTime":"2019-03-20T01:30:23.487Z"}' + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:32:11 GMT + - Tue, 03 Mar 2020 02:43:06 GMT expires: - '-1' pragma: @@ -1938,22 +1888,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 response: body: - string: '{"name":"17fc30ef-4a55-46a7-a86c-4b4ed86484f8","status":"InProgress","startTime":"2019-03-20T01:30:23.487Z"}' + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:32:22 GMT + - Tue, 03 Mar 2020 02:43:16 GMT expires: - '-1' pragma: @@ -1985,22 +1935,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 response: body: - string: '{"name":"17fc30ef-4a55-46a7-a86c-4b4ed86484f8","status":"InProgress","startTime":"2019-03-20T01:30:23.487Z"}' + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:32:33 GMT + - Tue, 03 Mar 2020 02:43:26 GMT expires: - '-1' pragma: @@ -2032,22 +1982,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 response: body: - string: '{"name":"17fc30ef-4a55-46a7-a86c-4b4ed86484f8","status":"InProgress","startTime":"2019-03-20T01:30:23.487Z"}' + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:32:43 GMT + - Tue, 03 Mar 2020 02:43:37 GMT expires: - '-1' pragma: @@ -2079,22 +2029,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 response: body: - string: '{"name":"17fc30ef-4a55-46a7-a86c-4b4ed86484f8","status":"InProgress","startTime":"2019-03-20T01:30:23.487Z"}' + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:32:54 GMT + - Tue, 03 Mar 2020 02:43:47 GMT expires: - '-1' pragma: @@ -2126,22 +2076,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 response: body: - string: '{"name":"17fc30ef-4a55-46a7-a86c-4b4ed86484f8","status":"InProgress","startTime":"2019-03-20T01:30:23.487Z"}' + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:33:05 GMT + - Tue, 03 Mar 2020 02:43:57 GMT expires: - '-1' pragma: @@ -2173,22 +2123,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 response: body: - string: '{"name":"17fc30ef-4a55-46a7-a86c-4b4ed86484f8","status":"InProgress","startTime":"2019-03-20T01:30:23.487Z"}' + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:33:16 GMT + - Tue, 03 Mar 2020 02:44:07 GMT expires: - '-1' pragma: @@ -2220,22 +2170,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 response: body: - string: '{"name":"17fc30ef-4a55-46a7-a86c-4b4ed86484f8","status":"InProgress","startTime":"2019-03-20T01:30:23.487Z"}' + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:33:27 GMT + - Tue, 03 Mar 2020 02:44:18 GMT expires: - '-1' pragma: @@ -2267,22 +2217,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 response: body: - string: '{"name":"17fc30ef-4a55-46a7-a86c-4b4ed86484f8","status":"InProgress","startTime":"2019-03-20T01:30:23.487Z"}' + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:33:38 GMT + - Tue, 03 Mar 2020 02:44:28 GMT expires: - '-1' pragma: @@ -2314,22 +2264,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 response: body: - string: '{"name":"17fc30ef-4a55-46a7-a86c-4b4ed86484f8","status":"InProgress","startTime":"2019-03-20T01:30:23.487Z"}' + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:33:49 GMT + - Tue, 03 Mar 2020 02:44:38 GMT expires: - '-1' pragma: @@ -2361,22 +2311,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 response: body: - string: '{"name":"17fc30ef-4a55-46a7-a86c-4b4ed86484f8","status":"InProgress","startTime":"2019-03-20T01:30:23.487Z"}' + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:33:59 GMT + - Tue, 03 Mar 2020 02:44:48 GMT expires: - '-1' pragma: @@ -2408,22 +2358,69 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 response: body: - string: '{"name":"17fc30ef-4a55-46a7-a86c-4b4ed86484f8","status":"InProgress","startTime":"2019-03-20T01:30:23.487Z"}' + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Mar 2020 02:44: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: + - mariadb server restore + Connection: + - keep-alive + ParameterSetName: + - -g --name --source-server --restore-point-in-time + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 + response: + body: + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:34:10 GMT + - Tue, 03 Mar 2020 02:45:08 GMT expires: - '-1' pragma: @@ -2455,13 +2452,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/17fc30ef-4a55-46a7-a86c-4b4ed86484f8?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 response: body: - string: '{"name":"17fc30ef-4a55-46a7-a86c-4b4ed86484f8","status":"Succeeded","startTime":"2019-03-20T01:30:23.487Z"}' + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' headers: cache-control: - no-cache @@ -2470,7 +2467,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:34:22 GMT + - Tue, 03 Mar 2020 02:45:18 GMT expires: - '-1' pragma: @@ -2502,22 +2499,163 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 + response: + body: + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Mar 2020 02:45: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: + - mariadb server restore + Connection: + - keep-alive + ParameterSetName: + - -g --name --source-server --restore-point-in-time + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 + response: + body: + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"InProgress","startTime":"2020-03-03T02:41:25.47Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Mar 2020 02:45:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - mariadb server restore + Connection: + - keep-alive + ParameterSetName: + - -g --name --source-server --restore-point-in-time + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/1c89d8b6-7ed2-4b5e-99e6-c8705310c019?api-version=2018-06-01 + response: + body: + string: '{"name":"1c89d8b6-7ed2-4b5e-99e6-c8705310c019","status":"Succeeded","startTime":"2020-03-03T02:41:25.47Z"}' + headers: + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Mar 2020 02:45: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: + - mariadb server restore + Connection: + - keep-alive + ParameterSetName: + - -g --name --source-server --restore-point-in-time + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMariaDB/servers/azuredbclirestore000004?api-version=2018-06-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.mariadb.database.azure.com","earliestRestoreDate":"2019-03-20T01:40:23.767+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMariaDB/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforMariaDB/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.mariadb.database.azure.com","earliestRestoreDate":"2020-03-03T02:51:25.89+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","infrastructureEncryption":"Enabled","privateEndpointConnections":[]},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMariaDB/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforMariaDB/servers"}' headers: cache-control: - no-cache content-length: - - '950' + - '1087' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:34:23 GMT + - Tue, 03 Mar 2020 02:45:49 GMT expires: - '-1' pragma: @@ -2549,24 +2687,24 @@ interactions: ParameterSetName: - -g --name --source-server -l --geo-redundant-backup --backup-retention User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003?api-version=2018-06-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2019-03-20T01:28:53.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.73+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","infrastructureEncryption":"Enabled","privateEndpointConnections":[]},"location":"eastus","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"}' headers: cache-control: - no-cache content-length: - - '969' + - '1106' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:34:25 GMT + - Tue, 03 Mar 2020 02:45:51 GMT expires: - '-1' pragma: @@ -2585,10 +2723,10 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"sku": {"name": "GP_Gen5_2"}, "properties": {"storageProfile": - {"backupRetentionDays": 20, "geoRedundantBackup": "Disabled"}, "createMode": - "GeoRestore", "sourceServerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003"}, - "location": "koreasouth"}\''''' + body: 'b''{"sku": {"name": "GP_Gen5_2"}, "properties": {"storageProfile": {"backupRetentionDays": + 20, "geoRedundantBackup": "Disabled"}, "createMode": "GeoRestore", "sourceServerId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003"}, + "location": "eastus"}''' headers: Accept: - application/json @@ -2599,36 +2737,36 @@ interactions: Connection: - keep-alive Content-Length: - - '450' + - '446' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g --name --source-server -l --geo-redundant-backup --backup-retention User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMariaDB/servers/azuredbcligeorestore000005?api-version=2018-06-01 response: body: - string: '{"operation":"RestoreElasticServer","startTime":"2019-03-20T01:34:26.89Z"}' + string: '{"operation":"RestoreElasticServer","startTime":"2020-03-03T02:45:51.993Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/9ddf5ee8-a18f-493b-b710-f87e1de13ee8?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9eb1f112-fcc1-4257-a62e-96d83588263e?api-version=2018-06-01 cache-control: - no-cache content-length: - - '74' + - '75' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:34:26 GMT + - Tue, 03 Mar 2020 02:45:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/operationResults/9ddf5ee8-a18f-493b-b710-f87e1de13ee8?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/9eb1f112-fcc1-4257-a62e-96d83588263e?api-version=2018-06-01 pragma: - no-cache server: @@ -2638,7 +2776,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -2656,23 +2794,23 @@ interactions: ParameterSetName: - -g --name --source-server -l --geo-redundant-backup --backup-retention User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/9ddf5ee8-a18f-493b-b710-f87e1de13ee8?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9eb1f112-fcc1-4257-a62e-96d83588263e?api-version=2018-06-01 response: body: - string: '{"name":"9ddf5ee8-a18f-493b-b710-f87e1de13ee8","status":"Failed","startTime":"2019-03-20T01:34:26.89Z","error":{"code":"SubscriptionDoesNotHaveServer","message":"Subscription - ''8403da61-2731-4c0e-a00c-1ecd41e0d247'' does not have the server ''azuredbclitest000003''."}}' + string: '{"name":"9eb1f112-fcc1-4257-a62e-96d83588263e","status":"Failed","startTime":"2020-03-03T02:45:51.993Z","error":{"code":"SubscriptionDoesNotHaveServer","message":"Subscription + ''cb33edf0-f7b3-405b-a766-592dd69a1987'' does not have the server ''azuredbclitest000003''."}}' headers: cache-control: - no-cache content-length: - - '308' + - '309' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:34:36 GMT + - Tue, 03 Mar 2020 02:46:02 GMT expires: - '-1' pragma: @@ -2704,24 +2842,24 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMariaDB/servers?api-version=2018-06-01 response: body: - string: '{"value":[{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.mariadb.database.azure.com","earliestRestoreDate":"2019-03-20T01:40:23.767+00:00","replicationRole":"","masterServerId":""},"location":"koreasouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMariaDB/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforMariaDB/servers"}]}' + string: '{"value":[{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.mariadb.database.azure.com","earliestRestoreDate":"2020-03-03T02:51:25.89+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","infrastructureEncryption":"Enabled","privateEndpointConnections":[]},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMariaDB/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforMariaDB/servers"}]}' headers: cache-control: - no-cache content-length: - - '938' + - '1075' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:34:38 GMT + - Tue, 03 Mar 2020 02:46:03 GMT expires: - '-1' pragma: @@ -2751,24 +2889,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/servers?api-version=2018-06-01 response: body: - string: '{"value":[{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"shinim","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"orcasdevelopermariadb1.mariadb.database.azure.com","earliestRestoreDate":"2019-03-13T01:34:39.4360614+00:00","replicationRole":"","masterServerId":""},"location":"canadacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/orcasql/providers/Microsoft.DBforMariaDB/servers/orcasdevelopermariadb1","name":"orcasdevelopermariadb1","type":"Microsoft.DBforMariaDB/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"pgadmin","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"mriadbtestui.mariadb.database.azure.com","earliestRestoreDate":"2019-03-13T01:34:39.3732483+00:00","replicationRole":"","masterServerId":""},"location":"centralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TESTRG/providers/Microsoft.DBforMariaDB/servers/mriadbtestui","name":"mriadbtestui","type":"Microsoft.DBforMariaDB/servers"},{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"mysqlaas","storageProfile":{"storageMB":51200,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"etlieus102bgen5.mariadb.database.azure.com","earliestRestoreDate":"2019-03-13T01:34:39.4541696+00:00","replicationRole":"","masterServerId":""},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/etlieus/providers/Microsoft.DBforMariaDB/servers/etlieus102bgen5","name":"etlieus102bgen5","type":"Microsoft.DBforMariaDB/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"mysqlaas","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"etlieus102ggen5.mariadb.database.azure.com","earliestRestoreDate":"2019-03-13T01:34:39.4541696+00:00","replicationRole":"","masterServerId":""},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/etlixe/providers/Microsoft.DBforMariaDB/servers/etlieus102ggen5","name":"etlieus102ggen5","type":"Microsoft.DBforMariaDB/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"prkint","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"prkintmariadb.mariadb.database.azure.com","earliestRestoreDate":"2019-03-13T01:34:39.4541696+00:00","replicationRole":"","masterServerId":""},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prkintresourcegroup/providers/Microsoft.DBforMariaDB/servers/prkintmariadb","name":"prkintmariadb","type":"Microsoft.DBforMariaDB/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2019-03-20T01:28:53.997+00:00","replicationRole":"","masterServerId":""},"location":"koreasouth","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.mariadb.database.azure.com","earliestRestoreDate":"2019-03-20T01:40:23.767+00:00","replicationRole":"","masterServerId":""},"location":"koreasouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMariaDB/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforMariaDB/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"prkint","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10.2","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"prkintneserver.mariadb.database.azure.com","earliestRestoreDate":"2019-03-13T01:34:39.6771922+00:00","replicationRole":"","masterServerId":""},"location":"northeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prkintresourcegroup/providers/Microsoft.DBforMariaDB/servers/prkintneserver","name":"prkintneserver","type":"Microsoft.DBforMariaDB/servers"}]}' + string: '{"value":[{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"azureuser","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"rammariapec.mariadb.database.azure.com","earliestRestoreDate":"2020-02-25T02:46:04.7595347+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","infrastructureEncryption":"Enabled","privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ramp3/providers/Microsoft.DBforMariaDB/servers/rammariapec/privateEndpointConnections/mariadbpep-9e4dfcc5-b7ed-4b42-9c67-e1c029d3530a","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ramp3/providers/Microsoft.Network/privateEndpoints/mariadbpep/privateLinkServiceConnections/mariadbpep"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Ready"}}]},"location":"australiaeast","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ramp3/providers/Microsoft.DBforMariaDB/servers/rammariapec","name":"rammariapec","type":"Microsoft.DBforMariaDB/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mariadb.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.73+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","infrastructureEncryption":"Enabled","privateEndpointConnections":[]},"location":"eastus","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMariaDB/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"10.2","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.mariadb.database.azure.com","earliestRestoreDate":"2020-03-03T02:51:25.89+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","infrastructureEncryption":"Enabled","privateEndpointConnections":[]},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMariaDB/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforMariaDB/servers"}]}' headers: cache-control: - no-cache content-length: - - '6213' + - '3584' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:34:39 GMT + - Tue, 03 Mar 2020 02:46:04 GMT expires: - '-1' pragma: @@ -2780,11 +2918,8 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - e24c19c6-d83a-4958-b07c-318d52144b35 - - 2da78df6-9382-4c1b-bfd3-c7cb2f3d2fef - - e2659b63-e9ee-4b24-8fbe-610cadb11f72 - - 15d1fc0f-e8de-4571-881c-cfe8d8a79564 - - aeaaf151-8796-4d97-9379-be42c44b862f + - e2c38f79-115a-41ab-ab73-441428edc443 + - 4de6ca49-d02c-45e4-b90f-dc16db3f7737 status: code: 200 message: OK @@ -2804,18 +2939,18 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMariaDB/servers/azuredbclitest000003?api-version=2018-06-01 response: body: - string: '{"operation":"DropElasticServer","startTime":"2019-03-20T01:34:40.807Z"}' + string: '{"operation":"DropElasticServer","startTime":"2020-03-03T02:46:05.633Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/4fda28f0-04db-47c1-b87a-884b43c267b4?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/fb710a53-7b6f-4c35-b319-7d39e9ee3b0d?api-version=2018-06-01 cache-control: - no-cache content-length: @@ -2823,11 +2958,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:34:40 GMT + - Tue, 03 Mar 2020 02:46:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/operationResults/4fda28f0-04db-47c1-b87a-884b43c267b4?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/fb710a53-7b6f-4c35-b319-7d39e9ee3b0d?api-version=2018-06-01 pragma: - no-cache server: @@ -2855,13 +2990,13 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/4fda28f0-04db-47c1-b87a-884b43c267b4?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/fb710a53-7b6f-4c35-b319-7d39e9ee3b0d?api-version=2018-06-01 response: body: - string: '{"name":"4fda28f0-04db-47c1-b87a-884b43c267b4","status":"Succeeded","startTime":"2019-03-20T01:34:40.807Z"}' + string: '{"name":"fb710a53-7b6f-4c35-b319-7d39e9ee3b0d","status":"Succeeded","startTime":"2020-03-03T02:46:05.633Z"}' headers: cache-control: - no-cache @@ -2870,7 +3005,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:34:56 GMT + - Tue, 03 Mar 2020 02:46:20 GMT expires: - '-1' pragma: @@ -2904,30 +3039,30 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMariaDB/servers/azuredbclirestore000004?api-version=2018-06-01 response: body: - string: '{"operation":"DropElasticServer","startTime":"2019-03-20T01:34:57.82Z"}' + string: '{"operation":"DropElasticServer","startTime":"2020-03-03T02:46:22.467Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/f5ab41f1-927c-4d0a-9b94-d4ea31107d39?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/0ab903e3-376b-41b6-95a5-e1ba86207fa3?api-version=2018-06-01 cache-control: - no-cache content-length: - - '71' + - '72' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:34:57 GMT + - Tue, 03 Mar 2020 02:46:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/operationResults/f5ab41f1-927c-4d0a-9b94-d4ea31107d39?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/0ab903e3-376b-41b6-95a5-e1ba86207fa3?api-version=2018-06-01 pragma: - no-cache server: @@ -2937,7 +3072,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -2955,22 +3090,22 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/koreasouth/azureAsyncOperation/f5ab41f1-927c-4d0a-9b94-d4ea31107d39?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/0ab903e3-376b-41b6-95a5-e1ba86207fa3?api-version=2018-06-01 response: body: - string: '{"name":"f5ab41f1-927c-4d0a-9b94-d4ea31107d39","status":"Succeeded","startTime":"2019-03-20T01:34:57.82Z"}' + string: '{"name":"0ab903e3-376b-41b6-95a5-e1ba86207fa3","status":"Succeeded","startTime":"2020-03-03T02:46:22.467Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:35:13 GMT + - Tue, 03 Mar 2020 02:46:37 GMT expires: - '-1' pragma: @@ -3002,8 +3137,8 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -3019,7 +3154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:35:13 GMT + - Tue, 03 Mar 2020 02:46:38 GMT expires: - '-1' pragma: @@ -3047,8 +3182,8 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2018-06-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -3064,7 +3199,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 01:35:15 GMT + - Tue, 03 Mar 2020 02:46:39 GMT expires: - '-1' pragma: @@ -3082,98 +3217,4 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.60 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000002?api-version=2019-07-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 20 Mar 2019 01:35:15 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdRUVJJUUpUVURUWlNVUzJIWE8zRk9ZRjVaRExTR0hQQ1JYNXwwRkEyOTYwQjkwNTgxQUI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-07-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.60 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 20 Mar 2019 01:35:16 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdDN0JCRU0zVkxLSTNRRlpFRktYRUVWR1BNNEJFU1IzREdZV3wwQTFFMTE2RUY4NkQ0OThCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-07-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_mysql_proxy_resources_mgmt.yaml b/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_mysql_proxy_resources_mgmt.yaml index 8f335e60d8e..4414264ffb6 100644 --- a/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_mysql_proxy_resources_mgmt.yaml +++ b/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_mysql_proxy_resources_mgmt.yaml @@ -19,18 +19,18 @@ interactions: ParameterSetName: - -l -g -n -u -p --sku-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2020-02-07T19:04:59.197Z"}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-04T18:25:19.683Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/55244b6c-2810-43ee-9609-acefd5a7856d?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a4984196-0869-4b2b-8a45-027bb4b0783b?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -38,11 +38,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:04:58 GMT + - Wed, 04 Mar 2020 18:25:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/55244b6c-2810-43ee-9609-acefd5a7856d?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a4984196-0869-4b2b-8a45-027bb4b0783b?api-version=2017-12-01 pragma: - no-cache server: @@ -70,13 +70,13 @@ interactions: ParameterSetName: - -l -g -n -u -p --sku-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/55244b6c-2810-43ee-9609-acefd5a7856d?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a4984196-0869-4b2b-8a45-027bb4b0783b?api-version=2017-12-01 response: body: - string: '{"name":"55244b6c-2810-43ee-9609-acefd5a7856d","status":"InProgress","startTime":"2020-02-07T19:04:59.197Z"}' + string: '{"name":"a4984196-0869-4b2b-8a45-027bb4b0783b","status":"InProgress","startTime":"2020-03-04T18:25:19.683Z"}' headers: cache-control: - no-cache @@ -85,7 +85,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:06:00 GMT + - Wed, 04 Mar 2020 18:26:19 GMT expires: - '-1' pragma: @@ -117,13 +117,13 @@ interactions: ParameterSetName: - -l -g -n -u -p --sku-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/55244b6c-2810-43ee-9609-acefd5a7856d?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a4984196-0869-4b2b-8a45-027bb4b0783b?api-version=2017-12-01 response: body: - string: '{"name":"55244b6c-2810-43ee-9609-acefd5a7856d","status":"Succeeded","startTime":"2020-02-07T19:04:59.197Z"}' + string: '{"name":"a4984196-0869-4b2b-8a45-027bb4b0783b","status":"Succeeded","startTime":"2020-03-04T18:25:19.683Z"}' headers: cache-control: - no-cache @@ -132,7 +132,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:07:02 GMT + - Wed, 04 Mar 2020 18:27:20 GMT expires: - '-1' pragma: @@ -164,22 +164,22 @@ interactions: ParameterSetName: - -l -g -n -u -p --sku-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.mysql.database.azure.com","earliestRestoreDate":"2020-02-07T19:14:59.51+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforMySQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.mysql.database.azure.com","earliestRestoreDate":"2020-03-04T18:35:20.137+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '966' + - '1081' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:07:04 GMT + - Wed, 04 Mar 2020 18:27:20 GMT expires: - '-1' pragma: @@ -215,30 +215,30 @@ interactions: ParameterSetName: - -n -g -s --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-02-07T19:07:07.683Z"}' + string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-03-04T18:27:21.7Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/dd167095-ce8f-4e8f-a35d-e95dd29130c3?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/1a84cf38-005a-48f5-b9ef-1596920eb419?api-version=2017-12-01 cache-control: - no-cache content-length: - - '87' + - '85' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:07:07 GMT + - Wed, 04 Mar 2020 18:27:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/dd167095-ce8f-4e8f-a35d-e95dd29130c3?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/1a84cf38-005a-48f5-b9ef-1596920eb419?api-version=2017-12-01 pragma: - no-cache server: @@ -248,7 +248,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 202 message: Accepted @@ -266,22 +266,22 @@ interactions: ParameterSetName: - -n -g -s --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/dd167095-ce8f-4e8f-a35d-e95dd29130c3?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/1a84cf38-005a-48f5-b9ef-1596920eb419?api-version=2017-12-01 response: body: - string: '{"name":"dd167095-ce8f-4e8f-a35d-e95dd29130c3","status":"Succeeded","startTime":"2020-02-07T19:07:07.683Z"}' + string: '{"name":"1a84cf38-005a-48f5-b9ef-1596920eb419","status":"Succeeded","startTime":"2020-03-04T18:27:21.7Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '105' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:07:24 GMT + - Wed, 04 Mar 2020 18:27:36 GMT expires: - '-1' pragma: @@ -313,8 +313,8 @@ interactions: ParameterSetName: - -n -g -s --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: @@ -328,7 +328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:07:27 GMT + - Wed, 04 Mar 2020 18:27:36 GMT expires: - '-1' pragma: @@ -360,8 +360,8 @@ interactions: ParameterSetName: - --name -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -377,7 +377,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:07:30 GMT + - Wed, 04 Mar 2020 18:27:38 GMT expires: - '-1' pragma: @@ -409,8 +409,8 @@ interactions: ParameterSetName: - -n -g -s --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -426,7 +426,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:07:33 GMT + - Wed, 04 Mar 2020 18:27:38 GMT expires: - '-1' pragma: @@ -462,30 +462,30 @@ interactions: ParameterSetName: - -n -g -s --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-02-07T19:07:35.01Z"}' + string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-03-04T18:27:39.903Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e3d21a11-b166-43fa-9358-2c8cc4bf89d3?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/10d1c9f6-4213-4d70-9248-b86d1c03a111?api-version=2017-12-01 cache-control: - no-cache content-length: - - '86' + - '87' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:07:34 GMT + - Wed, 04 Mar 2020 18:27:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/e3d21a11-b166-43fa-9358-2c8cc4bf89d3?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/10d1c9f6-4213-4d70-9248-b86d1c03a111?api-version=2017-12-01 pragma: - no-cache server: @@ -495,7 +495,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 202 message: Accepted @@ -513,22 +513,22 @@ interactions: ParameterSetName: - -n -g -s --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e3d21a11-b166-43fa-9358-2c8cc4bf89d3?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/10d1c9f6-4213-4d70-9248-b86d1c03a111?api-version=2017-12-01 response: body: - string: '{"name":"e3d21a11-b166-43fa-9358-2c8cc4bf89d3","status":"Succeeded","startTime":"2020-02-07T19:07:35.01Z"}' + string: '{"name":"10d1c9f6-4213-4d70-9248-b86d1c03a111","status":"Succeeded","startTime":"2020-03-04T18:27:39.903Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:07:50 GMT + - Wed, 04 Mar 2020 18:27:54 GMT expires: - '-1' pragma: @@ -560,8 +560,8 @@ interactions: ParameterSetName: - -n -g -s --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: @@ -575,7 +575,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:07:53 GMT + - Wed, 04 Mar 2020 18:27:54 GMT expires: - '-1' pragma: @@ -607,8 +607,8 @@ interactions: ParameterSetName: - --name -g --server --start-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -624,7 +624,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:07:57 GMT + - Wed, 04 Mar 2020 18:27:55 GMT expires: - '-1' pragma: @@ -660,18 +660,18 @@ interactions: ParameterSetName: - --name -g --server --start-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-02-07T19:07:59.573Z"}' + string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-03-04T18:27:56.733Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c6dcfdd7-b0e7-4597-9584-89c9930d5348?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/b0b40309-f413-4ef4-87f0-3b0a3fe72afe?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -679,11 +679,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:07:59 GMT + - Wed, 04 Mar 2020 18:27:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/c6dcfdd7-b0e7-4597-9584-89c9930d5348?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/b0b40309-f413-4ef4-87f0-3b0a3fe72afe?api-version=2017-12-01 pragma: - no-cache server: @@ -711,13 +711,13 @@ interactions: ParameterSetName: - --name -g --server --start-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c6dcfdd7-b0e7-4597-9584-89c9930d5348?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/b0b40309-f413-4ef4-87f0-3b0a3fe72afe?api-version=2017-12-01 response: body: - string: '{"name":"c6dcfdd7-b0e7-4597-9584-89c9930d5348","status":"Succeeded","startTime":"2020-02-07T19:07:59.573Z"}' + string: '{"name":"b0b40309-f413-4ef4-87f0-3b0a3fe72afe","status":"Succeeded","startTime":"2020-03-04T18:27:56.733Z"}' headers: cache-control: - no-cache @@ -726,7 +726,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:08:16 GMT + - Wed, 04 Mar 2020 18:28:11 GMT expires: - '-1' pragma: @@ -758,8 +758,8 @@ interactions: ParameterSetName: - --name -g --server --start-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: @@ -773,7 +773,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:08:21 GMT + - Wed, 04 Mar 2020 18:28:11 GMT expires: - '-1' pragma: @@ -805,8 +805,8 @@ interactions: ParameterSetName: - -n -g -s --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -822,7 +822,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:08:22 GMT + - Wed, 04 Mar 2020 18:28:12 GMT expires: - '-1' pragma: @@ -858,30 +858,30 @@ interactions: ParameterSetName: - -n -g -s --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-02-07T19:08:25.217Z"}' + string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-03-04T18:28:13.92Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e17fd1e-7ece-4686-8f39-9007d4e24bcb?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/f8054db4-fd01-44bf-a934-c115cae28a82?api-version=2017-12-01 cache-control: - no-cache content-length: - - '87' + - '86' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:08:24 GMT + - Wed, 04 Mar 2020 18:28:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/4e17fd1e-7ece-4686-8f39-9007d4e24bcb?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/f8054db4-fd01-44bf-a934-c115cae28a82?api-version=2017-12-01 pragma: - no-cache server: @@ -891,7 +891,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -909,22 +909,22 @@ interactions: ParameterSetName: - -n -g -s --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e17fd1e-7ece-4686-8f39-9007d4e24bcb?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/f8054db4-fd01-44bf-a934-c115cae28a82?api-version=2017-12-01 response: body: - string: '{"name":"4e17fd1e-7ece-4686-8f39-9007d4e24bcb","status":"Succeeded","startTime":"2020-02-07T19:08:25.217Z"}' + string: '{"name":"f8054db4-fd01-44bf-a934-c115cae28a82","status":"Succeeded","startTime":"2020-03-04T18:28:13.92Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:08:40 GMT + - Wed, 04 Mar 2020 18:28:28 GMT expires: - '-1' pragma: @@ -956,8 +956,8 @@ interactions: ParameterSetName: - -n -g -s --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: @@ -971,7 +971,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:08:43 GMT + - Wed, 04 Mar 2020 18:28:28 GMT expires: - '-1' pragma: @@ -1007,18 +1007,18 @@ interactions: ParameterSetName: - --name -g --server --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule2?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-02-07T19:08:45.787Z"}' + string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-03-04T18:28:30.483Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d598d8fd-7bdf-4330-83ca-a1aa76ec789c?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/5af29b39-fbdc-4b76-b213-8d863a4dfd77?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -1026,11 +1026,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:08:45 GMT + - Wed, 04 Mar 2020 18:28:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/d598d8fd-7bdf-4330-83ca-a1aa76ec789c?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/5af29b39-fbdc-4b76-b213-8d863a4dfd77?api-version=2017-12-01 pragma: - no-cache server: @@ -1058,13 +1058,13 @@ interactions: ParameterSetName: - --name -g --server --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d598d8fd-7bdf-4330-83ca-a1aa76ec789c?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/5af29b39-fbdc-4b76-b213-8d863a4dfd77?api-version=2017-12-01 response: body: - string: '{"name":"d598d8fd-7bdf-4330-83ca-a1aa76ec789c","status":"Succeeded","startTime":"2020-02-07T19:08:45.787Z"}' + string: '{"name":"5af29b39-fbdc-4b76-b213-8d863a4dfd77","status":"Succeeded","startTime":"2020-03-04T18:28:30.483Z"}' headers: cache-control: - no-cache @@ -1073,7 +1073,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:09:02 GMT + - Wed, 04 Mar 2020 18:28:45 GMT expires: - '-1' pragma: @@ -1105,8 +1105,8 @@ interactions: ParameterSetName: - --name -g --server --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule2?api-version=2017-12-01 response: @@ -1120,7 +1120,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:09:04 GMT + - Wed, 04 Mar 2020 18:28:45 GMT expires: - '-1' pragma: @@ -1152,8 +1152,8 @@ interactions: ParameterSetName: - -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -1169,7 +1169,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:09:06 GMT + - Wed, 04 Mar 2020 18:28:46 GMT expires: - '-1' pragma: @@ -1203,18 +1203,18 @@ interactions: ParameterSetName: - --name -g --server --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: - string: '{"operation":"DropElasticServerFirewallRule","startTime":"2020-02-07T19:09:09.307Z"}' + string: '{"operation":"DropElasticServerFirewallRule","startTime":"2020-03-04T18:28:48.023Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2ed9c74b-22ed-452a-8e9e-3937ce73cfaa?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fa583638-cf24-47d5-82e8-24ad98d23008?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -1222,11 +1222,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:09:08 GMT + - Wed, 04 Mar 2020 18:28:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/2ed9c74b-22ed-452a-8e9e-3937ce73cfaa?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/fa583638-cf24-47d5-82e8-24ad98d23008?api-version=2017-12-01 pragma: - no-cache server: @@ -1236,7 +1236,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -1254,13 +1254,13 @@ interactions: ParameterSetName: - --name -g --server --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2ed9c74b-22ed-452a-8e9e-3937ce73cfaa?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fa583638-cf24-47d5-82e8-24ad98d23008?api-version=2017-12-01 response: body: - string: '{"name":"2ed9c74b-22ed-452a-8e9e-3937ce73cfaa","status":"Succeeded","startTime":"2020-02-07T19:09:09.307Z"}' + string: '{"name":"fa583638-cf24-47d5-82e8-24ad98d23008","status":"Succeeded","startTime":"2020-03-04T18:28:48.023Z"}' headers: cache-control: - no-cache @@ -1269,7 +1269,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:09:25 GMT + - Wed, 04 Mar 2020 18:29:03 GMT expires: - '-1' pragma: @@ -1301,8 +1301,8 @@ interactions: ParameterSetName: - -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -1318,7 +1318,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:09:29 GMT + - Wed, 04 Mar 2020 18:29:04 GMT expires: - '-1' pragma: @@ -1352,18 +1352,18 @@ interactions: ParameterSetName: - -n -g -s --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule2?api-version=2017-12-01 response: body: - string: '{"operation":"DropElasticServerFirewallRule","startTime":"2020-02-07T19:09:33.637Z"}' + string: '{"operation":"DropElasticServerFirewallRule","startTime":"2020-03-04T18:29:05.173Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/f2f49301-fecb-4306-b7a6-18d14a583257?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/49e6d164-1dc9-4584-86ff-5a161edfbeb9?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -1371,11 +1371,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:09:33 GMT + - Wed, 04 Mar 2020 18:29:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/f2f49301-fecb-4306-b7a6-18d14a583257?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/49e6d164-1dc9-4584-86ff-5a161edfbeb9?api-version=2017-12-01 pragma: - no-cache server: @@ -1385,7 +1385,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 202 message: Accepted @@ -1403,13 +1403,13 @@ interactions: ParameterSetName: - -n -g -s --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/f2f49301-fecb-4306-b7a6-18d14a583257?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/49e6d164-1dc9-4584-86ff-5a161edfbeb9?api-version=2017-12-01 response: body: - string: '{"name":"f2f49301-fecb-4306-b7a6-18d14a583257","status":"Succeeded","startTime":"2020-02-07T19:09:33.637Z"}' + string: '{"name":"49e6d164-1dc9-4584-86ff-5a161edfbeb9","status":"Succeeded","startTime":"2020-03-04T18:29:05.173Z"}' headers: cache-control: - no-cache @@ -1418,7 +1418,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:09:49 GMT + - Wed, 04 Mar 2020 18:29:20 GMT expires: - '-1' pragma: @@ -1450,8 +1450,8 @@ interactions: ParameterSetName: - -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -1467,7 +1467,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:09:52 GMT + - Wed, 04 Mar 2020 18:29:21 GMT expires: - '-1' pragma: @@ -1505,8 +1505,8 @@ interactions: ParameterSetName: - -n -g -l --address-prefix --subnet-name --subnet-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT @@ -1514,15 +1514,15 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"997ea0bc-77f9-464d-9a73-3f6b81451075\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4df89d0c-72d6-4ad5-bcaf-ac55f2be5fdf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"8b37d2b3-74da-4884-b391-303b842d06e0\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6357c331-8868-45df-a0d7-0f814cda7579\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"997ea0bc-77f9-464d-9a73-3f6b81451075\\\"\",\r\n + \ \"etag\": \"W/\\\"4df89d0c-72d6-4ad5-bcaf-ac55f2be5fdf\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1531,7 +1531,7 @@ interactions: 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/eastus/operations/05c42185-431e-4eab-a928-7d7c94224afb?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/00d3dd4c-868b-4552-ac8f-5edea04b6bfa?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -1539,7 +1539,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:09:58 GMT + - Wed, 04 Mar 2020 18:29:22 GMT expires: - '-1' pragma: @@ -1552,9 +1552,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0461292d-a7a6-4023-a0c0-0e0e88e7a6a3 + - 4ba2286b-646f-427f-9554-b098eb218279 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -1572,10 +1572,110 @@ interactions: ParameterSetName: - -n -g -l --address-prefix --subnet-name --subnet-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/00d3dd4c-868b-4552-ac8f-5edea04b6bfa?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:29:26 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: + - 6015fbaa-6618-482a-a5d8-bd4dbe395c4e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --address-prefix --subnet-name --subnet-prefix + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/00d3dd4c-868b-4552-ac8f-5edea04b6bfa?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:29:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d0dcf183-4ec0-4e17-ad28-e891658a1a7d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --address-prefix --subnet-name --subnet-prefix + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/05c42185-431e-4eab-a928-7d7c94224afb?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/00d3dd4c-868b-4552-ac8f-5edea04b6bfa?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1587,7 +1687,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:10:03 GMT + - Wed, 04 Mar 2020 18:29:46 GMT expires: - '-1' pragma: @@ -1604,7 +1704,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bc7a6112-af55-4a9d-ad2c-db62210805ea + - b6917d2a-24a1-4dd8-81b8-1709883ac662 status: code: 200 message: OK @@ -1622,22 +1722,22 @@ interactions: ParameterSetName: - -n -g -l --address-prefix --subnet-name --subnet-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet?api-version=2019-11-01 response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"a93e5ad4-23dc-4a8a-a6f6-631e35136182\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"df412e50-33ce-4c02-a80b-cea978c80884\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"8b37d2b3-74da-4884-b391-303b842d06e0\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6357c331-8868-45df-a0d7-0f814cda7579\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"a93e5ad4-23dc-4a8a-a6f6-631e35136182\\\"\",\r\n + \ \"etag\": \"W/\\\"df412e50-33ce-4c02-a80b-cea978c80884\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1652,9 +1752,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:10:03 GMT + - Wed, 04 Mar 2020 18:29:46 GMT etag: - - W/"a93e5ad4-23dc-4a8a-a6f6-631e35136182" + - W/"df412e50-33ce-4c02-a80b-cea978c80884" expires: - '-1' pragma: @@ -1671,7 +1771,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8da6bfd1-5c69-43c5-8d04-9c6242e781b8 + - 4f63cddb-fc65-48d0-b2cc-3ccb574cdb1e status: code: 200 message: OK @@ -1689,8 +1789,8 @@ interactions: ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -1698,15 +1798,15 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"a93e5ad4-23dc-4a8a-a6f6-631e35136182\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"df412e50-33ce-4c02-a80b-cea978c80884\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"8b37d2b3-74da-4884-b391-303b842d06e0\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6357c331-8868-45df-a0d7-0f814cda7579\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"a93e5ad4-23dc-4a8a-a6f6-631e35136182\\\"\",\r\n + \ \"etag\": \"W/\\\"df412e50-33ce-4c02-a80b-cea978c80884\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1721,9 +1821,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:10:05 GMT + - Wed, 04 Mar 2020 18:29:47 GMT etag: - - W/"a93e5ad4-23dc-4a8a-a6f6-631e35136182" + - W/"df412e50-33ce-4c02-a80b-cea978c80884" expires: - '-1' pragma: @@ -1740,7 +1840,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6f4ed5ae-2b05-4cbc-9cc6-6d47bce8745b + - bb049b1a-3616-4d14-b716-981402cadd06 status: code: 200 message: OK @@ -1769,8 +1869,8 @@ interactions: ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT @@ -1778,22 +1878,22 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"a12d7d9a-91cc-48bc-9ffe-c6ad84594a02\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"64ed897e-1a71-44c6-ba4a-f69d25f963f2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"8b37d2b3-74da-4884-b391-303b842d06e0\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6357c331-8868-45df-a0d7-0f814cda7579\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"a12d7d9a-91cc-48bc-9ffe-c6ad84594a02\\\"\",\r\n + \ \"etag\": \"W/\\\"64ed897e-1a71-44c6-ba4a-f69d25f963f2\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"clitestsubnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet2\",\r\n - \ \"etag\": \"W/\\\"a12d7d9a-91cc-48bc-9ffe-c6ad84594a02\\\"\",\r\n + \ \"etag\": \"W/\\\"64ed897e-1a71-44c6-ba4a-f69d25f963f2\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1802,7 +1902,7 @@ interactions: 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/eastus/operations/a047c13f-5f40-4313-a8a7-538c0a36d8ef?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8bcd1ace-d365-4792-b498-23cb0e7c785a?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -1810,7 +1910,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:10:06 GMT + - Wed, 04 Mar 2020 18:29:47 GMT expires: - '-1' pragma: @@ -1827,9 +1927,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5449b543-6c9d-4975-ace0-7e2b84ab642a + - 87c84895-f6a6-4ee9-a967-ff8d0c1e6e00 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1847,10 +1947,10 @@ interactions: ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a047c13f-5f40-4313-a8a7-538c0a36d8ef?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8bcd1ace-d365-4792-b498-23cb0e7c785a?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1862,7 +1962,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:10:11 GMT + - Wed, 04 Mar 2020 18:29:51 GMT expires: - '-1' pragma: @@ -1879,7 +1979,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 29ef639f-2a93-46e6-bb56-462c82d1ad47 + - 4be0ab2a-7e2e-4e1c-ae2b-7bde59c0d79e status: code: 200 message: OK @@ -1897,29 +1997,29 @@ interactions: ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet?api-version=2019-11-01 response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"24dd550f-8a30-4106-8386-df12f047d53b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9b98ea57-2eac-43a1-be78-ef2a1d9cbd11\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"8b37d2b3-74da-4884-b391-303b842d06e0\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6357c331-8868-45df-a0d7-0f814cda7579\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"24dd550f-8a30-4106-8386-df12f047d53b\\\"\",\r\n + \ \"etag\": \"W/\\\"9b98ea57-2eac-43a1-be78-ef2a1d9cbd11\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"clitestsubnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet2\",\r\n - \ \"etag\": \"W/\\\"24dd550f-8a30-4106-8386-df12f047d53b\\\"\",\r\n + \ \"etag\": \"W/\\\"9b98ea57-2eac-43a1-be78-ef2a1d9cbd11\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1934,9 +2034,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:10:12 GMT + - Wed, 04 Mar 2020 18:29:51 GMT etag: - - W/"24dd550f-8a30-4106-8386-df12f047d53b" + - W/"9b98ea57-2eac-43a1-be78-ef2a1d9cbd11" expires: - '-1' pragma: @@ -1953,7 +2053,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e8ebd576-51bc-4d9c-b3d2-664a1a666014 + - 6fadc141-2430-4089-b93d-df544a65dd34 status: code: 200 message: OK @@ -1976,30 +2076,30 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule1?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServerVnetFirewallRule","startTime":"2020-02-07T19:10:17.81Z"}' + string: '{"operation":"UpsertElasticServerVnetFirewallRule","startTime":"2020-03-04T18:29:52.447Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/00725c78-9736-4202-a6d0-d261383bb6d2?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/b8a7b876-6482-421d-8061-0e82a9e2f853?api-version=2017-12-01 cache-control: - no-cache content-length: - - '89' + - '90' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:10:18 GMT + - Wed, 04 Mar 2020 18:29:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/00725c78-9736-4202-a6d0-d261383bb6d2?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/b8a7b876-6482-421d-8061-0e82a9e2f853?api-version=2017-12-01 pragma: - no-cache server: @@ -2027,22 +2127,22 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/00725c78-9736-4202-a6d0-d261383bb6d2?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/b8a7b876-6482-421d-8061-0e82a9e2f853?api-version=2017-12-01 response: body: - string: '{"name":"00725c78-9736-4202-a6d0-d261383bb6d2","status":"Succeeded","startTime":"2020-02-07T19:10:17.81Z"}' + string: '{"name":"b8a7b876-6482-421d-8061-0e82a9e2f853","status":"Succeeded","startTime":"2020-03-04T18:29:52.447Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:10:50 GMT + - Wed, 04 Mar 2020 18:30:23 GMT expires: - '-1' pragma: @@ -2074,8 +2174,8 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule1?api-version=2017-12-01 response: @@ -2089,7 +2189,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:10:53 GMT + - Wed, 04 Mar 2020 18:30:23 GMT expires: - '-1' pragma: @@ -2121,8 +2221,8 @@ interactions: ParameterSetName: - -n -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -2138,7 +2238,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:10:55 GMT + - Wed, 04 Mar 2020 18:30:25 GMT expires: - '-1' pragma: @@ -2175,30 +2275,30 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule2?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServerVnetFirewallRule","startTime":"2020-02-07T19:10:56.86Z"}' + string: '{"operation":"UpsertElasticServerVnetFirewallRule","startTime":"2020-03-04T18:30:25.953Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/75cadf16-b5ae-4070-925e-efd898e334c6?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/565f1887-3a7c-4878-a4e2-4bbe8bd1faf3?api-version=2017-12-01 cache-control: - no-cache content-length: - - '89' + - '90' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:10:57 GMT + - Wed, 04 Mar 2020 18:30:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/75cadf16-b5ae-4070-925e-efd898e334c6?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/565f1887-3a7c-4878-a4e2-4bbe8bd1faf3?api-version=2017-12-01 pragma: - no-cache server: @@ -2208,7 +2308,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 202 message: Accepted @@ -2226,22 +2326,22 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/75cadf16-b5ae-4070-925e-efd898e334c6?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/565f1887-3a7c-4878-a4e2-4bbe8bd1faf3?api-version=2017-12-01 response: body: - string: '{"name":"75cadf16-b5ae-4070-925e-efd898e334c6","status":"Succeeded","startTime":"2020-02-07T19:10:56.86Z"}' + string: '{"name":"565f1887-3a7c-4878-a4e2-4bbe8bd1faf3","status":"Succeeded","startTime":"2020-03-04T18:30:25.953Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:11:31 GMT + - Wed, 04 Mar 2020 18:30:56 GMT expires: - '-1' pragma: @@ -2273,8 +2373,8 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule2?api-version=2017-12-01 response: @@ -2288,7 +2388,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:11:32 GMT + - Wed, 04 Mar 2020 18:30:56 GMT expires: - '-1' pragma: @@ -2320,8 +2420,8 @@ interactions: ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -2329,39 +2429,43 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"b6cf8ee2-5701-44f5-ae95-baf999d80c6e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c67286bd-df97-4c8d-9b13-77f5448aa3ec\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"8b37d2b3-74da-4884-b391-303b842d06e0\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6357c331-8868-45df-a0d7-0f814cda7579\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"b6cf8ee2-5701-44f5-ae95-baf999d80c6e\\\"\",\r\n + \ \"etag\": \"W/\\\"c67286bd-df97-4c8d-9b13-77f5448aa3ec\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"networkSecurityGroup\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg1\"\r\n + \ },\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": + \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"clitestsubnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet2\",\r\n - \ \"etag\": \"W/\\\"b6cf8ee2-5701-44f5-ae95-baf999d80c6e\\\"\",\r\n + \ \"etag\": \"W/\\\"c67286bd-df97-4c8d-9b13-77f5448aa3ec\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.1.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ \"addressPrefix\": \"10.0.1.0/24\",\r\n \"networkSecurityGroup\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg1\"\r\n + \ },\r\n \"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: - - '2158' + - '2612' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:11:37 GMT + - Wed, 04 Mar 2020 18:30:57 GMT etag: - - W/"b6cf8ee2-5701-44f5-ae95-baf999d80c6e" + - W/"c67286bd-df97-4c8d-9b13-77f5448aa3ec" expires: - '-1' pragma: @@ -2378,7 +2482,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3884a15d-1b30-469b-8370-a85b041d8d6c + - 244d6d2f-eb63-4f88-9550-d726fbca6a18 status: code: 200 message: OK @@ -2386,14 +2490,16 @@ interactions: body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet", "location": "eastus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1", - "properties": {"addressPrefix": "10.0.0.0/24", "delegations": [], "privateEndpointNetworkPolicies": - "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}, "name": "clitestsubnet1"}, - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet2", - "properties": {"addressPrefix": "10.0.1.0/24", "delegations": [], "privateEndpointNetworkPolicies": - "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}, "name": "clitestsubnet2"}, - {"properties": {"addressPrefix": "10.0.3.0/24"}, "name": "clitestsubnet3"}], - "virtualNetworkPeerings": [], "enableDdosProtection": false, "enableVmProtection": - false}}''' + "properties": {"addressPrefix": "10.0.0.0/24", "networkSecurityGroup": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg1"}, + "delegations": [], "privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": + "Enabled"}, "name": "clitestsubnet1"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet2", + "properties": {"addressPrefix": "10.0.1.0/24", "networkSecurityGroup": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg1"}, + "delegations": [], "privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": + "Enabled"}, "name": "clitestsubnet2"}, {"properties": {"addressPrefix": "10.0.3.0/24"}, + "name": "clitestsubnet3"}], "virtualNetworkPeerings": [], "enableDdosProtection": + false, "enableVmProtection": false}}''' headers: Accept: - application/json @@ -2404,14 +2510,14 @@ interactions: Connection: - keep-alive Content-Length: - - '1364' + - '1744' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT @@ -2419,29 +2525,33 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"3d17c7c0-4c36-456f-a974-7c01ff491ea1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d44ae28f-ffa9-43a4-9cd4-5118788cf55c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"8b37d2b3-74da-4884-b391-303b842d06e0\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6357c331-8868-45df-a0d7-0f814cda7579\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"3d17c7c0-4c36-456f-a974-7c01ff491ea1\\\"\",\r\n + \ \"etag\": \"W/\\\"d44ae28f-ffa9-43a4-9cd4-5118788cf55c\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"networkSecurityGroup\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg1\"\r\n + \ },\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": + \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"clitestsubnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet2\",\r\n - \ \"etag\": \"W/\\\"3d17c7c0-4c36-456f-a974-7c01ff491ea1\\\"\",\r\n + \ \"etag\": \"W/\\\"d44ae28f-ffa9-43a4-9cd4-5118788cf55c\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.0.1.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ \"addressPrefix\": \"10.0.1.0/24\",\r\n \"networkSecurityGroup\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg1\"\r\n + \ },\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": + \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"clitestsubnet3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet3\",\r\n - \ \"etag\": \"W/\\\"3d17c7c0-4c36-456f-a974-7c01ff491ea1\\\"\",\r\n + \ \"etag\": \"W/\\\"d44ae28f-ffa9-43a4-9cd4-5118788cf55c\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.3.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -2450,15 +2560,15 @@ interactions: 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/eastus/operations/14e5d444-589f-455f-a350-1a98267a919d?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a15bc3ea-c3e1-40bf-9101-8ce153ff8278?api-version=2019-11-01 cache-control: - no-cache content-length: - - '2841' + - '3295' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:11:38 GMT + - Wed, 04 Mar 2020 18:30:58 GMT expires: - '-1' pragma: @@ -2475,7 +2585,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e7eb217d-80a3-412a-ad96-5f21c851aabb + - 8af16388-8176-4f03-bac4-2b470dab699e x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2495,10 +2605,10 @@ interactions: ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/14e5d444-589f-455f-a350-1a98267a919d?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a15bc3ea-c3e1-40bf-9101-8ce153ff8278?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2510,7 +2620,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:11:44 GMT + - Wed, 04 Mar 2020 18:31:02 GMT expires: - '-1' pragma: @@ -2527,7 +2637,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - afcc0f29-9caf-4710-8122-caac41486b35 + - b93419da-22fc-4360-9428-14766599141e status: code: 200 message: OK @@ -2545,36 +2655,40 @@ interactions: ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet?api-version=2019-11-01 response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"04d3354a-8f08-427b-bb31-e751302507e5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c9875b32-8fe4-4839-ad53-4ff2c0bc8913\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"8b37d2b3-74da-4884-b391-303b842d06e0\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6357c331-8868-45df-a0d7-0f814cda7579\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"04d3354a-8f08-427b-bb31-e751302507e5\\\"\",\r\n + \ \"etag\": \"W/\\\"c9875b32-8fe4-4839-ad53-4ff2c0bc8913\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"networkSecurityGroup\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg1\"\r\n + \ },\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": + \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"clitestsubnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet2\",\r\n - \ \"etag\": \"W/\\\"04d3354a-8f08-427b-bb31-e751302507e5\\\"\",\r\n + \ \"etag\": \"W/\\\"c9875b32-8fe4-4839-ad53-4ff2c0bc8913\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.1.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ \"addressPrefix\": \"10.0.1.0/24\",\r\n \"networkSecurityGroup\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg1\"\r\n + \ },\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": + \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"clitestsubnet3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet3\",\r\n - \ \"etag\": \"W/\\\"04d3354a-8f08-427b-bb31-e751302507e5\\\"\",\r\n + \ \"etag\": \"W/\\\"c9875b32-8fe4-4839-ad53-4ff2c0bc8913\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.3.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -2585,13 +2699,13 @@ interactions: cache-control: - no-cache content-length: - - '2845' + - '3299' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:11:44 GMT + - Wed, 04 Mar 2020 18:31:02 GMT etag: - - W/"04d3354a-8f08-427b-bb31-e751302507e5" + - W/"c9875b32-8fe4-4839-ad53-4ff2c0bc8913" expires: - '-1' pragma: @@ -2608,7 +2722,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - baca129c-21a7-4337-ba10-026978e4ceac + - d31d66b5-3ee2-4f6f-9af6-26316190efc0 status: code: 200 message: OK @@ -2626,8 +2740,8 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -2643,7 +2757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:11:46 GMT + - Wed, 04 Mar 2020 18:31:03 GMT expires: - '-1' pragma: @@ -2680,30 +2794,30 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule2?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServerVnetFirewallRule","startTime":"2020-02-07T19:11:49.497Z"}' + string: '{"operation":"UpsertElasticServerVnetFirewallRule","startTime":"2020-03-04T18:31:04.42Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a5d49e1f-1401-4823-809b-79b0a041809d?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9ae61e4a-e37c-4b45-a73d-d7a751e48929?api-version=2017-12-01 cache-control: - no-cache content-length: - - '90' + - '89' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:11:50 GMT + - Wed, 04 Mar 2020 18:31:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a5d49e1f-1401-4823-809b-79b0a041809d?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/9ae61e4a-e37c-4b45-a73d-d7a751e48929?api-version=2017-12-01 pragma: - no-cache server: @@ -2713,7 +2827,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -2731,22 +2845,22 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a5d49e1f-1401-4823-809b-79b0a041809d?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9ae61e4a-e37c-4b45-a73d-d7a751e48929?api-version=2017-12-01 response: body: - string: '{"name":"a5d49e1f-1401-4823-809b-79b0a041809d","status":"Succeeded","startTime":"2020-02-07T19:11:49.497Z"}' + string: '{"name":"9ae61e4a-e37c-4b45-a73d-d7a751e48929","status":"Succeeded","startTime":"2020-03-04T18:31:04.42Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:12:21 GMT + - Wed, 04 Mar 2020 18:31:35 GMT expires: - '-1' pragma: @@ -2778,8 +2892,8 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule2?api-version=2017-12-01 response: @@ -2793,7 +2907,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:12:23 GMT + - Wed, 04 Mar 2020 18:31:35 GMT expires: - '-1' pragma: @@ -2825,8 +2939,8 @@ interactions: ParameterSetName: - -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -2842,7 +2956,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:12:27 GMT + - Wed, 04 Mar 2020 18:31:35 GMT expires: - '-1' pragma: @@ -2876,30 +2990,30 @@ interactions: ParameterSetName: - --name -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule1?api-version=2017-12-01 response: body: - string: '{"operation":"DropElasticServerVnetFirewallRule","startTime":"2020-02-07T19:12:29.153Z"}' + string: '{"operation":"DropElasticServerVnetFirewallRule","startTime":"2020-03-04T18:31:37.47Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/6089c323-90b7-47e4-a420-3f7780aad082?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/5480f24c-9261-45bb-bfcf-10b09ef8709b?api-version=2017-12-01 cache-control: - no-cache content-length: - - '88' + - '87' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:12:29 GMT + - Wed, 04 Mar 2020 18:31:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/6089c323-90b7-47e4-a420-3f7780aad082?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/5480f24c-9261-45bb-bfcf-10b09ef8709b?api-version=2017-12-01 pragma: - no-cache server: @@ -2909,7 +3023,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14999' status: code: 202 message: Accepted @@ -2927,22 +3041,22 @@ interactions: ParameterSetName: - --name -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/6089c323-90b7-47e4-a420-3f7780aad082?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/5480f24c-9261-45bb-bfcf-10b09ef8709b?api-version=2017-12-01 response: body: - string: '{"name":"6089c323-90b7-47e4-a420-3f7780aad082","status":"Succeeded","startTime":"2020-02-07T19:12:29.153Z"}' + string: '{"name":"5480f24c-9261-45bb-bfcf-10b09ef8709b","status":"Succeeded","startTime":"2020-03-04T18:31:37.47Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:12:46 GMT + - Wed, 04 Mar 2020 18:31:53 GMT expires: - '-1' pragma: @@ -2974,8 +3088,8 @@ interactions: ParameterSetName: - -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -2991,7 +3105,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:12:48 GMT + - Wed, 04 Mar 2020 18:31:54 GMT expires: - '-1' pragma: @@ -3025,18 +3139,18 @@ interactions: ParameterSetName: - -n -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule2?api-version=2017-12-01 response: body: - string: '{"operation":"DropElasticServerVnetFirewallRule","startTime":"2020-02-07T19:12:51.373Z"}' + string: '{"operation":"DropElasticServerVnetFirewallRule","startTime":"2020-03-04T18:31:55.653Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/350991e0-4014-4575-93ae-469a27ca8d49?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/3d8cb748-1656-4839-8f46-0b64568dd72f?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -3044,11 +3158,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:12:52 GMT + - Wed, 04 Mar 2020 18:31:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/350991e0-4014-4575-93ae-469a27ca8d49?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/3d8cb748-1656-4839-8f46-0b64568dd72f?api-version=2017-12-01 pragma: - no-cache server: @@ -3058,7 +3172,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -3076,13 +3190,13 @@ interactions: ParameterSetName: - -n -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/350991e0-4014-4575-93ae-469a27ca8d49?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/3d8cb748-1656-4839-8f46-0b64568dd72f?api-version=2017-12-01 response: body: - string: '{"name":"350991e0-4014-4575-93ae-469a27ca8d49","status":"Succeeded","startTime":"2020-02-07T19:12:51.373Z"}' + string: '{"name":"3d8cb748-1656-4839-8f46-0b64568dd72f","status":"Succeeded","startTime":"2020-03-04T18:31:55.653Z"}' headers: cache-control: - no-cache @@ -3091,7 +3205,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:13:08 GMT + - Wed, 04 Mar 2020 18:32:11 GMT expires: - '-1' pragma: @@ -3123,8 +3237,8 @@ interactions: ParameterSetName: - -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -3140,7 +3254,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:13:10 GMT + - Wed, 04 Mar 2020 18:32:12 GMT expires: - '-1' pragma: @@ -3174,8 +3288,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE @@ -3185,17 +3299,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5b9dd1a3-6e2b-4872-ad48-d27722513d29?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5d2a753-7ffb-478d-acc4-e41219cee314?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Feb 2020 19:13:13 GMT + - Wed, 04 Mar 2020 18:32:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/5b9dd1a3-6e2b-4872-ad48-d27722513d29?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/a5d2a753-7ffb-478d-acc4-e41219cee314?api-version=2019-11-01 pragma: - no-cache server: @@ -3206,9 +3320,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 233b5cf1-ec3d-46a4-b935-e290b76c4b38 + - a0396595-9c6d-429d-8c07-fdb13bc69ef7 x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -3226,10 +3340,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5b9dd1a3-6e2b-4872-ad48-d27722513d29?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5d2a753-7ffb-478d-acc4-e41219cee314?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3241,7 +3355,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:13:27 GMT + - Wed, 04 Mar 2020 18:32:23 GMT expires: - '-1' pragma: @@ -3258,7 +3372,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1a7e7884-c8f2-44df-b768-50e8c95ffc4f + - deac940a-83e7-430c-9d65-ad2dee4aa17a status: code: 200 message: OK @@ -3276,8 +3390,8 @@ interactions: ParameterSetName: - -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -3293,7 +3407,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:13:30 GMT + - Wed, 04 Mar 2020 18:32:24 GMT expires: - '-1' pragma: @@ -3325,8 +3439,8 @@ interactions: ParameterSetName: - --name -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -3343,7 +3457,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:13:34 GMT + - Wed, 04 Mar 2020 18:32:25 GMT expires: - '-1' pragma: @@ -3379,18 +3493,18 @@ interactions: ParameterSetName: - -n -g -s --value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/log_slow_admin_statements?api-version=2017-12-01 response: body: - string: '{"operation":"UpdateElasticServerConfig","startTime":"2020-02-07T19:13:37.243Z"}' + string: '{"operation":"UpdateElasticServerConfig","startTime":"2020-03-04T18:32:27.373Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/20a1beae-4427-4322-8900-bf08b39d174f?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/0a1ec630-79ce-4dca-9285-f0b1ec4e0651?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -3398,11 +3512,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:13:36 GMT + - Wed, 04 Mar 2020 18:32:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/20a1beae-4427-4322-8900-bf08b39d174f?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/0a1ec630-79ce-4dca-9285-f0b1ec4e0651?api-version=2017-12-01 pragma: - no-cache server: @@ -3412,7 +3526,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 202 message: Accepted @@ -3430,13 +3544,13 @@ interactions: ParameterSetName: - -n -g -s --value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/20a1beae-4427-4322-8900-bf08b39d174f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/0a1ec630-79ce-4dca-9285-f0b1ec4e0651?api-version=2017-12-01 response: body: - string: '{"name":"20a1beae-4427-4322-8900-bf08b39d174f","status":"Succeeded","startTime":"2020-02-07T19:13:37.243Z"}' + string: '{"name":"0a1ec630-79ce-4dca-9285-f0b1ec4e0651","status":"Succeeded","startTime":"2020-03-04T18:32:27.373Z"}' headers: cache-control: - no-cache @@ -3445,7 +3559,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:13:53 GMT + - Wed, 04 Mar 2020 18:32:42 GMT expires: - '-1' pragma: @@ -3477,8 +3591,8 @@ interactions: ParameterSetName: - -n -g -s --value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/log_slow_admin_statements?api-version=2017-12-01 response: @@ -3493,7 +3607,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:13:57 GMT + - Wed, 04 Mar 2020 18:32:43 GMT expires: - '-1' pragma: @@ -3529,18 +3643,18 @@ interactions: ParameterSetName: - -n -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/log_slow_admin_statements?api-version=2017-12-01 response: body: - string: '{"operation":"UpdateElasticServerConfig","startTime":"2020-02-07T19:14:00.67Z"}' + string: '{"operation":"UpdateElasticServerConfig","startTime":"2020-03-04T18:32:44.16Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/97c166e1-3707-4c7a-8078-b9d862556226?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4dc459eb-8dee-4c2a-926a-c11bb019e392?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -3548,11 +3662,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:14:00 GMT + - Wed, 04 Mar 2020 18:32:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/97c166e1-3707-4c7a-8078-b9d862556226?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/4dc459eb-8dee-4c2a-926a-c11bb019e392?api-version=2017-12-01 pragma: - no-cache server: @@ -3580,13 +3694,13 @@ interactions: ParameterSetName: - -n -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/97c166e1-3707-4c7a-8078-b9d862556226?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4dc459eb-8dee-4c2a-926a-c11bb019e392?api-version=2017-12-01 response: body: - string: '{"name":"97c166e1-3707-4c7a-8078-b9d862556226","status":"Succeeded","startTime":"2020-02-07T19:14:00.67Z"}' + string: '{"name":"4dc459eb-8dee-4c2a-926a-c11bb019e392","status":"Succeeded","startTime":"2020-03-04T18:32:44.16Z"}' headers: cache-control: - no-cache @@ -3595,7 +3709,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:14:17 GMT + - Wed, 04 Mar 2020 18:32:58 GMT expires: - '-1' pragma: @@ -3627,8 +3741,8 @@ interactions: ParameterSetName: - -n -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/log_slow_admin_statements?api-version=2017-12-01 response: @@ -3643,7 +3757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:14:19 GMT + - Wed, 04 Mar 2020 18:32:58 GMT expires: - '-1' pragma: @@ -3675,8 +3789,8 @@ interactions: ParameterSetName: - -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -3947,7 +4061,7 @@ interactions: parameter controls whetherthe server permits no client updates. When the server is read replica or server storage is full, this parameter will not take effect.","defaultValue":"OFF","dataType":"Enumeration","allowedValues":"ON,OFF","source":"system-default","isConfigPendingRestart":"False","isDynamicConfig":"True"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/read_only","name":"read_only","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"1073741824","description":"This option places an upper limit on the total size in bytes of all relay logs - on the slave.","defaultValue":"1073741824","dataType":"Integer","allowedValues":"1073741824-3221225472","source":"system-default","isConfigPendingRestart":"False","isDynamicConfig":"False"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/relay_log_space_limit","name":"relay_log_space_limit","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"3862029721","description":"The + on the slave.","defaultValue":"1073741824","dataType":"Integer","allowedValues":"1073741824-3221225472","source":"system-default","isConfigPendingRestart":"False","isDynamicConfig":"False"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/relay_log_space_limit","name":"relay_log_space_limit","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"379963419","description":"The server ID, used in replication to give each master and slave a unique identity.","defaultValue":"1000","dataType":"Integer","allowedValues":"1000-4294967295","source":"user-override","isConfigPendingRestart":"False","isDynamicConfig":"True"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/server_id","name":"server_id","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"ON","description":"Controls whether the server tracks changes to the default schema (database) name within the current session and makes this information available to the client when @@ -3988,11 +4102,11 @@ interactions: cache-control: - no-cache content-length: - - '110793' + - '110792' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:14:23 GMT + - Wed, 04 Mar 2020 18:33:00 GMT expires: - '-1' pragma: @@ -4028,18 +4142,18 @@ interactions: ParameterSetName: - -n -g -s --value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/slow_query_log?api-version=2017-12-01 response: body: - string: '{"operation":"UpdateElasticServerConfig","startTime":"2020-02-07T19:14:30.173Z"}' + string: '{"operation":"UpdateElasticServerConfig","startTime":"2020-03-04T18:33:02.107Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/45226423-d62c-48cf-aded-ed886559cc09?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/09fb1f6d-daad-4ace-8606-b7d2da675aa5?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -4047,11 +4161,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:14:29 GMT + - Wed, 04 Mar 2020 18:33:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/45226423-d62c-48cf-aded-ed886559cc09?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/09fb1f6d-daad-4ace-8606-b7d2da675aa5?api-version=2017-12-01 pragma: - no-cache server: @@ -4079,22 +4193,22 @@ interactions: ParameterSetName: - -n -g -s --value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/45226423-d62c-48cf-aded-ed886559cc09?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/09fb1f6d-daad-4ace-8606-b7d2da675aa5?api-version=2017-12-01 response: body: - string: '{"name":"45226423-d62c-48cf-aded-ed886559cc09","status":"Succeeded","startTime":"2020-02-07T19:14:30.173Z"}' + string: '{"name":"09fb1f6d-daad-4ace-8606-b7d2da675aa5","status":"InProgress","startTime":"2020-03-04T18:33:02.107Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:14:46 GMT + - Wed, 04 Mar 2020 18:33:17 GMT expires: - '-1' pragma: @@ -4126,23 +4240,22 @@ interactions: ParameterSetName: - -n -g -s --value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/slow_query_log?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/09fb1f6d-daad-4ace-8606-b7d2da675aa5?api-version=2017-12-01 response: body: - string: '{"properties":{"value":"ON","description":"Enable or disable the slow - query log","defaultValue":"OFF","dataType":"Enumeration","allowedValues":"ON,OFF","source":"user-override","isConfigPendingRestart":"False","isDynamicConfig":"True"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/slow_query_log","name":"slow_query_log","type":"Microsoft.DBforMySQL/servers/configurations"}' + string: '{"name":"09fb1f6d-daad-4ace-8606-b7d2da675aa5","status":"InProgress","startTime":"2020-03-04T18:33:02.107Z"}' headers: cache-control: - no-cache content-length: - - '596' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:14:48 GMT + - Wed, 04 Mar 2020 18:33:32 GMT expires: - '-1' pragma: @@ -4168,30 +4281,1487 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - mysql server-logs list + - mysql server configuration set Connection: - keep-alive ParameterSetName: - - -g -s --file-last-written + - -n -g -s --value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/logFiles?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/09fb1f6d-daad-4ace-8606-b7d2da675aa5?api-version=2017-12-01 + response: + body: + string: '{"name":"09fb1f6d-daad-4ace-8606-b7d2da675aa5","status":"InProgress","startTime":"2020-03-04T18:33:02.107Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:33:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - mysql server configuration set + Connection: + - keep-alive + ParameterSetName: + - -n -g -s --value + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/09fb1f6d-daad-4ace-8606-b7d2da675aa5?api-version=2017-12-01 + response: + body: + string: '{"name":"09fb1f6d-daad-4ace-8606-b7d2da675aa5","status":"Succeeded","startTime":"2020-03-04T18:33:02.107Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:34: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: + - mysql server configuration set + Connection: + - keep-alive + ParameterSetName: + - -n -g -s --value + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/slow_query_log?api-version=2017-12-01 response: body: - string: '{"value":[{"properties":{"name":"mysql-slow-azuredbclitest000002-2020020719.log","sizeInKB":1,"createdTime":"0001-01-01T00:00:00+00:00","lastModifiedTime":"2020-02-07T19:14:30+00:00","type":"slowlog","url":"https://wasd2prodeus1apfse567.file.core.windows.net/985d457194414185b58a7924b441faac/serverlogs/mysql-slow-azuredbclitest000002-2020020719.log?sv=2018-11-09&sr=f&sig=uex9l%2FZV77ghUnJcfBoSVLLFNYp4OMSvubSAIH%2BaScw%3D&se=2020-02-07T20%3A14%3A52Z&sp=r"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/logFiles/mysql-slow-azuredbclitest000002-2020020719.log","name":"mysql-slow-azuredbclitest000002-2020020719.log","type":"Microsoft.DBforMySQL/servers/logFiles"}]}' + string: '{"properties":{"value":"ON","description":"Enable or disable the slow + query log","defaultValue":"OFF","dataType":"Enumeration","allowedValues":"ON,OFF","source":"user-override","isConfigPendingRestart":"False","isDynamicConfig":"True"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/slow_query_log","name":"slow_query_log","type":"Microsoft.DBforMySQL/servers/configurations"}' headers: cache-control: - no-cache content-length: - - '1045' + - '596' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:34: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: + - mysql server-logs list + Connection: + - keep-alive + ParameterSetName: + - -g -s --file-last-written + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/logFiles?api-version=2017-12-01 + response: + body: + string: '{"value":[{"properties":{"name":"mysql-slow-azuredbclitest000002-2020030418.log","sizeInKB":1,"createdTime":"0001-01-01T00:00:00+00:00","lastModifiedTime":"2020-03-04T18:33:55+00:00","type":"slowlog","url":"https://wasd2prodeus1apfse4261.file.core.windows.net/e1ed322b83794bd0b34dd8aaf177057c/serverlogs/mysql-slow-azuredbclitest000002-2020030418.log?sv=2018-11-09&sr=f&sig=eVpIW3MC%2F0ivMW6QEAaPDAR2A0C%2FzU08glk962d8E5U%3D&se=2020-03-04T19%3A34%3A03Z&sp=r"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/logFiles/mysql-slow-azuredbclitest000002-2020030418.log","name":"mysql-slow-azuredbclitest000002-2020030418.log","type":"Microsoft.DBforMySQL/servers/logFiles"}]}' + headers: + cache-control: + - no-cache + content-length: + - '1046' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:34:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - mysql server private-link-resource list + Connection: + - keep-alive + ParameterSetName: + - -g -s + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/privateLinkResources?api-version=2018-06-01 + response: + body: + string: '{"value":[{"properties":{"groupId":"mysqlServer","requiredMembers":["mysqlServer"]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/privateLinkResources/plr","name":"plr","type":"Microsoft.DBforMySQL/servers/privateLinkResources"}]}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:34: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: '{"location": "eastus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"properties": {"addressPrefix": + "10.0.0.0/24"}, "name": "cli-subnet-000004"}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + Content-Length: + - '222' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g -l --subnet-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003\",\r\n + \ \"etag\": \"W/\\\"c75871cd-b85e-448f-acc1-3ee56190c237\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"7f871b26-4c08-4c65-aa54-62645e12149a\",\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\": \"cli-subnet-000004\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n + \ \"etag\": \"W/\\\"c75871cd-b85e-448f-acc1-3ee56190c237\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\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/eastus/operations/27b924de-38ac-4545-acf2-ee538590143d?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '1528' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:34:05 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: + - f4a529a1-aa9c-4425-b33d-af909119d8b1 + 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: + - -n -g -l --subnet-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/27b924de-38ac-4545-acf2-ee538590143d?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:34:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 64c9358f-ca17-43a1-a434-9ac194ba8b67 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --subnet-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003\",\r\n + \ \"etag\": \"W/\\\"c8bffcd5-8868-4b99-91b3-ef319f1f8429\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"7f871b26-4c08-4c65-aa54-62645e12149a\",\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\": \"cli-subnet-000004\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n + \ \"etag\": \"W/\\\"c8bffcd5-8868-4b99-91b3-ef319f1f8429\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\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: + - '1530' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:34:08 GMT + etag: + - W/"c8bffcd5-8868-4b99-91b3-ef319f1f8429" + 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: + - 032a94b2-6d27-4ddb-a309-2993566644f0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet update + Connection: + - keep-alive + ParameterSetName: + - -n --vnet-name -g --disable-private-endpoint-network-policies + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"cli-subnet-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n + \ \"etag\": \"W/\\\"c8bffcd5-8868-4b99-91b3-ef319f1f8429\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": + \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '639' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:34:09 GMT + etag: + - W/"c8bffcd5-8868-4b99-91b3-ef319f1f8429" + 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: + - 078fe330-d499-40ee-8f7d-d24318282c83 + status: + code: 200 + message: OK +- request: + body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004", + "properties": {"addressPrefix": "10.0.0.0/24", "delegations": [], "privateEndpointNetworkPolicies": + "Disabled", "privateLinkServiceNetworkPolicies": "Enabled"}, "name": "cli-subnet-000004"}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet update + Connection: + - keep-alive + Content-Length: + - '451' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --vnet-name -g --disable-private-endpoint-network-policies + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"cli-subnet-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n + \ \"etag\": \"W/\\\"df63ad43-8117-48aa-8098-4a192144cba6\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": + \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/29309ba4-5863-4a39-90ce-a65ae0130709?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '639' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:34:10 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: + - 160233a5-ac18-48fb-8c8f-74a9751377ce + 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 update + Connection: + - keep-alive + ParameterSetName: + - -n --vnet-name -g --disable-private-endpoint-network-policies + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/29309ba4-5863-4a39-90ce-a65ae0130709?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:34:13 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: + - 76424811-3f86-4b8d-a0f9-598d8eadd784 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet update + Connection: + - keep-alive + ParameterSetName: + - -n --vnet-name -g --disable-private-endpoint-network-policies + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"cli-subnet-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n + \ \"etag\": \"W/\\\"624c0c08-3e42-40f3-b51a-03d6ac0c90f9\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": + \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '640' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:34:14 GMT + etag: + - W/"624c0c08-3e42-40f3-b51a-03d6ac0c90f9" + 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: + - ae152326-fa64-4275-80b9-26bcc74fa3ee + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - mysql server show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002?api-version=2017-12-01 + response: + body: + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.mysql.database.azure.com","earliestRestoreDate":"2020-03-04T18:35:20.137+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforMySQL/servers"}' + headers: + cache-control: + - no-cache + content-length: + - '1081' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:34: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: + - mysql server private-link-resource list + Connection: + - keep-alive + ParameterSetName: + - -g -s + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/privateLinkResources?api-version=2018-06-01 + response: + body: + string: '{"value":[{"properties":{"groupId":"mysqlServer","requiredMembers":["mysqlServer"]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/privateLinkResources/plr","name":"plr","type":"Microsoft.DBforMySQL/servers/privateLinkResources"}]}' + headers: + cache-control: + - no-cache + content-length: + - '436' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:34: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: 'b''b\''{"location": "eastus", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004"}, + "privateLinkServiceConnections": [{"properties": {"privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002", + "groupIds": ["mysqlServer"]}, "name": "cli-pec-000006"}]}}\''''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + Content-Length: + - '695' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id + --group-ids + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"cli-pe-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005\",\r\n + \ \"etag\": \"W/\\\"a39ab3a2-2f4e-4c14-aa9f-0b65ec5de5f6\\\"\",\r\n \"type\": + \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": + \"e4b21521-4231-4c98-9a85-684c8e1fcbe1\",\r\n \"privateLinkServiceConnections\": + [\r\n {\r\n \"name\": \"cli-pec-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006\",\r\n + \ \"etag\": \"W/\\\"a39ab3a2-2f4e-4c14-aa9f-0b65ec5de5f6\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002\",\r\n + \ \"groupIds\": [\r\n \"mysqlServer\"\r\n ],\r\n + \ \"privateLinkServiceConnectionState\": {\r\n \"status\": + \"Approved\",\r\n \"description\": \"\",\r\n \"actionsRequired\": + \"None\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n + \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n + \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/cli-pe-000005.nic.830ee17a-4b22-49ee-af74-427f0ba9f082\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4db379bc-4882-4626-bf22-5f58a9a47888?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '2325' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:34:19 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: + - 18c8de3e-4d41-4159-83ed-887ebc3bb088 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id + --group-ids + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4db379bc-4882-4626-bf22-5f58a9a47888?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:34:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 4fec2550-5582-45db-abcf-8d0e0317986d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id + --group-ids + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4db379bc-4882-4626-bf22-5f58a9a47888?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:34:40 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: + - 368fa69f-2dc5-4fe5-94d4-0dd71ab43243 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id + --group-ids + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4db379bc-4882-4626-bf22-5f58a9a47888?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:34:50 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: + - 7f151ff4-0ea3-45f3-bebd-96cd348c3b96 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id + --group-ids + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4db379bc-4882-4626-bf22-5f58a9a47888?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:35:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 700cb3f2-2ef4-4f9a-991e-59673c847b6b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id + --group-ids + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"cli-pe-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005\",\r\n + \ \"etag\": \"W/\\\"cf7b3ca9-8151-40cf-8448-eef3f6d4c072\\\"\",\r\n \"type\": + \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"e4b21521-4231-4c98-9a85-684c8e1fcbe1\",\r\n \"privateLinkServiceConnections\": + [\r\n {\r\n \"name\": \"cli-pec-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006\",\r\n + \ \"etag\": \"W/\\\"cf7b3ca9-8151-40cf-8448-eef3f6d4c072\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002\",\r\n + \ \"groupIds\": [\r\n \"mysqlServer\"\r\n ],\r\n + \ \"privateLinkServiceConnectionState\": {\r\n \"status\": + \"Approved\",\r\n \"description\": \"Auto-approved\",\r\n \"actionsRequired\": + \"None\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n + \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n + \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/cli-pe-000005.nic.830ee17a-4b22-49ee-af74-427f0ba9f082\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2339' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:35:00 GMT + etag: + - W/"cf7b3ca9-8151-40cf-8448-eef3f6d4c072" + 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: + - b5087e5e-c9f5-426b-a3d4-4d9c943bfc93 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - rest + Connection: + - keep-alive + ParameterSetName: + - --method --uri + User-Agent: + - AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002?api-version=2017-12-01 + response: + body: + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.mysql.database.azure.com","earliestRestoreDate":"2020-03-04T18:35:20.137+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-84618a0f-0b1c-4164-b0a1-d56d85bbfc0f","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Ready"}}],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforMySQL/servers"}' + headers: + cache-control: + - no-cache + content-length: + - '1875' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:35: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: + - mysql server private-endpoint-connection show + Connection: + - keep-alive + ParameterSetName: + - --server-name -g --name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-84618a0f-0b1c-4164-b0a1-d56d85bbfc0f?api-version=2018-06-01 + response: + body: + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Ready"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-84618a0f-0b1c-4164-b0a1-d56d85bbfc0f","name":"cli-pe-000005-84618a0f-0b1c-4164-b0a1-d56d85bbfc0f","type":"Microsoft.DBforMySQL/servers/privateEndpointConnections"}' + headers: + cache-control: + - no-cache + content-length: + - '930' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:35: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: + - mysql server private-endpoint-connection approve + Connection: + - keep-alive + ParameterSetName: + - --server-name -g --name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-84618a0f-0b1c-4164-b0a1-d56d85bbfc0f?api-version=2018-06-01 + response: + body: + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Ready"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-84618a0f-0b1c-4164-b0a1-d56d85bbfc0f","name":"cli-pe-000005-84618a0f-0b1c-4164-b0a1-d56d85bbfc0f","type":"Microsoft.DBforMySQL/servers/privateEndpointConnections"}' + headers: + cache-control: + - no-cache + content-length: + - '930' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:35:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - mysql server private-endpoint-connection approve + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --server-name -g --name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-84618a0f-0b1c-4164-b0a1-d56d85bbfc0f?api-version=2018-06-01 + response: + body: + string: '{"error":{"code":"PrivateEndpointConnectionStatusNotPending","message":"Private + Endpoint Connection Status is not Pending"}}' + headers: + cache-control: + - no-cache + content-length: + - '124' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:35:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 400 + message: Bad Request +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - mysql server private-endpoint-connection reject + Connection: + - keep-alive + ParameterSetName: + - --server-name -g --name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-84618a0f-0b1c-4164-b0a1-d56d85bbfc0f?api-version=2018-06-01 + response: + body: + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Ready"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-84618a0f-0b1c-4164-b0a1-d56d85bbfc0f","name":"cli-pe-000005-84618a0f-0b1c-4164-b0a1-d56d85bbfc0f","type":"Microsoft.DBforMySQL/servers/privateEndpointConnections"}' + headers: + cache-control: + - no-cache + content-length: + - '930' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:35: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: '{}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - mysql server private-endpoint-connection reject + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --server-name -g --name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-84618a0f-0b1c-4164-b0a1-d56d85bbfc0f?api-version=2018-06-01 + response: + body: + string: '{"error":{"code":"PrivateEndpointConnectionStatusNotPending","message":"Private + Endpoint Connection Status is not Pending"}}' + headers: + cache-control: + - no-cache + content-length: + - '124' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:35:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 400 + message: Bad Request +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - mysql server private-endpoint-connection delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --id + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-84618a0f-0b1c-4164-b0a1-d56d85bbfc0f?api-version=2018-06-01 + response: + body: + string: '{"operation":"DropElasticServerPrivateEndpointConnection","startTime":"2020-03-04T18:35:06.08Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/locations/eastus/privateEndpointConnectionAzureAsyncOperation/4f31b3f0-bc9f-4620-a968-43abaede07f9?api-version=2018-06-01 + cache-control: + - no-cache + content-length: + - '96' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:35:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/locations/eastus/privateEndpointConnectionOperationResults/4f31b3f0-bc9f-4620-a968-43abaede07f9?api-version=2018-06-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - mysql server private-endpoint-connection delete + Connection: + - keep-alive + ParameterSetName: + - --id + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/locations/eastus/privateEndpointConnectionAzureAsyncOperation/4f31b3f0-bc9f-4620-a968-43abaede07f9?api-version=2018-06-01 + response: + body: + string: '{"name":"4f31b3f0-bc9f-4620-a968-43abaede07f9","status":"Succeeded","startTime":"2020-03-04T18:35:06.08Z"}' + headers: + cache-control: + - no-cache + content-length: + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:14:52 GMT + - Wed, 04 Mar 2020 18:35:22 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_mysql_replica_mgmt.yaml b/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_mysql_replica_mgmt.yaml index 55fa3aceb14..9354e7b5336 100644 --- a/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_mysql_replica_mgmt.yaml +++ b/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_mysql_replica_mgmt.yaml @@ -1,58 +1,8 @@ interactions: - request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-07-01T06:26:13Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-07-01T06:26:13Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 01 Jul 2019 06:26:15 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: '{"sku": {"name": "GP_Gen5_2"}, "properties": {"storageProfile": {}, "createMode": - "Default", "administratorLogin": "cloudsa", "administratorLoginPassword": "SecretPassword123"}, - "location": "brazilsouth"}' + body: '{"sku": {"name": "GP_Gen5_2"}, "properties": {"storageProfile": {"storageAutogrow": + "Enabled"}, "createMode": "Default", "administratorLogin": "cloudsa", "administratorLoginPassword": + "SecretPassword123"}, "location": "eastus"}' headers: Accept: - application/json @@ -63,24 +13,24 @@ interactions: Connection: - keep-alive Content-Length: - - '204' + - '227' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g --name -l --admin-user --admin-password --sku-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2019-07-01T06:26:18.873Z"}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-03T02:29:09.523Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/40536bb5-a4cf-4bb8-b9bb-088c9e5fb572?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/116355ba-d221-4608-8eba-6d88f4a14ef6?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -88,11 +38,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:26:19 GMT + - Tue, 03 Mar 2020 02:29:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/40536bb5-a4cf-4bb8-b9bb-088c9e5fb572?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/116355ba-d221-4608-8eba-6d88f4a14ef6?api-version=2017-12-01 pragma: - no-cache server: @@ -120,154 +70,13 @@ interactions: ParameterSetName: - -g --name -l --admin-user --admin-password --sku-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/40536bb5-a4cf-4bb8-b9bb-088c9e5fb572?api-version=2017-12-01 - response: - body: - string: '{"name":"40536bb5-a4cf-4bb8-b9bb-088c9e5fb572","status":"InProgress","startTime":"2019-07-01T06:26:18.873Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 01 Jul 2019 06:27: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: - - mysql server create - Connection: - - keep-alive - ParameterSetName: - - -g --name -l --admin-user --admin-password --sku-name - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/40536bb5-a4cf-4bb8-b9bb-088c9e5fb572?api-version=2017-12-01 - response: - body: - string: '{"name":"40536bb5-a4cf-4bb8-b9bb-088c9e5fb572","status":"InProgress","startTime":"2019-07-01T06:26:18.873Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 01 Jul 2019 06:28: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: - - mysql server create - Connection: - - keep-alive - ParameterSetName: - - -g --name -l --admin-user --admin-password --sku-name - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/40536bb5-a4cf-4bb8-b9bb-088c9e5fb572?api-version=2017-12-01 - response: - body: - string: '{"name":"40536bb5-a4cf-4bb8-b9bb-088c9e5fb572","status":"InProgress","startTime":"2019-07-01T06:26:18.873Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 01 Jul 2019 06:29:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mysql server create - Connection: - - keep-alive - ParameterSetName: - - -g --name -l --admin-user --admin-password --sku-name - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/40536bb5-a4cf-4bb8-b9bb-088c9e5fb572?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/116355ba-d221-4608-8eba-6d88f4a14ef6?api-version=2017-12-01 response: body: - string: '{"name":"40536bb5-a4cf-4bb8-b9bb-088c9e5fb572","status":"InProgress","startTime":"2019-07-01T06:26:18.873Z"}' + string: '{"name":"116355ba-d221-4608-8eba-6d88f4a14ef6","status":"InProgress","startTime":"2020-03-03T02:29:09.523Z"}' headers: cache-control: - no-cache @@ -276,54 +85,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:30: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: - - mysql server create - Connection: - - keep-alive - ParameterSetName: - - -g --name -l --admin-user --admin-password --sku-name - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/40536bb5-a4cf-4bb8-b9bb-088c9e5fb572?api-version=2017-12-01 - response: - body: - string: '{"name":"40536bb5-a4cf-4bb8-b9bb-088c9e5fb572","status":"Succeeded","startTime":"2019-07-01T06:26:18.873Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 01 Jul 2019 06:31:24 GMT + - Tue, 03 Mar 2020 02:30:09 GMT expires: - '-1' pragma: @@ -355,777 +117,13 @@ interactions: ParameterSetName: - -g --name -l --admin-user --admin-password --sku-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002?api-version=2017-12-01 - response: - body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.mysql.database.azure.com","earliestRestoreDate":"2019-07-01T06:36:19.28+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforMySQL/servers"}' - headers: - cache-control: - - no-cache - content-length: - - '850' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 01 Jul 2019 06:31: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: - - mysql server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002?api-version=2017-12-01 - response: - body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.mysql.database.azure.com","earliestRestoreDate":"2019-07-01T06:36:19.28+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforMySQL/servers"}' - headers: - cache-control: - - no-cache - content-length: - - '850' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 01 Jul 2019 06:36: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: 'b''b\''{"sku": {"name": "GP_Gen5_4"}, "properties": {"createMode": "Replica", - "sourceServerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002"}, - "location": "brazilsouth"}\''''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mysql server replica create - Connection: - - keep-alive - Content-Length: - - '334' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep1000003?api-version=2017-12-01 - response: - body: - string: '{"operation":"CreateElasticServerContinuousCopy","startTime":"2019-07-01T06:36:29.08Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 - cache-control: - - no-cache - content-length: - - '87' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 01 Jul 2019 06:36:29 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mysql server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 - response: - body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 01 Jul 2019 06:37: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: - - mysql server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 - response: - body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 01 Jul 2019 06:37:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mysql server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 - response: - body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 01 Jul 2019 06:38: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: - - mysql server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 - response: - body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 01 Jul 2019 06:38: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: - - mysql server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 - response: - body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 01 Jul 2019 06:39: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: - - mysql server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 - response: - body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 01 Jul 2019 06:39: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: - - mysql server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 - response: - body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 01 Jul 2019 06:40:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mysql server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 - response: - body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 01 Jul 2019 06:40:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mysql server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 - response: - body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 01 Jul 2019 06:41: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: - - mysql server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 - response: - body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 01 Jul 2019 06:41:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mysql server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 - response: - body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 01 Jul 2019 06:42:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mysql server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 - response: - body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 01 Jul 2019 06:42: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: - - mysql server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 - response: - body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 01 Jul 2019 06:43: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: - - mysql server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/116355ba-d221-4608-8eba-6d88f4a14ef6?api-version=2017-12-01 response: body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' + string: '{"name":"116355ba-d221-4608-8eba-6d88f4a14ef6","status":"Succeeded","startTime":"2020-03-03T02:29:09.523Z"}' headers: cache-control: - no-cache @@ -1134,7 +132,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:43:43 GMT + - Tue, 03 Mar 2020 02:31:10 GMT expires: - '-1' pragma: @@ -1160,28 +158,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - mysql server replica create + - mysql server create Connection: - keep-alive ParameterSetName: - - -g -n -l --sku-name --source-server + - -g --name -l --admin-user --admin-password --sku-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002?api-version=2017-12-01 response: body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:09.837+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '107' + - '988' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:44:14 GMT + - Tue, 03 Mar 2020 02:31:10 GMT expires: - '-1' pragma: @@ -1213,22 +211,24 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002?api-version=2017-12-01 response: body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:09.837+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '107' + - '988' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:44:46 GMT + - Tue, 03 Mar 2020 02:36:11 GMT expires: - '-1' pragma: @@ -1247,7 +247,9 @@ interactions: code: 200 message: OK - request: - body: null + body: 'b''{"sku": {"name": "GP_Gen5_4"}, "properties": {"createMode": "Replica", + "sourceServerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002"}, + "location": "eastus"}''' headers: Accept: - application/json @@ -1257,42 +259,50 @@ interactions: - mysql server replica create Connection: - keep-alive + Content-Length: + - '329' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep1000003?api-version=2017-12-01 response: body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' + string: '{"operation":"CreateElasticServerContinuousCopy","startTime":"2020-03-03T02:36:12.94Z"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2f516611-b5fd-4d0a-8659-c77a447c5829?api-version=2017-12-01 cache-control: - no-cache content-length: - - '107' + - '87' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:45:17 GMT + - Tue, 03 Mar 2020 02:36:12 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/2f516611-b5fd-4d0a-8659-c77a447c5829?api-version=2017-12-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1307,13 +317,13 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2f516611-b5fd-4d0a-8659-c77a447c5829?api-version=2017-12-01 response: body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' + string: '{"name":"2f516611-b5fd-4d0a-8659-c77a447c5829","status":"InProgress","startTime":"2020-03-03T02:36:12.94Z"}' headers: cache-control: - no-cache @@ -1322,7 +332,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:45:47 GMT + - Tue, 03 Mar 2020 02:36:42 GMT expires: - '-1' pragma: @@ -1354,13 +364,13 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2f516611-b5fd-4d0a-8659-c77a447c5829?api-version=2017-12-01 response: body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' + string: '{"name":"2f516611-b5fd-4d0a-8659-c77a447c5829","status":"InProgress","startTime":"2020-03-03T02:36:12.94Z"}' headers: cache-control: - no-cache @@ -1369,7 +379,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:46:19 GMT + - Tue, 03 Mar 2020 02:37:12 GMT expires: - '-1' pragma: @@ -1401,13 +411,13 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2f516611-b5fd-4d0a-8659-c77a447c5829?api-version=2017-12-01 response: body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' + string: '{"name":"2f516611-b5fd-4d0a-8659-c77a447c5829","status":"InProgress","startTime":"2020-03-03T02:36:12.94Z"}' headers: cache-control: - no-cache @@ -1416,7 +426,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:46:50 GMT + - Tue, 03 Mar 2020 02:37:43 GMT expires: - '-1' pragma: @@ -1448,13 +458,13 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2f516611-b5fd-4d0a-8659-c77a447c5829?api-version=2017-12-01 response: body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' + string: '{"name":"2f516611-b5fd-4d0a-8659-c77a447c5829","status":"InProgress","startTime":"2020-03-03T02:36:12.94Z"}' headers: cache-control: - no-cache @@ -1463,7 +473,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:47:21 GMT + - Tue, 03 Mar 2020 02:38:13 GMT expires: - '-1' pragma: @@ -1495,13 +505,13 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2f516611-b5fd-4d0a-8659-c77a447c5829?api-version=2017-12-01 response: body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' + string: '{"name":"2f516611-b5fd-4d0a-8659-c77a447c5829","status":"InProgress","startTime":"2020-03-03T02:36:12.94Z"}' headers: cache-control: - no-cache @@ -1510,7 +520,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:47:52 GMT + - Tue, 03 Mar 2020 02:38:43 GMT expires: - '-1' pragma: @@ -1542,13 +552,13 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2f516611-b5fd-4d0a-8659-c77a447c5829?api-version=2017-12-01 response: body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' + string: '{"name":"2f516611-b5fd-4d0a-8659-c77a447c5829","status":"InProgress","startTime":"2020-03-03T02:36:12.94Z"}' headers: cache-control: - no-cache @@ -1557,7 +567,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:48:22 GMT + - Tue, 03 Mar 2020 02:39:13 GMT expires: - '-1' pragma: @@ -1589,13 +599,13 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2f516611-b5fd-4d0a-8659-c77a447c5829?api-version=2017-12-01 response: body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' + string: '{"name":"2f516611-b5fd-4d0a-8659-c77a447c5829","status":"InProgress","startTime":"2020-03-03T02:36:12.94Z"}' headers: cache-control: - no-cache @@ -1604,7 +614,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:48:54 GMT + - Tue, 03 Mar 2020 02:39:43 GMT expires: - '-1' pragma: @@ -1636,13 +646,13 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2f516611-b5fd-4d0a-8659-c77a447c5829?api-version=2017-12-01 response: body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' + string: '{"name":"2f516611-b5fd-4d0a-8659-c77a447c5829","status":"InProgress","startTime":"2020-03-03T02:36:12.94Z"}' headers: cache-control: - no-cache @@ -1651,7 +661,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:49:25 GMT + - Tue, 03 Mar 2020 02:40:14 GMT expires: - '-1' pragma: @@ -1683,13 +693,13 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2f516611-b5fd-4d0a-8659-c77a447c5829?api-version=2017-12-01 response: body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' + string: '{"name":"2f516611-b5fd-4d0a-8659-c77a447c5829","status":"InProgress","startTime":"2020-03-03T02:36:12.94Z"}' headers: cache-control: - no-cache @@ -1698,7 +708,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:49:56 GMT + - Tue, 03 Mar 2020 02:40:44 GMT expires: - '-1' pragma: @@ -1730,13 +740,13 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2f516611-b5fd-4d0a-8659-c77a447c5829?api-version=2017-12-01 response: body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' + string: '{"name":"2f516611-b5fd-4d0a-8659-c77a447c5829","status":"InProgress","startTime":"2020-03-03T02:36:12.94Z"}' headers: cache-control: - no-cache @@ -1745,7 +755,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:50:27 GMT + - Tue, 03 Mar 2020 02:41:14 GMT expires: - '-1' pragma: @@ -1777,13 +787,13 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2f516611-b5fd-4d0a-8659-c77a447c5829?api-version=2017-12-01 response: body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' + string: '{"name":"2f516611-b5fd-4d0a-8659-c77a447c5829","status":"InProgress","startTime":"2020-03-03T02:36:12.94Z"}' headers: cache-control: - no-cache @@ -1792,7 +802,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:50:58 GMT + - Tue, 03 Mar 2020 02:41:44 GMT expires: - '-1' pragma: @@ -1824,13 +834,13 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2f516611-b5fd-4d0a-8659-c77a447c5829?api-version=2017-12-01 response: body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' + string: '{"name":"2f516611-b5fd-4d0a-8659-c77a447c5829","status":"InProgress","startTime":"2020-03-03T02:36:12.94Z"}' headers: cache-control: - no-cache @@ -1839,7 +849,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:51:29 GMT + - Tue, 03 Mar 2020 02:42:14 GMT expires: - '-1' pragma: @@ -1871,13 +881,13 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2f516611-b5fd-4d0a-8659-c77a447c5829?api-version=2017-12-01 response: body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"InProgress","startTime":"2019-07-01T06:36:29.08Z"}' + string: '{"name":"2f516611-b5fd-4d0a-8659-c77a447c5829","status":"InProgress","startTime":"2020-03-03T02:36:12.94Z"}' headers: cache-control: - no-cache @@ -1886,7 +896,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:52:00 GMT + - Tue, 03 Mar 2020 02:42:45 GMT expires: - '-1' pragma: @@ -1918,22 +928,22 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/38568f0c-dc06-41b8-8684-e95e79cdd91c?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2f516611-b5fd-4d0a-8659-c77a447c5829?api-version=2017-12-01 response: body: - string: '{"name":"38568f0c-dc06-41b8-8684-e95e79cdd91c","status":"Succeeded","startTime":"2019-07-01T06:36:29.08Z"}' + string: '{"name":"2f516611-b5fd-4d0a-8659-c77a447c5829","status":"InProgress","startTime":"2020-03-03T02:36:12.94Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:52:31 GMT + - Tue, 03 Mar 2020 02:43:15 GMT expires: - '-1' pragma: @@ -1965,22 +975,22 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep1000003?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2f516611-b5fd-4d0a-8659-c77a447c5829?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep1000003.mysql.database.azure.com","earliestRestoreDate":"2019-07-01T06:51:14.403+00:00","replicationRole":"Replica","masterServerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","replicaCapacity":0},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep1000003","name":"azuredbclirep1000003","type":"Microsoft.DBforMySQL/servers"}' + string: '{"name":"2f516611-b5fd-4d0a-8659-c77a447c5829","status":"InProgress","startTime":"2020-03-03T02:36:12.94Z"}' headers: cache-control: - no-cache content-length: - - '1160' + - '107' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:52:32 GMT + - Tue, 03 Mar 2020 02:43:45 GMT expires: - '-1' pragma: @@ -2006,30 +1016,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - mysql server show + - mysql server replica create Connection: - keep-alive ParameterSetName: - - -g --name + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2f516611-b5fd-4d0a-8659-c77a447c5829?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.mysql.database.azure.com","earliestRestoreDate":"2019-07-01T06:36:19.28+00:00","replicationRole":"Master","masterServerId":"","replicaCapacity":5},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforMySQL/servers"}' + string: '{"name":"2f516611-b5fd-4d0a-8659-c77a447c5829","status":"InProgress","startTime":"2020-03-03T02:36:12.94Z"}' headers: cache-control: - no-cache content-length: - - '852' + - '107' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:52:34 GMT + - Tue, 03 Mar 2020 02:44:15 GMT expires: - '-1' pragma: @@ -2055,30 +1063,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - mysql server replica list + - mysql server replica create Connection: - keep-alive ParameterSetName: - - -g -s + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/replicas?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2f516611-b5fd-4d0a-8659-c77a447c5829?api-version=2017-12-01 response: body: - string: '{"value":[{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep1000003.mysql.database.azure.com","earliestRestoreDate":"2019-07-01T06:51:14.403+00:00","replicationRole":"Replica","masterServerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","replicaCapacity":0},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep1000003","name":"azuredbclirep1000003","type":"Microsoft.DBforMySQL/servers"}]}' + string: '{"name":"2f516611-b5fd-4d0a-8659-c77a447c5829","status":"InProgress","startTime":"2020-03-03T02:36:12.94Z"}' headers: cache-control: - no-cache content-length: - - '1172' + - '107' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:52:36 GMT + - Tue, 03 Mar 2020 02:44:46 GMT expires: - '-1' pragma: @@ -2104,30 +1110,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - mysql server replica stop + - mysql server replica create Connection: - keep-alive ParameterSetName: - - -g -n --yes + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep1000003?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2f516611-b5fd-4d0a-8659-c77a447c5829?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep1000003.mysql.database.azure.com","earliestRestoreDate":"2019-07-01T06:51:14.403+00:00","replicationRole":"Replica","masterServerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","replicaCapacity":0},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep1000003","name":"azuredbclirep1000003","type":"Microsoft.DBforMySQL/servers"}' + string: '{"name":"2f516611-b5fd-4d0a-8659-c77a447c5829","status":"InProgress","startTime":"2020-03-03T02:36:12.94Z"}' headers: cache-control: - no-cache content-length: - - '1160' + - '107' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:52:39 GMT + - Tue, 03 Mar 2020 02:45:16 GMT expires: - '-1' pragma: @@ -2146,60 +1150,52 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"replicationRole": "None"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - mysql server replica stop + - mysql server replica create Connection: - keep-alive - Content-Length: - - '43' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n --yes + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep1000003?api-version=2017-12-01 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2f516611-b5fd-4d0a-8659-c77a447c5829?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2019-07-01T06:52:40.397Z"}' + string: '{"name":"2f516611-b5fd-4d0a-8659-c77a447c5829","status":"InProgress","startTime":"2020-03-03T02:36:12.94Z"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/bd5a9ccd-7a38-48bc-9ba8-8d977f6ae800?api-version=2017-12-01 cache-control: - no-cache content-length: - - '74' + - '107' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:52:39 GMT + - Tue, 03 Mar 2020 02:45:46 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/bd5a9ccd-7a38-48bc-9ba8-8d977f6ae800?api-version=2017-12-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2208,28 +1204,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - mysql server replica stop + - mysql server replica create Connection: - keep-alive ParameterSetName: - - -g -n --yes + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/bd5a9ccd-7a38-48bc-9ba8-8d977f6ae800?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2f516611-b5fd-4d0a-8659-c77a447c5829?api-version=2017-12-01 response: body: - string: '{"name":"bd5a9ccd-7a38-48bc-9ba8-8d977f6ae800","status":"Succeeded","startTime":"2019-07-01T06:52:40.397Z"}' + string: '{"name":"2f516611-b5fd-4d0a-8659-c77a447c5829","status":"Succeeded","startTime":"2020-03-03T02:36:12.94Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '106' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:53:40 GMT + - Tue, 03 Mar 2020 02:46:15 GMT expires: - '-1' pragma: @@ -2255,28 +1251,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - mysql server replica stop + - mysql server replica create Connection: - keep-alive ParameterSetName: - - -g -n --yes + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep1000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep1000003.mysql.database.azure.com","earliestRestoreDate":"2019-07-01T06:51:14.403+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep1000003","name":"azuredbclirep1000003","type":"Microsoft.DBforMySQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep1000003.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:48:14.21+00:00","replicationRole":"Replica","masterServerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","replicaCapacity":0,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep1000003","name":"azuredbclirep1000003","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '943' + - '1297' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:53:42 GMT + - Tue, 03 Mar 2020 02:46:16 GMT expires: - '-1' pragma: @@ -2308,24 +1304,24 @@ interactions: ParameterSetName: - -g --name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.mysql.database.azure.com","earliestRestoreDate":"2019-07-01T06:36:19.28+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforMySQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:09.837+00:00","replicationRole":"Master","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '850' + - '990' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:53:43 GMT + - Tue, 03 Mar 2020 02:46:17 GMT expires: - '-1' pragma: @@ -2351,30 +1347,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - mysql server replica create + - mysql server replica list Connection: - keep-alive ParameterSetName: - - -g -n --source-server + - -g -s User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/replicas?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.mysql.database.azure.com","earliestRestoreDate":"2019-07-01T06:36:19.28+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforMySQL/servers"}' + string: '{"value":[{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep1000003.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:48:14.21+00:00","replicationRole":"Replica","masterServerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","replicaCapacity":0,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep1000003","name":"azuredbclirep1000003","type":"Microsoft.DBforMySQL/servers"}]}' headers: cache-control: - no-cache content-length: - - '850' + - '1309' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:53:45 GMT + - Tue, 03 Mar 2020 02:46:18 GMT expires: - '-1' pragma: @@ -2393,109 +1389,109 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"sku": {"name": "GP_Gen5_2"}, "properties": {"createMode": "Replica", - "sourceServerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002"}, - "location": "brazilsouth"}\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - mysql server replica create + - mysql server replica stop Connection: - keep-alive - Content-Length: - - '334' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n --source-server + - -g -n --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep2000004?api-version=2017-12-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep1000003?api-version=2017-12-01 response: body: - string: '{"operation":"CreateElasticServerContinuousCopy","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep1000003.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:48:14.21+00:00","replicationRole":"Replica","masterServerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","replicaCapacity":0,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep1000003","name":"azuredbclirep1000003","type":"Microsoft.DBforMySQL/servers"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 cache-control: - no-cache content-length: - - '88' + - '1297' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:53:47 GMT + - Tue, 03 Mar 2020 02:46:19 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"properties": {"replicationRole": "None"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - mysql server replica create + - mysql server replica stop Connection: - keep-alive + Content-Length: + - '43' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n --source-server + - -g -n --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep1000003?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-03T02:46:19.777Z"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ae16018e-a061-41dc-9d42-2e06bd150790?api-version=2017-12-01 cache-control: - no-cache content-length: - - '108' + - '74' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:54:18 GMT + - Tue, 03 Mar 2020 02:46:19 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/ae16018e-a061-41dc-9d42-2e06bd150790?api-version=2017-12-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2504,28 +1500,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - mysql server replica create + - mysql server replica stop Connection: - keep-alive ParameterSetName: - - -g -n --source-server + - -g -n --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ae16018e-a061-41dc-9d42-2e06bd150790?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"name":"ae16018e-a061-41dc-9d42-2e06bd150790","status":"Succeeded","startTime":"2020-03-03T02:46:19.777Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:54:49 GMT + - Tue, 03 Mar 2020 02:47:20 GMT expires: - '-1' pragma: @@ -2551,28 +1547,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - mysql server replica create + - mysql server replica stop Connection: - keep-alive ParameterSetName: - - -g -n --source-server + - -g -n --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep1000003?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep1000003.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:48:14.21+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep1000003","name":"azuredbclirep1000003","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '108' + - '1080' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:55:20 GMT + - Tue, 03 Mar 2020 02:47:20 GMT expires: - '-1' pragma: @@ -2598,28 +1594,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - mysql server replica create + - mysql server show Connection: - keep-alive ParameterSetName: - - -g -n --source-server + - -g --name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:09.837+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '108' + - '988' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:55:52 GMT + - Tue, 03 Mar 2020 02:47:21 GMT expires: - '-1' pragma: @@ -2651,22 +1649,24 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:09.837+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '108' + - '988' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:56:22 GMT + - Tue, 03 Mar 2020 02:47:21 GMT expires: - '-1' pragma: @@ -2685,7 +1685,9 @@ interactions: code: 200 message: OK - request: - body: null + body: 'b''{"sku": {"name": "GP_Gen5_2"}, "properties": {"createMode": "Replica", + "sourceServerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002"}, + "location": "eastus"}''' headers: Accept: - application/json @@ -2695,42 +1697,50 @@ interactions: - mysql server replica create Connection: - keep-alive + Content-Length: + - '329' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep2000004?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"operation":"CreateElasticServerContinuousCopy","startTime":"2020-03-03T02:47:22.783Z"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fe49006b-ad34-4bad-92d6-d7052ef40a44?api-version=2017-12-01 cache-control: - no-cache content-length: - - '108' + - '88' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:56:53 GMT + - Tue, 03 Mar 2020 02:47:22 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/fe49006b-ad34-4bad-92d6-d7052ef40a44?api-version=2017-12-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2745,13 +1755,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fe49006b-ad34-4bad-92d6-d7052ef40a44?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"name":"fe49006b-ad34-4bad-92d6-d7052ef40a44","status":"InProgress","startTime":"2020-03-03T02:47:22.783Z"}' headers: cache-control: - no-cache @@ -2760,7 +1770,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:57:25 GMT + - Tue, 03 Mar 2020 02:47:52 GMT expires: - '-1' pragma: @@ -2792,13 +1802,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fe49006b-ad34-4bad-92d6-d7052ef40a44?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"name":"fe49006b-ad34-4bad-92d6-d7052ef40a44","status":"InProgress","startTime":"2020-03-03T02:47:22.783Z"}' headers: cache-control: - no-cache @@ -2807,7 +1817,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:57:56 GMT + - Tue, 03 Mar 2020 02:48:23 GMT expires: - '-1' pragma: @@ -2839,13 +1849,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fe49006b-ad34-4bad-92d6-d7052ef40a44?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"name":"fe49006b-ad34-4bad-92d6-d7052ef40a44","status":"InProgress","startTime":"2020-03-03T02:47:22.783Z"}' headers: cache-control: - no-cache @@ -2854,7 +1864,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:58:27 GMT + - Tue, 03 Mar 2020 02:48:53 GMT expires: - '-1' pragma: @@ -2886,13 +1896,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fe49006b-ad34-4bad-92d6-d7052ef40a44?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"name":"fe49006b-ad34-4bad-92d6-d7052ef40a44","status":"InProgress","startTime":"2020-03-03T02:47:22.783Z"}' headers: cache-control: - no-cache @@ -2901,7 +1911,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:58:58 GMT + - Tue, 03 Mar 2020 02:49:22 GMT expires: - '-1' pragma: @@ -2933,13 +1943,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fe49006b-ad34-4bad-92d6-d7052ef40a44?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"name":"fe49006b-ad34-4bad-92d6-d7052ef40a44","status":"InProgress","startTime":"2020-03-03T02:47:22.783Z"}' headers: cache-control: - no-cache @@ -2948,7 +1958,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 06:59:29 GMT + - Tue, 03 Mar 2020 02:49:53 GMT expires: - '-1' pragma: @@ -2980,13 +1990,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fe49006b-ad34-4bad-92d6-d7052ef40a44?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"name":"fe49006b-ad34-4bad-92d6-d7052ef40a44","status":"InProgress","startTime":"2020-03-03T02:47:22.783Z"}' headers: cache-control: - no-cache @@ -2995,7 +2005,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 07:00:00 GMT + - Tue, 03 Mar 2020 02:50:23 GMT expires: - '-1' pragma: @@ -3027,13 +2037,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fe49006b-ad34-4bad-92d6-d7052ef40a44?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"name":"fe49006b-ad34-4bad-92d6-d7052ef40a44","status":"InProgress","startTime":"2020-03-03T02:47:22.783Z"}' headers: cache-control: - no-cache @@ -3042,7 +2052,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 07:00:31 GMT + - Tue, 03 Mar 2020 02:50:53 GMT expires: - '-1' pragma: @@ -3074,13 +2084,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fe49006b-ad34-4bad-92d6-d7052ef40a44?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"name":"fe49006b-ad34-4bad-92d6-d7052ef40a44","status":"InProgress","startTime":"2020-03-03T02:47:22.783Z"}' headers: cache-control: - no-cache @@ -3089,7 +2099,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 07:01:02 GMT + - Tue, 03 Mar 2020 02:51:23 GMT expires: - '-1' pragma: @@ -3121,13 +2131,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fe49006b-ad34-4bad-92d6-d7052ef40a44?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"name":"fe49006b-ad34-4bad-92d6-d7052ef40a44","status":"InProgress","startTime":"2020-03-03T02:47:22.783Z"}' headers: cache-control: - no-cache @@ -3136,7 +2146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 07:01:33 GMT + - Tue, 03 Mar 2020 02:51:54 GMT expires: - '-1' pragma: @@ -3168,13 +2178,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fe49006b-ad34-4bad-92d6-d7052ef40a44?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"name":"fe49006b-ad34-4bad-92d6-d7052ef40a44","status":"InProgress","startTime":"2020-03-03T02:47:22.783Z"}' headers: cache-control: - no-cache @@ -3183,7 +2193,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 07:02:04 GMT + - Tue, 03 Mar 2020 02:52:24 GMT expires: - '-1' pragma: @@ -3215,13 +2225,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fe49006b-ad34-4bad-92d6-d7052ef40a44?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"name":"fe49006b-ad34-4bad-92d6-d7052ef40a44","status":"InProgress","startTime":"2020-03-03T02:47:22.783Z"}' headers: cache-control: - no-cache @@ -3230,7 +2240,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 07:02:35 GMT + - Tue, 03 Mar 2020 02:52:54 GMT expires: - '-1' pragma: @@ -3262,13 +2272,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fe49006b-ad34-4bad-92d6-d7052ef40a44?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"name":"fe49006b-ad34-4bad-92d6-d7052ef40a44","status":"InProgress","startTime":"2020-03-03T02:47:22.783Z"}' headers: cache-control: - no-cache @@ -3277,7 +2287,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 07:03:07 GMT + - Tue, 03 Mar 2020 02:53:24 GMT expires: - '-1' pragma: @@ -3309,13 +2319,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fe49006b-ad34-4bad-92d6-d7052ef40a44?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"name":"fe49006b-ad34-4bad-92d6-d7052ef40a44","status":"InProgress","startTime":"2020-03-03T02:47:22.783Z"}' headers: cache-control: - no-cache @@ -3324,7 +2334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 07:03:38 GMT + - Tue, 03 Mar 2020 02:53:55 GMT expires: - '-1' pragma: @@ -3356,13 +2366,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fe49006b-ad34-4bad-92d6-d7052ef40a44?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"name":"fe49006b-ad34-4bad-92d6-d7052ef40a44","status":"InProgress","startTime":"2020-03-03T02:47:22.783Z"}' headers: cache-control: - no-cache @@ -3371,7 +2381,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 07:04:09 GMT + - Tue, 03 Mar 2020 02:54:24 GMT expires: - '-1' pragma: @@ -3403,13 +2413,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fe49006b-ad34-4bad-92d6-d7052ef40a44?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"name":"fe49006b-ad34-4bad-92d6-d7052ef40a44","status":"InProgress","startTime":"2020-03-03T02:47:22.783Z"}' headers: cache-control: - no-cache @@ -3418,7 +2428,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 07:04:40 GMT + - Tue, 03 Mar 2020 02:54:55 GMT expires: - '-1' pragma: @@ -3450,13 +2460,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fe49006b-ad34-4bad-92d6-d7052ef40a44?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"name":"fe49006b-ad34-4bad-92d6-d7052ef40a44","status":"InProgress","startTime":"2020-03-03T02:47:22.783Z"}' headers: cache-control: - no-cache @@ -3465,7 +2475,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 07:05:11 GMT + - Tue, 03 Mar 2020 02:55:25 GMT expires: - '-1' pragma: @@ -3497,13 +2507,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fe49006b-ad34-4bad-92d6-d7052ef40a44?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"name":"fe49006b-ad34-4bad-92d6-d7052ef40a44","status":"InProgress","startTime":"2020-03-03T02:47:22.783Z"}' headers: cache-control: - no-cache @@ -3512,7 +2522,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 07:05:42 GMT + - Tue, 03 Mar 2020 02:55:56 GMT expires: - '-1' pragma: @@ -3544,13 +2554,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fe49006b-ad34-4bad-92d6-d7052ef40a44?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"name":"fe49006b-ad34-4bad-92d6-d7052ef40a44","status":"InProgress","startTime":"2020-03-03T02:47:22.783Z"}' headers: cache-control: - no-cache @@ -3559,7 +2569,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 07:06:13 GMT + - Tue, 03 Mar 2020 02:56:26 GMT expires: - '-1' pragma: @@ -3591,13 +2601,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fe49006b-ad34-4bad-92d6-d7052ef40a44?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"InProgress","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"name":"fe49006b-ad34-4bad-92d6-d7052ef40a44","status":"InProgress","startTime":"2020-03-03T02:47:22.783Z"}' headers: cache-control: - no-cache @@ -3606,7 +2616,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 07:06:44 GMT + - Tue, 03 Mar 2020 02:56:55 GMT expires: - '-1' pragma: @@ -3638,13 +2648,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1be0eba1-47b3-4473-a22e-087fe576544b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fe49006b-ad34-4bad-92d6-d7052ef40a44?api-version=2017-12-01 response: body: - string: '{"name":"1be0eba1-47b3-4473-a22e-087fe576544b","status":"Succeeded","startTime":"2019-07-01T06:53:47.507Z"}' + string: '{"name":"fe49006b-ad34-4bad-92d6-d7052ef40a44","status":"Succeeded","startTime":"2020-03-03T02:47:22.783Z"}' headers: cache-control: - no-cache @@ -3653,7 +2663,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 07:07:15 GMT + - Tue, 03 Mar 2020 02:57:25 GMT expires: - '-1' pragma: @@ -3685,22 +2695,22 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep2000004?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep2000004.mysql.database.azure.com","earliestRestoreDate":"2019-07-01T07:05:01.993+00:00","replicationRole":"Replica","masterServerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","replicaCapacity":0},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep2000004","name":"azuredbclirep2000004","type":"Microsoft.DBforMySQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep2000004.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:59:23.47+00:00","replicationRole":"Replica","masterServerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","replicaCapacity":0,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep2000004","name":"azuredbclirep2000004","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '1160' + - '1297' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 07:07:17 GMT + - Tue, 03 Mar 2020 02:57:26 GMT expires: - '-1' pragma: @@ -3734,30 +2744,30 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002?api-version=2017-12-01 response: body: - string: '{"operation":"DropElasticServer","startTime":"2019-07-01T07:07:20.533Z"}' + string: '{"operation":"DropElasticServer","startTime":"2020-03-03T02:57:28.21Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f401c6b6-3e03-41dc-86a5-6e4250f12ce8?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4f798eb2-9219-42bf-b264-7b07644a2144?api-version=2017-12-01 cache-control: - no-cache content-length: - - '72' + - '71' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 07:07:20 GMT + - Tue, 03 Mar 2020 02:57:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/f401c6b6-3e03-41dc-86a5-6e4250f12ce8?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/4f798eb2-9219-42bf-b264-7b07644a2144?api-version=2017-12-01 pragma: - no-cache server: @@ -3767,7 +2777,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -3785,22 +2795,22 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f401c6b6-3e03-41dc-86a5-6e4250f12ce8?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4f798eb2-9219-42bf-b264-7b07644a2144?api-version=2017-12-01 response: body: - string: '{"name":"f401c6b6-3e03-41dc-86a5-6e4250f12ce8","status":"Succeeded","startTime":"2019-07-01T07:07:20.533Z"}' + string: '{"name":"4f798eb2-9219-42bf-b264-7b07644a2144","status":"Succeeded","startTime":"2020-03-03T02:57:28.21Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '106' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 07:07:36 GMT + - Tue, 03 Mar 2020 02:57:43 GMT expires: - '-1' pragma: @@ -3832,24 +2842,24 @@ interactions: ParameterSetName: - -g --name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep2000004?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep2000004.mysql.database.azure.com","earliestRestoreDate":"2019-07-01T07:05:01.993+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep2000004","name":"azuredbclirep2000004","type":"Microsoft.DBforMySQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep2000004.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:59:23.47+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep2000004","name":"azuredbclirep2000004","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '943' + - '1080' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 07:12:39 GMT + - Tue, 03 Mar 2020 03:02:44 GMT expires: - '-1' pragma: @@ -3883,30 +2893,30 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep1000003?api-version=2017-12-01 response: body: - string: '{"operation":"DropElasticServer","startTime":"2019-07-01T07:12:41.87Z"}' + string: '{"operation":"DropElasticServer","startTime":"2020-03-03T03:02:45.727Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/d4d8819f-b606-4211-8ad3-0e2650fe1c52?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a9e06383-cbd9-4995-97f3-53427acb0ce8?api-version=2017-12-01 cache-control: - no-cache content-length: - - '71' + - '72' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 07:12:41 GMT + - Tue, 03 Mar 2020 03:02:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/d4d8819f-b606-4211-8ad3-0e2650fe1c52?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a9e06383-cbd9-4995-97f3-53427acb0ce8?api-version=2017-12-01 pragma: - no-cache server: @@ -3934,22 +2944,22 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/d4d8819f-b606-4211-8ad3-0e2650fe1c52?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a9e06383-cbd9-4995-97f3-53427acb0ce8?api-version=2017-12-01 response: body: - string: '{"name":"d4d8819f-b606-4211-8ad3-0e2650fe1c52","status":"Succeeded","startTime":"2019-07-01T07:12:41.87Z"}' + string: '{"name":"a9e06383-cbd9-4995-97f3-53427acb0ce8","status":"Succeeded","startTime":"2020-03-03T03:02:45.727Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 07:12:57 GMT + - Tue, 03 Mar 2020 03:03:00 GMT expires: - '-1' pragma: @@ -3983,18 +2993,18 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclirep2000004?api-version=2017-12-01 response: body: - string: '{"operation":"DropElasticServer","startTime":"2019-07-01T07:13:01.09Z"}' + string: '{"operation":"DropElasticServer","startTime":"2020-03-03T03:03:02.32Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/2a36d41b-a497-4926-acbc-ace971f57dcb?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d439f5e3-de6a-47f5-a9a8-0bedceb310e5?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -4002,11 +3012,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 07:13:01 GMT + - Tue, 03 Mar 2020 03:03:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/2a36d41b-a497-4926-acbc-ace971f57dcb?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/d439f5e3-de6a-47f5-a9a8-0bedceb310e5?api-version=2017-12-01 pragma: - no-cache server: @@ -4016,7 +3026,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -4034,13 +3044,13 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/2a36d41b-a497-4926-acbc-ace971f57dcb?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d439f5e3-de6a-47f5-a9a8-0bedceb310e5?api-version=2017-12-01 response: body: - string: '{"name":"2a36d41b-a497-4926-acbc-ace971f57dcb","status":"Succeeded","startTime":"2019-07-01T07:13:01.09Z"}' + string: '{"name":"d439f5e3-de6a-47f5-a9a8-0bedceb310e5","status":"Succeeded","startTime":"2020-03-03T03:03:02.32Z"}' headers: cache-control: - no-cache @@ -4049,7 +3059,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2019 07:13:17 GMT + - Tue, 03 Mar 2020 03:03:17 GMT expires: - '-1' pragma: @@ -4067,51 +3077,4 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 01 Jul 2019 07:13:20 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc2STJBVVpWTlZIVE5BN0k1SEJEUUxGU1FHTlpVWE9WSVNJRnxCRTc5NDM3QjNCMjJGRDc1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-07-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_mysql_server_mgmt.yaml b/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_mysql_server_mgmt.yaml index 8c4b661dc29..4fcb50c93b5 100644 --- a/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_mysql_server_mgmt.yaml +++ b/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_mysql_server_mgmt.yaml @@ -1,109 +1,65 @@ interactions: - request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-03-20T02:44:58Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.60 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-03-20T02:44:58Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 02:44:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-03-20T02:44:59Z"}}' + body: '{"sku": {"name": "GP_Gen5_2"}, "properties": {"storageProfile": {"backupRetentionDays": + 10, "geoRedundantBackup": "Enabled", "storageAutogrow": "Enabled"}, "createMode": + "Default", "administratorLogin": "cloudsa", "administratorLoginPassword": "SecretPassword123"}, + "location": "eastus", "tags": {"key": "1"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - group create + - mysql server create Connection: - keep-alive Content-Length: - - '110' + - '309' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - --location --name --tag + - -g --name -l --admin-user --admin-password --sku-name --tags --geo-redundant-backup + --backup-retention User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000002?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002","name":"clitest.rg000002","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-03-20T02:44:59Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-03T02:29:13.27Z"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/66bfcfe0-0435-4b76-9eeb-02662d5a329d?api-version=2017-12-01 cache-control: - no-cache content-length: - - '384' + - '73' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:44:59 GMT + - Tue, 03 Mar 2020 02:29:13 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/66bfcfe0-0435-4b76-9eeb-02662d5a329d?api-version=2017-12-01 pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: - code: 201 - message: Created + code: 202 + message: Accepted - request: - body: '{"sku": {"name": "GP_Gen5_2"}, "properties": {"storageProfile": {"backupRetentionDays": - 10, "geoRedundantBackup": "Enabled"}, "createMode": "Default", "administratorLogin": - "cloudsa", "administratorLoginPassword": "SecretPassword123"}, "location": "koreasouth", - "tags": {"key": "1"}}' + body: null headers: Accept: - application/json @@ -113,51 +69,43 @@ interactions: - mysql server create Connection: - keep-alive - Content-Length: - - '283' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g --name -l --admin-user --admin-password --sku-name --tags --geo-redundant-backup --backup-retention User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/66bfcfe0-0435-4b76-9eeb-02662d5a329d?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2019-03-20T02:45:01.63Z"}' + string: '{"name":"66bfcfe0-0435-4b76-9eeb-02662d5a329d","status":"InProgress","startTime":"2020-03-03T02:29:13.27Z"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/004ac829-8db1-48c8-ba0e-d7f886f4a993?api-version=2017-12-01 cache-control: - no-cache content-length: - - '73' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:45:01 GMT + - Tue, 03 Mar 2020 02:30:13 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/operationResults/004ac829-8db1-48c8-ba0e-d7f886f4a993?api-version=2017-12-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -173,22 +121,22 @@ interactions: - -g --name -l --admin-user --admin-password --sku-name --tags --geo-redundant-backup --backup-retention User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/004ac829-8db1-48c8-ba0e-d7f886f4a993?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/66bfcfe0-0435-4b76-9eeb-02662d5a329d?api-version=2017-12-01 response: body: - string: '{"name":"004ac829-8db1-48c8-ba0e-d7f886f4a993","status":"InProgress","startTime":"2019-03-20T02:45:01.63Z"}' + string: '{"name":"66bfcfe0-0435-4b76-9eeb-02662d5a329d","status":"Succeeded","startTime":"2020-03-03T02:29:13.27Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '106' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:46:02 GMT + - Tue, 03 Mar 2020 02:31:13 GMT expires: - '-1' pragma: @@ -221,22 +169,22 @@ interactions: - -g --name -l --admin-user --admin-password --sku-name --tags --geo-redundant-backup --backup-retention User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/004ac829-8db1-48c8-ba0e-d7f886f4a993?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"name":"004ac829-8db1-48c8-ba0e-d7f886f4a993","status":"InProgress","startTime":"2019-03-20T02:45:01.63Z"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:13.597+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '107' + - '1100' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:47:03 GMT + - Tue, 03 Mar 2020 02:31:13 GMT expires: - '-1' pragma: @@ -262,29 +210,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - mysql server create + - mysql server show Connection: - keep-alive ParameterSetName: - - -g --name -l --admin-user --admin-password --sku-name --tags --geo-redundant-backup - --backup-retention + - -g --name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/004ac829-8db1-48c8-ba0e-d7f886f4a993?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"name":"004ac829-8db1-48c8-ba0e-d7f886f4a993","status":"InProgress","startTime":"2019-03-20T02:45:01.63Z"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:13.597+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '107' + - '1100' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:48:03 GMT + - Tue, 03 Mar 2020 02:31:15 GMT expires: - '-1' pragma: @@ -310,29 +259,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - mysql server create + - mysql server update Connection: - keep-alive ParameterSetName: - - -g --name -l --admin-user --admin-password --sku-name --tags --geo-redundant-backup - --backup-retention + - -g --name --admin-password --ssl-enforcement --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/004ac829-8db1-48c8-ba0e-d7f886f4a993?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"name":"004ac829-8db1-48c8-ba0e-d7f886f4a993","status":"InProgress","startTime":"2019-03-20T02:45:01.63Z"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:13.597+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '107' + - '1100' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:49:04 GMT + - Tue, 03 Mar 2020 02:31:15 GMT expires: - '-1' pragma: @@ -351,53 +301,62 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"storageProfile": {"backupRetentionDays": 10, "geoRedundantBackup": + "Enabled", "storageMB": 5120, "storageAutogrow": "Enabled"}, "administratorLoginPassword": + "SecretPassword456", "sslEnforcement": "Disabled"}, "tags": {"key": "2"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - mysql server create + - mysql server update Connection: - keep-alive + Content-Length: + - '248' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g --name -l --admin-user --admin-password --sku-name --tags --geo-redundant-backup - --backup-retention + - -g --name --admin-password --ssl-enforcement --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/004ac829-8db1-48c8-ba0e-d7f886f4a993?api-version=2017-12-01 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"name":"004ac829-8db1-48c8-ba0e-d7f886f4a993","status":"Succeeded","startTime":"2019-03-20T02:45:01.63Z"}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-03T02:31:17.037Z"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a836d18d-eb4a-4511-8889-bb1b91a6c7e9?api-version=2017-12-01 cache-control: - no-cache content-length: - - '106' + - '74' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:50:06 GMT + - Tue, 03 Mar 2020 02:31:16 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a836d18d-eb4a-4511-8889-bb1b91a6c7e9?api-version=2017-12-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -406,29 +365,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - mysql server create + - mysql server update Connection: - keep-alive ParameterSetName: - - -g --name -l --admin-user --admin-password --sku-name --tags --geo-redundant-backup - --backup-retention + - -g --name --admin-password --ssl-enforcement --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a836d18d-eb4a-4511-8889-bb1b91a6c7e9?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2019-03-20T02:55:01.927+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' + string: '{"name":"a836d18d-eb4a-4511-8889-bb1b91a6c7e9","status":"Succeeded","startTime":"2020-03-03T02:31:17.037Z"}' headers: cache-control: - no-cache content-length: - - '962' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:50:06 GMT + - Tue, 03 Mar 2020 02:32:17 GMT expires: - '-1' pragma: @@ -454,30 +412,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - mysql server show + - mysql server update Connection: - keep-alive ParameterSetName: - - -g --name + - -g --name --admin-password --ssl-enforcement --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - accept-language: - - en-US + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2019-03-20T02:55:01.927+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:13.597+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '962' + - '1101' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:50:08 GMT + - Tue, 03 Mar 2020 02:32:17 GMT expires: - '-1' pragma: @@ -507,26 +463,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --name --admin-password --ssl-enforcement --tags + - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2019-03-20T02:55:01.927+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:13.597+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '962' + - '1101' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:50:09 GMT + - Tue, 03 Mar 2020 02:32:18 GMT expires: - '-1' pragma: @@ -545,9 +501,8 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"storageProfile": {"backupRetentionDays": 10, "geoRedundantBackup": - "Enabled", "storageMB": 5120}, "administratorLoginPassword": "SecretPassword456", - "sslEnforcement": "Disabled"}, "tags": {"key": "2"}}' + body: '{"sku": {"name": "GP_Gen5_4"}, "properties": {"storageProfile": {"backupRetentionDays": + 10, "geoRedundantBackup": "Enabled", "storageMB": 5120, "storageAutogrow": "Enabled"}}}' headers: Accept: - application/json @@ -558,24 +513,24 @@ interactions: Connection: - keep-alive Content-Length: - - '218' + - '175' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g --name --admin-password --ssl-enforcement --tags + - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2019-03-20T02:50:11.467Z"}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-03T02:32:19.257Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/240d0ba4-c3b4-4fe2-982b-012fd61acfc7?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a24d1d31-260e-4877-9878-8cb63c724fac?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -583,11 +538,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:50:11 GMT + - Tue, 03 Mar 2020 02:32:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/operationResults/240d0ba4-c3b4-4fe2-982b-012fd61acfc7?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a24d1d31-260e-4877-9878-8cb63c724fac?api-version=2017-12-01 pragma: - no-cache server: @@ -613,15 +568,15 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --name --admin-password --ssl-enforcement --tags + - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/240d0ba4-c3b4-4fe2-982b-012fd61acfc7?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a24d1d31-260e-4877-9878-8cb63c724fac?api-version=2017-12-01 response: body: - string: '{"name":"240d0ba4-c3b4-4fe2-982b-012fd61acfc7","status":"Succeeded","startTime":"2019-03-20T02:50:11.467Z"}' + string: '{"name":"a24d1d31-260e-4877-9878-8cb63c724fac","status":"Succeeded","startTime":"2020-03-03T02:32:19.257Z"}' headers: cache-control: - no-cache @@ -630,7 +585,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:51:11 GMT + - Tue, 03 Mar 2020 02:33:19 GMT expires: - '-1' pragma: @@ -660,24 +615,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --name --admin-password --ssl-enforcement --tags + - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2019-03-20T02:55:01.927+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:13.597+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '963' + - '1101' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:51:12 GMT + - Tue, 03 Mar 2020 02:33:19 GMT expires: - '-1' pragma: @@ -703,30 +658,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - mysql server update + - mysql server show Connection: - keep-alive ParameterSetName: - - -g --name --sku-name + - -g --name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2019-03-20T02:55:01.927+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:13.597+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '963' + - '1101' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:51:14 GMT + - Tue, 03 Mar 2020 02:33:20 GMT expires: - '-1' pragma: @@ -745,8 +700,7 @@ interactions: code: 200 message: OK - request: - body: '{"sku": {"name": "GP_Gen5_4"}, "properties": {"storageProfile": {"backupRetentionDays": - 10, "geoRedundantBackup": "Enabled", "storageMB": 5120}}}' + body: null headers: Accept: - application/json @@ -756,52 +710,47 @@ interactions: - mysql server update Connection: - keep-alive - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US - method: PATCH + method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2019-03-20T02:51:16.21Z"}' + string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:13.597+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/e8307f3b-eff2-4332-9297-d894f6e47b40?api-version=2017-12-01 cache-control: - no-cache content-length: - - '73' + - '1101' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:51:15 GMT + - Tue, 03 Mar 2020 02:33:20 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/operationResults/e8307f3b-eff2-4332-9297-d894f6e47b40?api-version=2017-12-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"sku": {"name": "GP_Gen5_2"}, "properties": {"storageProfile": {"backupRetentionDays": + 10, "geoRedundantBackup": "Enabled", "storageMB": 5120, "storageAutogrow": "Enabled"}}}' headers: Accept: - application/json @@ -811,42 +760,50 @@ interactions: - mysql server update Connection: - keep-alive + Content-Length: + - '175' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/e8307f3b-eff2-4332-9297-d894f6e47b40?api-version=2017-12-01 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"name":"e8307f3b-eff2-4332-9297-d894f6e47b40","status":"Succeeded","startTime":"2019-03-20T02:51:16.21Z"}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-03T02:33:21.77Z"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c1bf260a-9458-4aeb-bb35-6db5f5147b0c?api-version=2017-12-01 cache-control: - no-cache content-length: - - '106' + - '73' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:52:16 GMT + - Tue, 03 Mar 2020 02:33:21 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/c1bf260a-9458-4aeb-bb35-6db5f5147b0c?api-version=2017-12-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -861,22 +818,22 @@ interactions: ParameterSetName: - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c1bf260a-9458-4aeb-bb35-6db5f5147b0c?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2019-03-20T02:55:01.927+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' + string: '{"name":"c1bf260a-9458-4aeb-bb35-6db5f5147b0c","status":"Succeeded","startTime":"2020-03-03T02:33:21.77Z"}' headers: cache-control: - no-cache content-length: - - '963' + - '106' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:52:17 GMT + - Tue, 03 Mar 2020 02:34:22 GMT expires: - '-1' pragma: @@ -902,30 +859,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - mysql server show + - mysql server update Connection: - keep-alive ParameterSetName: - - -g --name + - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - accept-language: - - en-US + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2019-03-20T02:55:01.927+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:13.597+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '963' + - '1101' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:52:19 GMT + - Tue, 03 Mar 2020 02:34:22 GMT expires: - '-1' pragma: @@ -955,26 +910,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --name --sku-name + - -g --name --ssl-enforcement User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2019-03-20T02:55:01.927+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:13.597+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '963' + - '1101' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:52:19 GMT + - Tue, 03 Mar 2020 02:34:23 GMT expires: - '-1' pragma: @@ -993,8 +948,9 @@ interactions: code: 200 message: OK - request: - body: '{"sku": {"name": "GP_Gen5_2"}, "properties": {"storageProfile": {"backupRetentionDays": - 10, "geoRedundantBackup": "Enabled", "storageMB": 5120}}}' + body: '{"properties": {"storageProfile": {"backupRetentionDays": 10, "geoRedundantBackup": + "Enabled", "storageMB": 5120, "storageAutogrow": "Enabled"}, "sslEnforcement": + "Enabled"}}' headers: Accept: - application/json @@ -1005,36 +961,36 @@ interactions: Connection: - keep-alive Content-Length: - - '145' + - '174' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g --name --sku-name + - -g --name --ssl-enforcement User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2019-03-20T02:52:22.473Z"}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-03T02:34:23.8Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/e4c1a958-6078-475e-ad8f-7d546bf0ce0c?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/104c7f9c-f6f0-407b-8f19-6c30bab9334a?api-version=2017-12-01 cache-control: - no-cache content-length: - - '74' + - '72' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:52:21 GMT + - Tue, 03 Mar 2020 02:34:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/operationResults/e4c1a958-6078-475e-ad8f-7d546bf0ce0c?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/104c7f9c-f6f0-407b-8f19-6c30bab9334a?api-version=2017-12-01 pragma: - no-cache server: @@ -1044,7 +1000,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -1060,24 +1016,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --name --sku-name + - -g --name --ssl-enforcement User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/e4c1a958-6078-475e-ad8f-7d546bf0ce0c?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/104c7f9c-f6f0-407b-8f19-6c30bab9334a?api-version=2017-12-01 response: body: - string: '{"name":"e4c1a958-6078-475e-ad8f-7d546bf0ce0c","status":"Succeeded","startTime":"2019-03-20T02:52:22.473Z"}' + string: '{"name":"104c7f9c-f6f0-407b-8f19-6c30bab9334a","status":"Succeeded","startTime":"2020-03-03T02:34:23.8Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '105' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:53:22 GMT + - Tue, 03 Mar 2020 02:35:23 GMT expires: - '-1' pragma: @@ -1107,24 +1063,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --name --sku-name + - -g --name --ssl-enforcement User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2019-03-20T02:55:01.927+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:13.597+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '963' + - '1100' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:53:23 GMT + - Tue, 03 Mar 2020 02:35:23 GMT expires: - '-1' pragma: @@ -1154,26 +1110,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --name --ssl-enforcement + - -g --name --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2019-03-20T02:55:01.927+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:13.597+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '963' + - '1100' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:53:25 GMT + - Tue, 03 Mar 2020 02:35:24 GMT expires: - '-1' pragma: @@ -1193,7 +1149,8 @@ interactions: message: OK - request: body: '{"properties": {"storageProfile": {"backupRetentionDays": 10, "geoRedundantBackup": - "Enabled", "storageMB": 5120}, "sslEnforcement": "Enabled"}}' + "Enabled", "storageMB": 5120, "storageAutogrow": "Enabled"}}, "tags": {"key": + "3"}}' headers: Accept: - application/json @@ -1204,24 +1161,24 @@ interactions: Connection: - keep-alive Content-Length: - - '144' + - '167' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g --name --ssl-enforcement + - -g --name --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2019-03-20T02:53:27.46Z"}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-03T02:35:26.29Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/6d993c8f-de52-4a23-b147-4849327af444?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4766daf7-bcfe-4ac0-ba67-842e0eb112d1?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -1229,11 +1186,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:53:27 GMT + - Tue, 03 Mar 2020 02:35:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/operationResults/6d993c8f-de52-4a23-b147-4849327af444?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/4766daf7-bcfe-4ac0-ba67-842e0eb112d1?api-version=2017-12-01 pragma: - no-cache server: @@ -1243,7 +1200,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -1259,15 +1216,15 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --name --ssl-enforcement + - -g --name --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/6d993c8f-de52-4a23-b147-4849327af444?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4766daf7-bcfe-4ac0-ba67-842e0eb112d1?api-version=2017-12-01 response: body: - string: '{"name":"6d993c8f-de52-4a23-b147-4849327af444","status":"Succeeded","startTime":"2019-03-20T02:53:27.46Z"}' + string: '{"name":"4766daf7-bcfe-4ac0-ba67-842e0eb112d1","status":"Succeeded","startTime":"2020-03-03T02:35:26.29Z"}' headers: cache-control: - no-cache @@ -1276,7 +1233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:54:27 GMT + - Tue, 03 Mar 2020 02:36:26 GMT expires: - '-1' pragma: @@ -1306,24 +1263,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --name --ssl-enforcement + - -g --name --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2019-03-20T02:55:01.927+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:13.597+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '962' + - '1100' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:54:28 GMT + - Tue, 03 Mar 2020 02:36:26 GMT expires: - '-1' pragma: @@ -1349,30 +1306,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - mysql server update + - mysql server restore Connection: - keep-alive ParameterSetName: - - -g --name --tags + - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2019-03-20T02:55:01.927+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:13.597+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '962' + - '1100' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:54:30 GMT + - Tue, 03 Mar 2020 02:41:26 GMT expires: - '-1' pragma: @@ -1391,48 +1348,49 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"storageProfile": {"backupRetentionDays": 10, "geoRedundantBackup": - "Enabled", "storageMB": 5120}}, "tags": {"key": "3"}}' + body: 'b''{"properties": {"createMode": "PointInTimeRestore", "sourceServerId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003", + "restorePointInTime": "2020-03-03T02:41:27.171771Z"}, "location": "eastus"}''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - mysql server update + - mysql server restore Connection: - keep-alive Content-Length: - - '137' + - '394' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g --name --tags + - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMySQL/servers/azuredbclirestore000004?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2019-03-20T02:54:32.287Z"}' + string: '{"operation":"RestoreElasticServer","startTime":"2020-03-03T02:41:28.247Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/c7357f67-5e8a-4ef6-a1d4-b78bd7169084?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 cache-control: - no-cache content-length: - - '74' + - '75' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:54:32 GMT + - Tue, 03 Mar 2020 02:41:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/operationResults/c7357f67-5e8a-4ef6-a1d4-b78bd7169084?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 pragma: - no-cache server: @@ -1442,7 +1400,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -1454,28 +1412,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - mysql server update + - mysql server restore Connection: - keep-alive ParameterSetName: - - -g --name --tags + - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/c7357f67-5e8a-4ef6-a1d4-b78bd7169084?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"c7357f67-5e8a-4ef6-a1d4-b78bd7169084","status":"Succeeded","startTime":"2019-03-20T02:54:32.287Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:55:33 GMT + - Tue, 03 Mar 2020 02:41:37 GMT expires: - '-1' pragma: @@ -1501,28 +1459,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - mysql server update + - mysql server restore Connection: - keep-alive ParameterSetName: - - -g --name --tags + - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2019-03-20T02:55:01.927+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '962' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 02:55:33 GMT + - Tue, 03 Mar 2020 02:41:48 GMT expires: - '-1' pragma: @@ -1554,24 +1512,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - accept-language: - - en-US + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2019-03-20T02:55:01.927+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '962' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:00:34 GMT + - Tue, 03 Mar 2020 02:41:58 GMT expires: - '-1' pragma: @@ -1589,63 +1545,6 @@ interactions: status: code: 200 message: OK -- request: - body: 'b''b\''{"properties": {"createMode": "PointInTimeRestore", "sourceServerId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003", - "restorePointInTime": "2019-03-20T03:00:34.610089Z"}, "location": "koreasouth"}\''''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mysql server restore - Connection: - - keep-alive - Content-Length: - - '398' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g --name --source-server --restore-point-in-time - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMySQL/servers/azuredbclirestore000004?api-version=2017-12-01 - response: - body: - string: '{"operation":"RestoreElasticServer","startTime":"2019-03-20T03:00:36.71Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 - cache-control: - - no-cache - content-length: - - '74' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 03:00:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/operationResults/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted - request: body: null headers: @@ -1660,22 +1559,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:00:47 GMT + - Tue, 03 Mar 2020 02:42:08 GMT expires: - '-1' pragma: @@ -1707,22 +1606,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:00:58 GMT + - Tue, 03 Mar 2020 02:42:18 GMT expires: - '-1' pragma: @@ -1754,22 +1653,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:01:09 GMT + - Tue, 03 Mar 2020 02:42:29 GMT expires: - '-1' pragma: @@ -1801,22 +1700,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:01:19 GMT + - Tue, 03 Mar 2020 02:42:39 GMT expires: - '-1' pragma: @@ -1848,22 +1747,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:01:30 GMT + - Tue, 03 Mar 2020 02:42:49 GMT expires: - '-1' pragma: @@ -1895,22 +1794,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:01:42 GMT + - Tue, 03 Mar 2020 02:42:59 GMT expires: - '-1' pragma: @@ -1942,22 +1841,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:01:53 GMT + - Tue, 03 Mar 2020 02:43:09 GMT expires: - '-1' pragma: @@ -1989,22 +1888,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:02:03 GMT + - Tue, 03 Mar 2020 02:43:19 GMT expires: - '-1' pragma: @@ -2036,22 +1935,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:02:14 GMT + - Tue, 03 Mar 2020 02:43:30 GMT expires: - '-1' pragma: @@ -2083,22 +1982,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:02:25 GMT + - Tue, 03 Mar 2020 02:43:40 GMT expires: - '-1' pragma: @@ -2130,22 +2029,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:02:36 GMT + - Tue, 03 Mar 2020 02:43:50 GMT expires: - '-1' pragma: @@ -2177,22 +2076,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:02:47 GMT + - Tue, 03 Mar 2020 02:44:00 GMT expires: - '-1' pragma: @@ -2224,22 +2123,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:02:57 GMT + - Tue, 03 Mar 2020 02:44:10 GMT expires: - '-1' pragma: @@ -2271,22 +2170,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:03:08 GMT + - Tue, 03 Mar 2020 02:44:20 GMT expires: - '-1' pragma: @@ -2318,22 +2217,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:03:19 GMT + - Tue, 03 Mar 2020 02:44:30 GMT expires: - '-1' pragma: @@ -2365,22 +2264,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:03:30 GMT + - Tue, 03 Mar 2020 02:44:41 GMT expires: - '-1' pragma: @@ -2412,22 +2311,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:03:41 GMT + - Tue, 03 Mar 2020 02:44:51 GMT expires: - '-1' pragma: @@ -2459,22 +2358,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:03:51 GMT + - Tue, 03 Mar 2020 02:45:01 GMT expires: - '-1' pragma: @@ -2506,22 +2405,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:04:02 GMT + - Tue, 03 Mar 2020 02:45:11 GMT expires: - '-1' pragma: @@ -2553,22 +2452,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:04:13 GMT + - Tue, 03 Mar 2020 02:45:21 GMT expires: - '-1' pragma: @@ -2600,22 +2499,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:04:24 GMT + - Tue, 03 Mar 2020 02:45:31 GMT expires: - '-1' pragma: @@ -2647,22 +2546,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:04:35 GMT + - Tue, 03 Mar 2020 02:45:41 GMT expires: - '-1' pragma: @@ -2694,22 +2593,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:04:46 GMT + - Tue, 03 Mar 2020 02:45:52 GMT expires: - '-1' pragma: @@ -2741,22 +2640,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"InProgress","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"InProgress","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:04:56 GMT + - Tue, 03 Mar 2020 02:46:02 GMT expires: - '-1' pragma: @@ -2788,22 +2687,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/0b0231b2-89e2-4348-99f6-f1867a0f4717?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e0dfe1bf-89e4-449d-83d5-2f19ba325c3e?api-version=2017-12-01 response: body: - string: '{"name":"0b0231b2-89e2-4348-99f6-f1867a0f4717","status":"Succeeded","startTime":"2019-03-20T03:00:36.71Z"}' + string: '{"name":"e0dfe1bf-89e4-449d-83d5-2f19ba325c3e","status":"Succeeded","startTime":"2020-03-03T02:41:28.247Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:05:06 GMT + - Tue, 03 Mar 2020 02:46:12 GMT expires: - '-1' pragma: @@ -2835,22 +2734,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMySQL/servers/azuredbclirestore000004?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.mysql.database.azure.com","earliestRestoreDate":"2019-03-20T03:10:36.913+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMySQL/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforMySQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:51:28.513+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMySQL/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '943' + - '1081' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:05:07 GMT + - Tue, 03 Mar 2020 02:46:13 GMT expires: - '-1' pragma: @@ -2882,24 +2781,24 @@ interactions: ParameterSetName: - -g --name --source-server -l --geo-redundant-backup --backup-retention User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2019-03-20T02:55:01.927+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:13.597+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}' headers: cache-control: - no-cache content-length: - - '962' + - '1100' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:05:09 GMT + - Tue, 03 Mar 2020 02:46:14 GMT expires: - '-1' pragma: @@ -2918,10 +2817,10 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"sku": {"name": "GP_Gen5_2"}, "properties": {"storageProfile": - {"backupRetentionDays": 20, "geoRedundantBackup": "Disabled"}, "createMode": - "GeoRestore", "sourceServerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003"}, - "location": "koreasouth"}\''''' + body: 'b''{"sku": {"name": "GP_Gen5_2"}, "properties": {"storageProfile": {"backupRetentionDays": + 20, "geoRedundantBackup": "Disabled"}, "createMode": "GeoRestore", "sourceServerId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003"}, + "location": "eastus"}''' headers: Accept: - application/json @@ -2932,36 +2831,36 @@ interactions: Connection: - keep-alive Content-Length: - - '448' + - '444' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g --name --source-server -l --geo-redundant-backup --backup-retention User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMySQL/servers/azuredbcligeorestore000005?api-version=2017-12-01 response: body: - string: '{"operation":"RestoreElasticServer","startTime":"2019-03-20T03:05:10.987Z"}' + string: '{"operation":"RestoreElasticServer","startTime":"2020-03-03T02:46:14.75Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/56639d09-0b92-406f-98be-e3171ce954d7?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/15b05df9-0000-4303-8802-bf0e42cbfe0a?api-version=2017-12-01 cache-control: - no-cache content-length: - - '75' + - '74' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:05:10 GMT + - Tue, 03 Mar 2020 02:46:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/operationResults/56639d09-0b92-406f-98be-e3171ce954d7?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/15b05df9-0000-4303-8802-bf0e42cbfe0a?api-version=2017-12-01 pragma: - no-cache server: @@ -2989,23 +2888,23 @@ interactions: ParameterSetName: - -g --name --source-server -l --geo-redundant-backup --backup-retention User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/56639d09-0b92-406f-98be-e3171ce954d7?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/15b05df9-0000-4303-8802-bf0e42cbfe0a?api-version=2017-12-01 response: body: - string: '{"name":"56639d09-0b92-406f-98be-e3171ce954d7","status":"Failed","startTime":"2019-03-20T03:05:10.987Z","error":{"code":"SubscriptionDoesNotHaveServer","message":"Subscription - ''8403da61-2731-4c0e-a00c-1ecd41e0d247'' does not have the server ''azuredbclitest000003''."}}' + string: '{"name":"15b05df9-0000-4303-8802-bf0e42cbfe0a","status":"Failed","startTime":"2020-03-03T02:46:14.75Z","error":{"code":"SubscriptionDoesNotHaveServer","message":"Subscription + ''cb33edf0-f7b3-405b-a766-592dd69a1987'' does not have the server ''azuredbclitest000003''."}}' headers: cache-control: - no-cache content-length: - - '309' + - '308' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:05:21 GMT + - Tue, 03 Mar 2020 02:46:25 GMT expires: - '-1' pragma: @@ -3037,24 +2936,24 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMySQL/servers?api-version=2017-12-01 response: body: - string: '{"value":[{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.mysql.database.azure.com","earliestRestoreDate":"2019-03-20T03:10:36.913+00:00","replicationRole":"","masterServerId":""},"location":"koreasouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMySQL/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforMySQL/servers"}]}' + string: '{"value":[{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:51:28.513+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMySQL/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforMySQL/servers"}]}' headers: cache-control: - no-cache content-length: - - '931' + - '1069' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:05:22 GMT + - Tue, 03 Mar 2020 02:46:25 GMT expires: - '-1' pragma: @@ -3084,25 +2983,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/servers?api-version=2017-12-01 response: body: - string: '{"value":[{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"pgtestvnet","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"mysqlvnetperftest.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.6310584+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VNETTesting/providers/Microsoft.DBforMySQL/servers/mysqlvnetperftest","name":"mysqlvnetperftest","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"pgtestvnet","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"mysqlvnetperftest02.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.6310584+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VNETTesting/providers/Microsoft.DBforMySQL/servers/mysqlvnetperftest02","name":"mysqlvnetperftest02","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"mysqlaas","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"etlibraz57master.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.6310584+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/etlixe/providers/Microsoft.DBforMySQL/servers/etlibraz57master","name":"etlibraz57master","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"mysqlaas","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"etlibraz57replica01.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.6310584+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/etlixe/providers/Microsoft.DBforMySQL/servers/etlibraz57replica01","name":"etlibraz57replica01","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"mysqlaas","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"etlibraz57restore.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.6310584+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/etlixe/providers/Microsoft.DBforMySQL/servers/etlibraz57restore","name":"etlibraz57restore","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep1ylkg4jx33jvekj4o24mj64datgq4h6f3wvav2loxovydnuo2c.mysql.database.azure.com","earliestRestoreDate":"2019-03-19T20:12:11.797+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvz4kfjcbwxyjrw7hcbs4axtsak6tjx6bl3xojwmrdmzhitmohblcr4m6mrovio23t/providers/Microsoft.DBforMySQL/servers/azuredbclirep1ylkg4jx33jvekj4o24mj64datgq4h6f3wvav2loxovydnuo2c","name":"azuredbclirep1ylkg4jx33jvekj4o24mj64datgq4h6f3wvav2loxovydnuo2c","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep2peccsqmgyymcxbil5pwm7h7epsowomnfiodishsgametbgg6g.mysql.database.azure.com","earliestRestoreDate":"2019-03-19T20:25:06.047+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvz4kfjcbwxyjrw7hcbs4axtsak6tjx6bl3xojwmrdmzhitmohblcr4m6mrovio23t/providers/Microsoft.DBforMySQL/servers/azuredbclirep2peccsqmgyymcxbil5pwm7h7epsowomnfiodishsgametbgg6g","name":"azuredbclirep2peccsqmgyymcxbil5pwm7h7epsowomnfiodishsgametbgg6g","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"shinim","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"orcasdevelopermysql1.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.1734138+00:00","replicationRole":"","masterServerId":""},"location":"canadacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/orcasql/providers/Microsoft.DBforMySQL/servers/orcasdevelopermysql1","name":"orcasdevelopermysql1","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"demouser","storageProfile":{"storageMB":128000,"backupRetentionDays":35,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"mysqldemo2.mysql.database.azure.com","earliestRestoreDate":"2019-02-13T03:05:23.2003478+00:00","replicationRole":"","masterServerId":""},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sunilrg/providers/Microsoft.DBforMySQL/servers/mysqldemo2","name":"mysqldemo2","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"demouser","storageProfile":{"storageMB":128000,"backupRetentionDays":35,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"mysqldemo1.mysql.database.azure.com","earliestRestoreDate":"2019-02-13T03:05:23.2003478+00:00","replicationRole":"","masterServerId":""},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sunilrg/providers/Microsoft.DBforMySQL/servers/mysqldemo1","name":"mysqldemo1","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"andrela","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"andrela-logs.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.1864232+00:00","replicationRole":"","masterServerId":""},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andrela/providers/Microsoft.DBforMySQL/servers/andrela-logs","name":"andrela-logs","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"B_Gen4_2","tier":"Basic","family":"Gen4","capacity":2},"properties":{"administratorLogin":"mysqlaas","storageProfile":{"storageMB":51200,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"etlieus56bgen4.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.1864232+00:00","replicationRole":"","masterServerId":""},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/etlieus/providers/Microsoft.DBforMySQL/servers/etlieus56bgen4","name":"etlieus56bgen4","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"mysqlaas","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"etlieus57ggen5.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.1864232+00:00","replicationRole":"","masterServerId":""},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/etlieus/providers/Microsoft.DBforMySQL/servers/etlieus57ggen5","name":"etlieus57ggen5","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"prkint","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"prkintmysql.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.1864232+00:00","replicationRole":"","masterServerId":""},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prkintresourcegroup/providers/Microsoft.DBforMySQL/servers/prkintmysql","name":"prkintmysql","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"csiadmin","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"mysqlqiyuansvc.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.1864232+00:00","replicationRole":"","masterServerId":""},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qiyuanrgnew/providers/Microsoft.DBforMySQL/servers/mysqlqiyuansvc","name":"mysqlqiyuansvc","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudSA","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"sarorakoreamysql.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.4416038+00:00","replicationRole":"","masterServerId":""},"location":"koreasouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarora_oss_group/providers/Microsoft.DBforMySQL/servers/sarorakoreamysql","name":"sarorakoreamysql","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2019-03-20T02:55:01.927+00:00","replicationRole":"","masterServerId":""},"location":"koreasouth","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.mysql.database.azure.com","earliestRestoreDate":"2019-03-20T03:10:36.913+00:00","replicationRole":"","masterServerId":""},"location":"koreasouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMySQL/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"testadmin","storageProfile":{"storageMB":248832,"backupRetentionDays":11,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"mysqlserverdemotest.mysql.database.azure.com","earliestRestoreDate":"2019-03-09T03:05:23.1504444+00:00","replicationRole":"","masterServerId":""},"location":"northcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mysqlserverdemotest/providers/Microsoft.DBforMySQL/servers/mysqlserverdemotest","name":"mysqlserverdemotest","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"testadmin","storageProfile":{"storageMB":248832,"backupRetentionDays":11,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"mysqlserverdemotest3.mysql.database.azure.com","earliestRestoreDate":"2019-03-09T03:05:23.1504444+00:00","replicationRole":"","masterServerId":""},"location":"northcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mysqlserverdemotest/providers/Microsoft.DBforMySQL/servers/mysqlserverdemotest3","name":"mysqlserverdemotest3","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"testadmin","storageProfile":{"storageMB":248832,"backupRetentionDays":11,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"mysqlrestoreserver.mysql.database.azure.com","earliestRestoreDate":"2019-03-09T03:05:23.1504444+00:00","replicationRole":"","masterServerId":""},"location":"northcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mysqlserverdemotest/providers/Microsoft.DBforMySQL/servers/mysqlrestoreserver","name":"mysqlrestoreserver","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"mysqlaas","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"etlineu57master.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.4169245+00:00","replicationRole":"","masterServerId":""},"location":"northeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/etlieus/providers/Microsoft.DBforMySQL/servers/etlineu57master","name":"etlineu57master","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"mysqlaas","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"etlineu56master.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.4169245+00:00","replicationRole":"","masterServerId":""},"location":"northeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/etlieus/providers/Microsoft.DBforMySQL/servers/etlineu56master","name":"etlineu56master","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"mysqlaas","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"etlineu56replica.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.4169245+00:00","replicationRole":"","masterServerId":""},"location":"northeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/etlieus/providers/Microsoft.DBforMySQL/servers/etlineu56replica","name":"etlineu56replica","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"mysqlaas","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"etlineu57replica.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.4169245+00:00","replicationRole":"","masterServerId":""},"location":"northeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/etlieus/providers/Microsoft.DBforMySQL/servers/etlineu57replica","name":"etlineu57replica","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"prkint","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"prkintmysqlneserver.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.4169245+00:00","replicationRole":"","masterServerId":""},"location":"northeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prkintresourcegroup/providers/Microsoft.DBforMySQL/servers/prkintmysqlneserver","name":"prkintmysqlneserver","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_64","tier":"GeneralPurpose","family":"Gen5","capacity":64},"properties":{"administratorLogin":"shinim","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"southeastasiagp64.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.552601+00:00","replicationRole":"","masterServerId":""},"location":"southeastasia","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shinim/providers/Microsoft.DBforMySQL/servers/southeastasiagp64","name":"southeastasiagp64","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"mysqlaas","storageProfile":{"storageMB":4194304,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"etlisea57pfx.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.552601+00:00","replicationRole":"","masterServerId":""},"location":"southeastasia","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/etlieus/providers/Microsoft.DBforMySQL/servers/etlisea57pfx","name":"etlisea57pfx","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"B_Gen4_1","tier":"Basic","family":"Gen4","capacity":1},"properties":{"administratorLogin":"mysqldbuser","storageProfile":{"storageMB":51200,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"drupaltest10-mysqldbserver.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.4949074+00:00","replicationRole":"","masterServerId":""},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/drupaltest10/providers/Microsoft.DBforMySQL/servers/drupaltest10-mysqldbserver","name":"drupaltest10-mysqldbserver","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"MyAdmin","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"jeanydmysqlgpsource.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.4949074+00:00","replicationRole":"","masterServerId":""},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeanydRG/providers/Microsoft.DBforMySQL/servers/jeanydmysqlgpsource","name":"jeanydmysqlgpsource","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"B_Gen5_1","tier":"Basic","family":"Gen5","capacity":1},"properties":{"administratorLogin":"mysqldbuser","storageProfile":{"storageMB":51200,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"projtestsite-mysqldbserver.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.0150349+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/projtestsite/providers/Microsoft.DBforMySQL/servers/projtestsite-mysqldbserver","name":"projtestsite-mysqldbserver","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"MO_Gen5_2","tier":"MemoryOptimized","family":"Gen5","capacity":2},"properties":{"administratorLogin":"hgadmin","storageProfile":{"storageMB":101376,"backupRetentionDays":7,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"hgmysqlserver.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.0150349+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hgmysqlserver/providers/Microsoft.DBforMySQL/servers/hgmysqlserver","name":"hgmysqlserver","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"MO_Gen5_2","tier":"MemoryOptimized","family":"Gen5","capacity":2},"properties":{"administratorLogin":"hgadmin","storageProfile":{"storageMB":101376,"backupRetentionDays":7,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"hgmysqlreplica.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.0150349+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hgmysqlserver/providers/Microsoft.DBforMySQL/servers/hgmysqlreplica","name":"hgmysqlreplica","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_8","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"qiyuantestvalidate.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.0150349+00:00","replicationRole":"","masterServerId":""},"location":"westus","tags":{"TestTag":"test - value"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qiyuanrgnew/providers/Microsoft.DBforMySQL/servers/qiyuantestvalidate","name":"qiyuantestvalidate","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_8","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"qiyuantestsvcreplica.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:23.0150349+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qiyuanrgnew/providers/Microsoft.DBforMySQL/servers/qiyuantestsvcreplica","name":"qiyuantestsvcreplica","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"weeklyMoth5","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"server039908329.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:22.9243414+00:00","replicationRole":"","masterServerId":""},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group9733000792/providers/Microsoft.DBforMySQL/servers/server039908329","name":"server039908329","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"weeklyMoth5","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"qiyuantestsvc003.mysql.database.azure.com","earliestRestoreDate":"2019-03-13T03:05:22.9243414+00:00","replicationRole":"","masterServerId":""},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qiyuanrgwus/providers/Microsoft.DBforMySQL/servers/qiyuantestsvc003","name":"qiyuantestsvc003","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"csiadmin","storageProfile":{"storageMB":5120,"backupRetentionDays":8,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"qiyuanbssvc2.mysql.database.azure.com","earliestRestoreDate":"2019-03-12T03:05:22.9243414+00:00","replicationRole":"","masterServerId":""},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qiyuanrgbrazilsouth/providers/Microsoft.DBforMySQL/servers/qiyuanbssvc2","name":"qiyuanbssvc2","type":"Microsoft.DBforMySQL/servers"}]}' + string: '{"value":[{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"ssannakk","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"8.0","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"sudhakarsannakkayalatest.mysql.database.azure.com","earliestRestoreDate":"2020-02-25T02:46:27.5249802+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"australiacentral","tags":{"version":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sudhakartestrg/providers/Microsoft.DBforMySQL/servers/sudhakarsannakkayalatest","name":"sudhakarsannakkayalatest","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"B_Gen5_1","tier":"Basic","family":"Gen5","capacity":1},"properties":{"administratorLogin":"daadmin","storageProfile":{"storageMB":51200,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"testmysqlasc.mysql.database.azure.com","earliestRestoreDate":"2020-02-25T02:46:27.200785+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asctest/providers/Microsoft.DBforMySQL/servers/testmysqlasc","name":"testmysqlasc","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_16","tier":"GeneralPurpose","family":"Gen5","capacity":16},"properties":{"administratorLogin":"rvadmin","storageProfile":{"storageMB":104448,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"ubsairflowtestmysql.mysql.database.azure.com","earliestRestoreDate":"2020-02-25T02:46:27.200785+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus2","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ubsairflowtestrg/providers/Microsoft.DBforMySQL/servers/ubsairflowtestmysql","name":"ubsairflowtestmysql","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"dms","storageProfile":{"storageMB":156672,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"nesinmysql57eus.mysql.database.azure.com","earliestRestoreDate":"2020-02-25T02:46:27.2461451+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nesin/providers/Microsoft.DBforMySQL/servers/nesinmysql57eus","name":"nesinmysql57eus","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"dms","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"mysqlbuilddemo.mysql.database.azure.com","earliestRestoreDate":"2020-02-25T02:46:27.2461451+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BuildDemo/providers/Microsoft.DBforMySQL/servers/mysqlbuilddemo","name":"mysqlbuilddemo","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"dms","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"dmstesteus.mysql.database.azure.com","earliestRestoreDate":"2020-02-25T02:46:27.2461451+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestServersSi0ci1EastUSRG/providers/Microsoft.DBforMySQL/servers/dmstesteus","name":"dmstesteus","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_8","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"administratorLogin":"dms","storageProfile":{"storageMB":371712,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"mysqlreliability57.mysql.database.azure.com","earliestRestoreDate":"2020-02-25T02:46:27.2461451+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MySqlReliablityTest01/providers/Microsoft.DBforMySQL/servers/mysqlreliability57","name":"mysqlreliability57","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_32","tier":"GeneralPurpose","family":"Gen5","capacity":32},"properties":{"administratorLogin":"dms","storageProfile":{"storageMB":1171456,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"mysqlreliability57medium.mysql.database.azure.com","earliestRestoreDate":"2020-02-25T02:46:27.2461451+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MySqlReliablityTest01/providers/Microsoft.DBforMySQL/servers/mysqlreliability57medium","name":"mysqlreliability57medium","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitestq3egqm7to4dbjfds4ehxguq3bkhqcs2d24jlh3h2l74kimqs2.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T00:04:13.467+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4ao6vaw4czq32su44rmrawh5hygvu5j2lvfkbuidghx7rl6ubhersrtvt5k3cvsd3/providers/Microsoft.DBforMySQL/servers/azuredbclitestq3egqm7to4dbjfds4ehxguq3bkhqcs2d24jlh3h2l74kimqs2/privateEndpointConnections/cli-pe-hc2rv4xvdmh4whofy-1ab20470-449a-4595-8667-782941d6ff1f","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4ao6vaw4czq32su44rmrawh5hygvu5j2lvfkbuidghx7rl6ubhersrtvt5k3cvsd3/providers/Microsoft.Network/privateEndpoints/cli-pe-hc2rv4xvdmh4whofy/privateLinkServiceConnections/cli-pec-6ium2ufr3c7oziyf"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Ready"}}],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4ao6vaw4czq32su44rmrawh5hygvu5j2lvfkbuidghx7rl6ubhersrtvt5k3cvsd3/providers/Microsoft.DBforMySQL/servers/azuredbclitestq3egqm7to4dbjfds4ehxguq3bkhqcs2d24jlh3h2l74kimqs2","name":"azuredbclitestq3egqm7to4dbjfds4ehxguq3bkhqcs2d24jlh3h2l74kimqs2","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitestiudu63rfez5eouagxn.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T00:05:14.22+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjat46m7xg3gfqfisvwpyl4nhlfzvf65d66gllyyku5uiwribtzcvayof6tzxaozny/providers/Microsoft.DBforMySQL/servers/azuredbclitestiudu63rfez5eouagxn","name":"azuredbclitestiudu63rfez5eouagxn","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep1io5d4gini4e6h4dpbx4cdagupdffu5ajtfnhgbpo2k65ipcp6.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T00:13:32.767+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjat46m7xg3gfqfisvwpyl4nhlfzvf65d66gllyyku5uiwribtzcvayof6tzxaozny/providers/Microsoft.DBforMySQL/servers/azuredbclirep1io5d4gini4e6h4dpbx4cdagupdffu5ajtfnhgbpo2k65ipcp6","name":"azuredbclirep1io5d4gini4e6h4dpbx4cdagupdffu5ajtfnhgbpo2k65ipcp6","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitestkj24v5qvge6yieov2c.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:09.837+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5jpiazwjefms4o6ri7bf5ewakgvsllpozvd4gekwldghzpn7pdn2fp2mz5w6f3g7b/providers/Microsoft.DBforMySQL/servers/azuredbclitestkj24v5qvge6yieov2c","name":"azuredbclitestkj24v5qvge6yieov2c","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:13.597+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep1poffu6w5opodfxhv57i5hf2iwzw2f6mjtegzvzlgabn3p2x2m.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:48:14.21+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5jpiazwjefms4o6ri7bf5ewakgvsllpozvd4gekwldghzpn7pdn2fp2mz5w6f3g7b/providers/Microsoft.DBforMySQL/servers/azuredbclirep1poffu6w5opodfxhv57i5hf2iwzw2f6mjtegzvzlgabn3p2x2m","name":"azuredbclirep1poffu6w5opodfxhv57i5hf2iwzw2f6mjtegzvzlgabn3p2x2m","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.mysql.database.azure.com","earliestRestoreDate":"2020-03-03T02:51:28.513+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMySQL/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"B_Gen5_1","tier":"Basic","family":"Gen5","capacity":1},"properties":{"administratorLogin":"nesin","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"nesinmysql.mysql.database.azure.com","earliestRestoreDate":"2020-02-25T02:46:27.1251211+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"southcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nesinmysql/providers/Microsoft.DBforMySQL/servers/nesinmysql","name":"nesinmysql","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"dms","storageProfile":{"storageMB":376832,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"nesinmysql57.mysql.database.azure.com","earliestRestoreDate":"2020-02-25T02:46:27.1251211+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"southcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nesinmysql57/providers/Microsoft.DBforMySQL/servers/nesinmysql57","name":"nesinmysql57","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"ssannakk","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"sudhakarmysqltest.mysql.database.azure.com","earliestRestoreDate":"2020-02-25T02:46:27.7034612+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"southindia","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sudhakartestrg/providers/Microsoft.DBforMySQL/servers/sudhakarmysqltest","name":"sudhakarmysqltest","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"ssannakk","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"sudhakarmysqltest1.mysql.database.azure.com","earliestRestoreDate":"2020-02-25T02:46:27.7034612+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"southindia","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sudhakartestrg/providers/Microsoft.DBforMySQL/servers/sudhakarmysqltest1","name":"sudhakarmysqltest1","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"dms","storageProfile":{"storageMB":128000,"backupRetentionDays":35,"geoRedundantBackup":"Enabled","storageAutogrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"attunitymysqltarget.mysql.database.azure.com","earliestRestoreDate":"2020-01-28T02:46:27.0063215+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SeanDmsTestRg/providers/Microsoft.DBforMySQL/servers/attunitymysqltarget","name":"attunitymysqltarget","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"dms","storageProfile":{"storageMB":16384,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"dmstestwcus.mysql.database.azure.com","earliestRestoreDate":"2020-02-25T02:46:27.0063215+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestServersSi0ci1WestCentralUSRG/providers/Microsoft.DBforMySQL/servers/dmstestwcus","name":"dmstestwcus","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"B_Gen5_1","tier":"Basic","family":"Gen5","capacity":1},"properties":{"administratorLogin":"dma","storageProfile":{"storageMB":51200,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"5.6","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"arpavlicwusmysql.mysql.database.azure.com","earliestRestoreDate":"2020-02-25T02:46:27.0063215+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arpavlicwusmysql/providers/Microsoft.DBforMySQL/servers/arpavlicwusmysql","name":"arpavlicwusmysql","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_8","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"administratorLogin":"testuser","storageProfile":{"storageMB":309248,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"dmstest57.mysql.database.azure.com","earliestRestoreDate":"2020-02-25T02:46:27.088847+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DMSTest/providers/Microsoft.DBforMySQL/servers/dmstest57","name":"dmstest57","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"dms","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"dmstestwus2.mysql.database.azure.com","earliestRestoreDate":"2020-02-25T02:46:27.088847+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestServersSi0ci1WestUS2RG/providers/Microsoft.DBforMySQL/servers/dmstestwus2","name":"dmstestwus2","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"MO_Gen5_4","tier":"MemoryOptimized","family":"Gen5","capacity":4},"properties":{"administratorLogin":"rvadmin","storageProfile":{"storageMB":2097152,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"5.7","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"kimysql.mysql.database.azure.com","earliestRestoreDate":"2020-02-25T02:46:27.088847+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"westus2","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kidelete/providers/Microsoft.DBforMySQL/servers/kimysql","name":"kimysql","type":"Microsoft.DBforMySQL/servers"}]}' headers: cache-control: - no-cache content-length: - - '28262' + - '23533' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:05:22 GMT + - Tue, 03 Mar 2020 02:46:27 GMT expires: - '-1' pragma: @@ -3114,17 +3012,13 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 19403e81-bbfd-455e-ab4d-89b70583daa8 - - 344086db-f531-45bb-ac68-f6f9dc2562a9 - - e7ef1974-ce47-443e-b4b0-d26b88117afd - - 5b525a49-e394-4f3c-ab3c-07111f2bd8ca - - e7967c24-bb1e-4d08-a066-546ee4d444c0 - - c1cf2ef7-3114-42ea-a644-955d38923608 - - bb7c2044-5b66-4246-9699-3c545b3bdb8d - - 8d328ba1-c96c-43a8-9e88-c5e0536a5416 - - 03541c2a-81ff-4e71-afff-68f8a83afb5e - - 7636043b-821c-4d63-8d85-7328fd8baa4e - - 5057f94a-c1f3-48cd-b66c-ab80ea965d41 + - c5513f50-0d04-4f9c-baa7-91e214b6aff8 + - d32735d4-6c97-4057-9980-ea12568d8e9b + - ae12ea59-a4a1-4b0f-bd93-e64bbcda0471 + - 14ddfe07-3510-432c-93fd-e97ae481aa63 + - 50db6210-6df8-45dd-b57f-fe99bf7f50f3 + - 3543e680-5268-4312-9f9b-d97b183c6163 + - 26acdf13-2342-4651-ac98-6f779a2de3d1 status: code: 200 message: OK @@ -3144,18 +3038,18 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"operation":"DropElasticServer","startTime":"2019-03-20T03:05:24.803Z"}' + string: '{"operation":"DropElasticServer","startTime":"2020-03-03T02:46:28.557Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/bb348f4d-64a0-42ae-976f-61df76af8f3f?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/68cc43d1-e377-4906-980f-fd4aaab084a9?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -3163,11 +3057,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:05:23 GMT + - Tue, 03 Mar 2020 02:46:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/operationResults/bb348f4d-64a0-42ae-976f-61df76af8f3f?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/68cc43d1-e377-4906-980f-fd4aaab084a9?api-version=2017-12-01 pragma: - no-cache server: @@ -3177,7 +3071,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -3195,13 +3089,13 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/bb348f4d-64a0-42ae-976f-61df76af8f3f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/68cc43d1-e377-4906-980f-fd4aaab084a9?api-version=2017-12-01 response: body: - string: '{"name":"bb348f4d-64a0-42ae-976f-61df76af8f3f","status":"Succeeded","startTime":"2019-03-20T03:05:24.803Z"}' + string: '{"name":"68cc43d1-e377-4906-980f-fd4aaab084a9","status":"Succeeded","startTime":"2020-03-03T02:46:28.557Z"}' headers: cache-control: - no-cache @@ -3210,7 +3104,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:05:40 GMT + - Tue, 03 Mar 2020 02:46:43 GMT expires: - '-1' pragma: @@ -3244,18 +3138,18 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMySQL/servers/azuredbclirestore000004?api-version=2017-12-01 response: body: - string: '{"operation":"DropElasticServer","startTime":"2019-03-20T03:05:41.967Z"}' + string: '{"operation":"DropElasticServer","startTime":"2020-03-03T02:46:45.353Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/6cfb41e8-2a4e-475e-b09c-e633f4e89392?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/b0492e47-0871-4474-85be-9e8fa1c95052?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -3263,11 +3157,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:05:41 GMT + - Tue, 03 Mar 2020 02:46:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/operationResults/6cfb41e8-2a4e-475e-b09c-e633f4e89392?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/b0492e47-0871-4474-85be-9e8fa1c95052?api-version=2017-12-01 pragma: - no-cache server: @@ -3277,7 +3171,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -3295,13 +3189,13 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/koreasouth/azureAsyncOperation/6cfb41e8-2a4e-475e-b09c-e633f4e89392?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/b0492e47-0871-4474-85be-9e8fa1c95052?api-version=2017-12-01 response: body: - string: '{"name":"6cfb41e8-2a4e-475e-b09c-e633f4e89392","status":"Succeeded","startTime":"2019-03-20T03:05:41.967Z"}' + string: '{"name":"b0492e47-0871-4474-85be-9e8fa1c95052","status":"Succeeded","startTime":"2020-03-03T02:46:45.353Z"}' headers: cache-control: - no-cache @@ -3310,7 +3204,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:05:57 GMT + - Tue, 03 Mar 2020 02:47:00 GMT expires: - '-1' pragma: @@ -3342,8 +3236,8 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -3359,7 +3253,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:05:57 GMT + - Tue, 03 Mar 2020 02:47:00 GMT expires: - '-1' pragma: @@ -3387,8 +3281,8 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -3404,7 +3298,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:05:58 GMT + - Tue, 03 Mar 2020 02:47:02 GMT expires: - '-1' pragma: @@ -3422,98 +3316,4 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.60 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000002?api-version=2019-07-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 20 Mar 2019 03:05:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc3NzdNN1Y3N0dZMlYySEdNRlpYTENKTVBKQktNT1FQNzQ3UHxEMDhDMjdGREU0MTgzMUVFLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-07-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.60 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 20 Mar 2019 03:06:01 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdYWE5KUk1GWDJaUUlDSVZEM1pLWEo2RUdKS1NCWjRRSFI3Unw1QTdGOEJDOEQ1OEQzNDI5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-07-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_postgres_proxy_resources_mgmt.yaml b/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_postgres_proxy_resources_mgmt.yaml index 54118a6287f..c0611506c9c 100644 --- a/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_postgres_proxy_resources_mgmt.yaml +++ b/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_postgres_proxy_resources_mgmt.yaml @@ -19,30 +19,30 @@ interactions: ParameterSetName: - -l -g -n -u -p --sku-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2020-02-07T19:05:10.947Z"}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-04T18:04:31.94Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/2243aa11-1c3d-4d34-a43e-ea6a0682ff91?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/89057693-d079-4a60-a4e7-b70d146b9d1b?api-version=2017-12-01 cache-control: - no-cache content-length: - - '74' + - '73' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:05:11 GMT + - Wed, 04 Mar 2020 18:04:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/2243aa11-1c3d-4d34-a43e-ea6a0682ff91?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/89057693-d079-4a60-a4e7-b70d146b9d1b?api-version=2017-12-01 pragma: - no-cache server: @@ -70,22 +70,22 @@ interactions: ParameterSetName: - -l -g -n -u -p --sku-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/2243aa11-1c3d-4d34-a43e-ea6a0682ff91?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/89057693-d079-4a60-a4e7-b70d146b9d1b?api-version=2017-12-01 response: body: - string: '{"name":"2243aa11-1c3d-4d34-a43e-ea6a0682ff91","status":"InProgress","startTime":"2020-02-07T19:05:10.947Z"}' + string: '{"name":"89057693-d079-4a60-a4e7-b70d146b9d1b","status":"InProgress","startTime":"2020-03-04T18:04:31.94Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:06:12 GMT + - Wed, 04 Mar 2020 18:05:31 GMT expires: - '-1' pragma: @@ -117,22 +117,22 @@ interactions: ParameterSetName: - -l -g -n -u -p --sku-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/2243aa11-1c3d-4d34-a43e-ea6a0682ff91?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/89057693-d079-4a60-a4e7-b70d146b9d1b?api-version=2017-12-01 response: body: - string: '{"name":"2243aa11-1c3d-4d34-a43e-ea6a0682ff91","status":"Succeeded","startTime":"2020-02-07T19:05:10.947Z"}' + string: '{"name":"89057693-d079-4a60-a4e7-b70d146b9d1b","status":"Succeeded","startTime":"2020-03-04T18:04:31.94Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:07:15 GMT + - Wed, 04 Mar 2020 18:06:32 GMT expires: - '-1' pragma: @@ -164,22 +164,22 @@ interactions: ParameterSetName: - -l -g -n -u -p --sku-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.postgres.database.azure.com","earliestRestoreDate":"2020-02-07T19:15:11.26+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.postgres.database.azure.com","earliestRestoreDate":"2020-03-04T18:14:32.347+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '979' + - '1094' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:07:16 GMT + - Wed, 04 Mar 2020 18:06:32 GMT expires: - '-1' pragma: @@ -215,18 +215,18 @@ interactions: ParameterSetName: - -n -g -s --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-02-07T19:07:19.997Z"}' + string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-03-04T18:06:34.023Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ef06576b-f63e-416b-8771-b27fd3f0c183?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e55bbf71-712d-47a3-8b71-bb4c23101435?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -234,11 +234,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:07:19 GMT + - Wed, 04 Mar 2020 18:06:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/ef06576b-f63e-416b-8771-b27fd3f0c183?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/e55bbf71-712d-47a3-8b71-bb4c23101435?api-version=2017-12-01 pragma: - no-cache server: @@ -248,7 +248,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 202 message: Accepted @@ -266,13 +266,13 @@ interactions: ParameterSetName: - -n -g -s --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ef06576b-f63e-416b-8771-b27fd3f0c183?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e55bbf71-712d-47a3-8b71-bb4c23101435?api-version=2017-12-01 response: body: - string: '{"name":"ef06576b-f63e-416b-8771-b27fd3f0c183","status":"Succeeded","startTime":"2020-02-07T19:07:19.997Z"}' + string: '{"name":"e55bbf71-712d-47a3-8b71-bb4c23101435","status":"Succeeded","startTime":"2020-03-04T18:06:34.023Z"}' headers: cache-control: - no-cache @@ -281,7 +281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:07:35 GMT + - Wed, 04 Mar 2020 18:06:49 GMT expires: - '-1' pragma: @@ -313,8 +313,8 @@ interactions: ParameterSetName: - -n -g -s --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: @@ -328,7 +328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:07:37 GMT + - Wed, 04 Mar 2020 18:06:49 GMT expires: - '-1' pragma: @@ -360,8 +360,8 @@ interactions: ParameterSetName: - --name -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -377,7 +377,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:07:40 GMT + - Wed, 04 Mar 2020 18:06:49 GMT expires: - '-1' pragma: @@ -409,8 +409,8 @@ interactions: ParameterSetName: - -n -g -s --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -426,7 +426,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:07:42 GMT + - Wed, 04 Mar 2020 18:06:51 GMT expires: - '-1' pragma: @@ -462,18 +462,18 @@ interactions: ParameterSetName: - -n -g -s --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-02-07T19:07:46.667Z"}' + string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-03-04T18:06:52.423Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/309cef55-63b4-49ee-9a1a-5eda7d5b4f7d?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3ba601e4-a0f1-4ceb-9f19-bc82a5b9c399?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -481,11 +481,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:07:46 GMT + - Wed, 04 Mar 2020 18:06:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/309cef55-63b4-49ee-9a1a-5eda7d5b4f7d?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/3ba601e4-a0f1-4ceb-9f19-bc82a5b9c399?api-version=2017-12-01 pragma: - no-cache server: @@ -495,7 +495,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -513,13 +513,13 @@ interactions: ParameterSetName: - -n -g -s --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/309cef55-63b4-49ee-9a1a-5eda7d5b4f7d?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3ba601e4-a0f1-4ceb-9f19-bc82a5b9c399?api-version=2017-12-01 response: body: - string: '{"name":"309cef55-63b4-49ee-9a1a-5eda7d5b4f7d","status":"Succeeded","startTime":"2020-02-07T19:07:46.667Z"}' + string: '{"name":"3ba601e4-a0f1-4ceb-9f19-bc82a5b9c399","status":"Succeeded","startTime":"2020-03-04T18:06:52.423Z"}' headers: cache-control: - no-cache @@ -528,7 +528,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:08:02 GMT + - Wed, 04 Mar 2020 18:07:07 GMT expires: - '-1' pragma: @@ -560,8 +560,8 @@ interactions: ParameterSetName: - -n -g -s --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: @@ -575,7 +575,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:08:04 GMT + - Wed, 04 Mar 2020 18:07:07 GMT expires: - '-1' pragma: @@ -607,8 +607,8 @@ interactions: ParameterSetName: - --name -g --server --start-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -624,7 +624,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:08:06 GMT + - Wed, 04 Mar 2020 18:07:08 GMT expires: - '-1' pragma: @@ -660,30 +660,30 @@ interactions: ParameterSetName: - --name -g --server --start-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-02-07T19:08:08.7Z"}' + string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-03-04T18:07:09.58Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f55f74f2-237a-4a25-a15e-1ba6c46b77b1?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/39b78d9d-0885-4d40-b335-a94f297d045a?api-version=2017-12-01 cache-control: - no-cache content-length: - - '85' + - '86' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:08:08 GMT + - Wed, 04 Mar 2020 18:07:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f55f74f2-237a-4a25-a15e-1ba6c46b77b1?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/39b78d9d-0885-4d40-b335-a94f297d045a?api-version=2017-12-01 pragma: - no-cache server: @@ -693,7 +693,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 202 message: Accepted @@ -711,22 +711,22 @@ interactions: ParameterSetName: - --name -g --server --start-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f55f74f2-237a-4a25-a15e-1ba6c46b77b1?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/39b78d9d-0885-4d40-b335-a94f297d045a?api-version=2017-12-01 response: body: - string: '{"name":"f55f74f2-237a-4a25-a15e-1ba6c46b77b1","status":"Succeeded","startTime":"2020-02-07T19:08:08.7Z"}' + string: '{"name":"39b78d9d-0885-4d40-b335-a94f297d045a","status":"Succeeded","startTime":"2020-03-04T18:07:09.58Z"}' headers: cache-control: - no-cache content-length: - - '105' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:08:23 GMT + - Wed, 04 Mar 2020 18:07:24 GMT expires: - '-1' pragma: @@ -758,8 +758,8 @@ interactions: ParameterSetName: - --name -g --server --start-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: @@ -773,7 +773,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:08:26 GMT + - Wed, 04 Mar 2020 18:07:24 GMT expires: - '-1' pragma: @@ -805,8 +805,8 @@ interactions: ParameterSetName: - -n -g -s --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -822,7 +822,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:08:28 GMT + - Wed, 04 Mar 2020 18:07:26 GMT expires: - '-1' pragma: @@ -858,30 +858,30 @@ interactions: ParameterSetName: - -n -g -s --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-02-07T19:08:30.623Z"}' + string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-03-04T18:07:26.97Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/71c61eb4-452c-427e-b13c-01b48a419dbe?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/2eb6bc26-838a-42cf-b490-d9190fb0acd5?api-version=2017-12-01 cache-control: - no-cache content-length: - - '87' + - '86' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:08:29 GMT + - Wed, 04 Mar 2020 18:07:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/71c61eb4-452c-427e-b13c-01b48a419dbe?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/2eb6bc26-838a-42cf-b490-d9190fb0acd5?api-version=2017-12-01 pragma: - no-cache server: @@ -909,22 +909,22 @@ interactions: ParameterSetName: - -n -g -s --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/71c61eb4-452c-427e-b13c-01b48a419dbe?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/2eb6bc26-838a-42cf-b490-d9190fb0acd5?api-version=2017-12-01 response: body: - string: '{"name":"71c61eb4-452c-427e-b13c-01b48a419dbe","status":"Succeeded","startTime":"2020-02-07T19:08:30.623Z"}' + string: '{"name":"2eb6bc26-838a-42cf-b490-d9190fb0acd5","status":"Succeeded","startTime":"2020-03-04T18:07:26.97Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:08:47 GMT + - Wed, 04 Mar 2020 18:07:42 GMT expires: - '-1' pragma: @@ -956,8 +956,8 @@ interactions: ParameterSetName: - -n -g -s --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: @@ -971,7 +971,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:08:48 GMT + - Wed, 04 Mar 2020 18:07:42 GMT expires: - '-1' pragma: @@ -1007,18 +1007,18 @@ interactions: ParameterSetName: - --name -g --server --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule2?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-02-07T19:08:51.183Z"}' + string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2020-03-04T18:07:43.713Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/277feb43-efab-480e-b639-8ddb98bb02ab?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a4fc44f6-09ee-4ce8-897d-aba482e2e44f?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -1026,11 +1026,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:08:51 GMT + - Wed, 04 Mar 2020 18:07:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/277feb43-efab-480e-b639-8ddb98bb02ab?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/a4fc44f6-09ee-4ce8-897d-aba482e2e44f?api-version=2017-12-01 pragma: - no-cache server: @@ -1058,13 +1058,13 @@ interactions: ParameterSetName: - --name -g --server --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/277feb43-efab-480e-b639-8ddb98bb02ab?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a4fc44f6-09ee-4ce8-897d-aba482e2e44f?api-version=2017-12-01 response: body: - string: '{"name":"277feb43-efab-480e-b639-8ddb98bb02ab","status":"Succeeded","startTime":"2020-02-07T19:08:51.183Z"}' + string: '{"name":"a4fc44f6-09ee-4ce8-897d-aba482e2e44f","status":"Succeeded","startTime":"2020-03-04T18:07:43.713Z"}' headers: cache-control: - no-cache @@ -1073,7 +1073,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:09:08 GMT + - Wed, 04 Mar 2020 18:07:59 GMT expires: - '-1' pragma: @@ -1105,8 +1105,8 @@ interactions: ParameterSetName: - --name -g --server --start-ip-address --end-ip-address User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule2?api-version=2017-12-01 response: @@ -1120,7 +1120,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:09:09 GMT + - Wed, 04 Mar 2020 18:07:59 GMT expires: - '-1' pragma: @@ -1152,8 +1152,8 @@ interactions: ParameterSetName: - -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -1169,7 +1169,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:09:11 GMT + - Wed, 04 Mar 2020 18:08:01 GMT expires: - '-1' pragma: @@ -1203,30 +1203,30 @@ interactions: ParameterSetName: - --name -g --server --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: - string: '{"operation":"DropElasticServerFirewallRule","startTime":"2020-02-07T19:09:13.467Z"}' + string: '{"operation":"DropElasticServerFirewallRule","startTime":"2020-03-04T18:08:02.51Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a672b3c0-917c-4db1-b620-660073fe990e?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/81bd5953-a6ba-4a17-b187-9f3a40997c7d?api-version=2017-12-01 cache-control: - no-cache content-length: - - '84' + - '83' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:09:13 GMT + - Wed, 04 Mar 2020 18:08:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/a672b3c0-917c-4db1-b620-660073fe990e?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/81bd5953-a6ba-4a17-b187-9f3a40997c7d?api-version=2017-12-01 pragma: - no-cache server: @@ -1236,7 +1236,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -1254,22 +1254,22 @@ interactions: ParameterSetName: - --name -g --server --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a672b3c0-917c-4db1-b620-660073fe990e?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/81bd5953-a6ba-4a17-b187-9f3a40997c7d?api-version=2017-12-01 response: body: - string: '{"name":"a672b3c0-917c-4db1-b620-660073fe990e","status":"Succeeded","startTime":"2020-02-07T19:09:13.467Z"}' + string: '{"name":"81bd5953-a6ba-4a17-b187-9f3a40997c7d","status":"Succeeded","startTime":"2020-03-04T18:08:02.51Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:09:29 GMT + - Wed, 04 Mar 2020 18:08:17 GMT expires: - '-1' pragma: @@ -1301,8 +1301,8 @@ interactions: ParameterSetName: - -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -1318,7 +1318,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:09:32 GMT + - Wed, 04 Mar 2020 18:08:18 GMT expires: - '-1' pragma: @@ -1352,18 +1352,18 @@ interactions: ParameterSetName: - -n -g -s --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule2?api-version=2017-12-01 response: body: - string: '{"operation":"DropElasticServerFirewallRule","startTime":"2020-02-07T19:09:35.917Z"}' + string: '{"operation":"DropElasticServerFirewallRule","startTime":"2020-03-04T18:08:19.947Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/d9c6b77c-4596-44e5-a610-2cc20b84810a?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/721064de-0cec-4b08-a32a-1e2ec1bcfe6a?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -1371,11 +1371,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:09:35 GMT + - Wed, 04 Mar 2020 18:08:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/d9c6b77c-4596-44e5-a610-2cc20b84810a?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/721064de-0cec-4b08-a32a-1e2ec1bcfe6a?api-version=2017-12-01 pragma: - no-cache server: @@ -1403,13 +1403,13 @@ interactions: ParameterSetName: - -n -g -s --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/d9c6b77c-4596-44e5-a610-2cc20b84810a?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/721064de-0cec-4b08-a32a-1e2ec1bcfe6a?api-version=2017-12-01 response: body: - string: '{"name":"d9c6b77c-4596-44e5-a610-2cc20b84810a","status":"Succeeded","startTime":"2020-02-07T19:09:35.917Z"}' + string: '{"name":"721064de-0cec-4b08-a32a-1e2ec1bcfe6a","status":"Succeeded","startTime":"2020-03-04T18:08:19.947Z"}' headers: cache-control: - no-cache @@ -1418,7 +1418,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:09:52 GMT + - Wed, 04 Mar 2020 18:08:34 GMT expires: - '-1' pragma: @@ -1450,8 +1450,8 @@ interactions: ParameterSetName: - -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -1467,7 +1467,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:09:55 GMT + - Wed, 04 Mar 2020 18:08:36 GMT expires: - '-1' pragma: @@ -1505,8 +1505,8 @@ interactions: ParameterSetName: - -n -g -l --address-prefix --subnet-name --subnet-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT @@ -1514,15 +1514,15 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"dd605a5b-369d-49bb-88ab-498c5c8475eb\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"975a3915-76cd-437a-8342-a5b61fe11777\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"9652920e-5548-4eb6-8970-4bda4706ed39\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6cae420d-017d-44a2-937e-a5f820731288\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"dd605a5b-369d-49bb-88ab-498c5c8475eb\\\"\",\r\n + \ \"etag\": \"W/\\\"975a3915-76cd-437a-8342-a5b61fe11777\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1531,7 +1531,7 @@ interactions: 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/eastus/operations/7ac09751-6ee3-4da8-b410-8a29394a415e?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f2029196-758e-4024-a9d6-e06e0a38f08a?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -1539,7 +1539,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:10:01 GMT + - Wed, 04 Mar 2020 18:08:37 GMT expires: - '-1' pragma: @@ -1552,9 +1552,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1c044316-e18f-443e-9e6e-27aa03f5c642 + - 910866cd-bb93-49e1-87ac-6543db0d5a53 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -1572,10 +1572,10 @@ interactions: ParameterSetName: - -n -g -l --address-prefix --subnet-name --subnet-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7ac09751-6ee3-4da8-b410-8a29394a415e?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f2029196-758e-4024-a9d6-e06e0a38f08a?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1587,7 +1587,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:10:05 GMT + - Wed, 04 Mar 2020 18:08:40 GMT expires: - '-1' pragma: @@ -1604,7 +1604,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 790f199a-55a7-473c-9c73-a7e731390707 + - 2f5a962b-3beb-42f9-9ca6-ab238abdeaf7 status: code: 200 message: OK @@ -1622,22 +1622,22 @@ interactions: ParameterSetName: - -n -g -l --address-prefix --subnet-name --subnet-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet?api-version=2019-11-01 response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"cb6381c5-084d-40ff-b793-2f3c1478a652\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f3513730-eb9b-4ac5-8495-a62aa5bb21e1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"9652920e-5548-4eb6-8970-4bda4706ed39\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6cae420d-017d-44a2-937e-a5f820731288\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"cb6381c5-084d-40ff-b793-2f3c1478a652\\\"\",\r\n + \ \"etag\": \"W/\\\"f3513730-eb9b-4ac5-8495-a62aa5bb21e1\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1652,9 +1652,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:10:06 GMT + - Wed, 04 Mar 2020 18:08:41 GMT etag: - - W/"cb6381c5-084d-40ff-b793-2f3c1478a652" + - W/"f3513730-eb9b-4ac5-8495-a62aa5bb21e1" expires: - '-1' pragma: @@ -1671,7 +1671,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6ba17c02-fccb-42f8-8bdf-89b39e2430ec + - 00a403cf-d660-4baa-ad4f-323c53e7104e status: code: 200 message: OK @@ -1689,8 +1689,8 @@ interactions: ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -1698,15 +1698,15 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"cb6381c5-084d-40ff-b793-2f3c1478a652\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f3513730-eb9b-4ac5-8495-a62aa5bb21e1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"9652920e-5548-4eb6-8970-4bda4706ed39\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6cae420d-017d-44a2-937e-a5f820731288\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"cb6381c5-084d-40ff-b793-2f3c1478a652\\\"\",\r\n + \ \"etag\": \"W/\\\"f3513730-eb9b-4ac5-8495-a62aa5bb21e1\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1721,9 +1721,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:10:08 GMT + - Wed, 04 Mar 2020 18:08:42 GMT etag: - - W/"cb6381c5-084d-40ff-b793-2f3c1478a652" + - W/"f3513730-eb9b-4ac5-8495-a62aa5bb21e1" expires: - '-1' pragma: @@ -1740,7 +1740,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 680bd0fb-dd9e-4d21-80de-30a7b46af5c1 + - 1001d952-fca0-48ac-8d45-9962b408b20a status: code: 200 message: OK @@ -1769,8 +1769,8 @@ interactions: ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT @@ -1778,22 +1778,22 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"616307b3-dc91-4f7b-b8ba-7bf8f46f42f7\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"ab6c47ab-801f-4178-a7cd-383c8708189e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"9652920e-5548-4eb6-8970-4bda4706ed39\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6cae420d-017d-44a2-937e-a5f820731288\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"616307b3-dc91-4f7b-b8ba-7bf8f46f42f7\\\"\",\r\n + \ \"etag\": \"W/\\\"ab6c47ab-801f-4178-a7cd-383c8708189e\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"clitestsubnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet2\",\r\n - \ \"etag\": \"W/\\\"616307b3-dc91-4f7b-b8ba-7bf8f46f42f7\\\"\",\r\n + \ \"etag\": \"W/\\\"ab6c47ab-801f-4178-a7cd-383c8708189e\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1802,7 +1802,7 @@ interactions: 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/eastus/operations/ac992066-85f1-4f3a-9c1b-89105b7ce8c3?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/82cd6745-b02f-4c30-8279-66a4edba5b8c?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -1810,7 +1810,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:10:09 GMT + - Wed, 04 Mar 2020 18:08:43 GMT expires: - '-1' pragma: @@ -1827,9 +1827,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a9a4b80a-bd69-4452-8501-9ddb67c8adb6 + - 978c307a-17b2-44f8-ac72-d65f6a3f11fd x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1847,10 +1847,10 @@ interactions: ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ac992066-85f1-4f3a-9c1b-89105b7ce8c3?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/82cd6745-b02f-4c30-8279-66a4edba5b8c?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1862,7 +1862,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:10:14 GMT + - Wed, 04 Mar 2020 18:08:46 GMT expires: - '-1' pragma: @@ -1879,7 +1879,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eb6bd670-c669-4ecb-9a4c-6eddb4303559 + - 241ef49f-814f-4688-926c-1450da11b37f status: code: 200 message: OK @@ -1897,29 +1897,29 @@ interactions: ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet?api-version=2019-11-01 response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"89981c58-b73d-4b6a-9f92-b400d7f4a886\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a642dfac-784d-4351-9ad1-b0dd0c7aab9c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"9652920e-5548-4eb6-8970-4bda4706ed39\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6cae420d-017d-44a2-937e-a5f820731288\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"89981c58-b73d-4b6a-9f92-b400d7f4a886\\\"\",\r\n + \ \"etag\": \"W/\\\"a642dfac-784d-4351-9ad1-b0dd0c7aab9c\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"clitestsubnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet2\",\r\n - \ \"etag\": \"W/\\\"89981c58-b73d-4b6a-9f92-b400d7f4a886\\\"\",\r\n + \ \"etag\": \"W/\\\"a642dfac-784d-4351-9ad1-b0dd0c7aab9c\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1934,9 +1934,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:10:17 GMT + - Wed, 04 Mar 2020 18:08:46 GMT etag: - - W/"89981c58-b73d-4b6a-9f92-b400d7f4a886" + - W/"a642dfac-784d-4351-9ad1-b0dd0c7aab9c" expires: - '-1' pragma: @@ -1953,7 +1953,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 523c5249-24b6-45d4-ba8c-b8ed8883ad53 + - 203805c6-d616-4da6-8520-3c3dddd00df2 status: code: 200 message: OK @@ -1976,30 +1976,30 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule1?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServerVnetFirewallRule","startTime":"2020-02-07T19:10:19.68Z"}' + string: '{"operation":"UpsertElasticServerVnetFirewallRule","startTime":"2020-03-04T18:08:47.597Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f9130971-f363-479d-a6a2-a5ec5fe20330?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/0521b239-95ff-4f48-9e76-972c9e272b87?api-version=2017-12-01 cache-control: - no-cache content-length: - - '89' + - '90' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:10:20 GMT + - Wed, 04 Mar 2020 18:08:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f9130971-f363-479d-a6a2-a5ec5fe20330?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/0521b239-95ff-4f48-9e76-972c9e272b87?api-version=2017-12-01 pragma: - no-cache server: @@ -2027,22 +2027,22 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f9130971-f363-479d-a6a2-a5ec5fe20330?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/0521b239-95ff-4f48-9e76-972c9e272b87?api-version=2017-12-01 response: body: - string: '{"name":"f9130971-f363-479d-a6a2-a5ec5fe20330","status":"Succeeded","startTime":"2020-02-07T19:10:19.68Z"}' + string: '{"name":"0521b239-95ff-4f48-9e76-972c9e272b87","status":"Succeeded","startTime":"2020-03-04T18:08:47.597Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:10:53 GMT + - Wed, 04 Mar 2020 18:09:18 GMT expires: - '-1' pragma: @@ -2074,8 +2074,8 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule1?api-version=2017-12-01 response: @@ -2089,7 +2089,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:10:55 GMT + - Wed, 04 Mar 2020 18:09:18 GMT expires: - '-1' pragma: @@ -2121,8 +2121,8 @@ interactions: ParameterSetName: - -n -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -2138,7 +2138,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:10:56 GMT + - Wed, 04 Mar 2020 18:09:19 GMT expires: - '-1' pragma: @@ -2175,30 +2175,30 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule2?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServerVnetFirewallRule","startTime":"2020-02-07T19:10:59.03Z"}' + string: '{"operation":"UpsertElasticServerVnetFirewallRule","startTime":"2020-03-04T18:09:21.113Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/631506dc-5a6e-494c-8bf2-06ac82b1a64a?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/1740f6a9-1678-480e-8256-4ebe5403b87a?api-version=2017-12-01 cache-control: - no-cache content-length: - - '89' + - '90' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:10:59 GMT + - Wed, 04 Mar 2020 18:09:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/631506dc-5a6e-494c-8bf2-06ac82b1a64a?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/1740f6a9-1678-480e-8256-4ebe5403b87a?api-version=2017-12-01 pragma: - no-cache server: @@ -2208,7 +2208,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 202 message: Accepted @@ -2226,22 +2226,22 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/631506dc-5a6e-494c-8bf2-06ac82b1a64a?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/1740f6a9-1678-480e-8256-4ebe5403b87a?api-version=2017-12-01 response: body: - string: '{"name":"631506dc-5a6e-494c-8bf2-06ac82b1a64a","status":"Succeeded","startTime":"2020-02-07T19:10:59.03Z"}' + string: '{"name":"1740f6a9-1678-480e-8256-4ebe5403b87a","status":"Succeeded","startTime":"2020-03-04T18:09:21.113Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:11:30 GMT + - Wed, 04 Mar 2020 18:09:51 GMT expires: - '-1' pragma: @@ -2273,8 +2273,8 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule2?api-version=2017-12-01 response: @@ -2288,7 +2288,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:11:35 GMT + - Wed, 04 Mar 2020 18:09:52 GMT expires: - '-1' pragma: @@ -2320,8 +2320,8 @@ interactions: ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -2329,22 +2329,22 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"e3199e09-bf0d-44b5-ae88-508b3ce44e62\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7d465bc6-2615-466f-ae9a-c6b15ffc5f6c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"9652920e-5548-4eb6-8970-4bda4706ed39\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6cae420d-017d-44a2-937e-a5f820731288\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"e3199e09-bf0d-44b5-ae88-508b3ce44e62\\\"\",\r\n + \ \"etag\": \"W/\\\"7d465bc6-2615-466f-ae9a-c6b15ffc5f6c\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"clitestsubnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet2\",\r\n - \ \"etag\": \"W/\\\"e3199e09-bf0d-44b5-ae88-508b3ce44e62\\\"\",\r\n + \ \"etag\": \"W/\\\"7d465bc6-2615-466f-ae9a-c6b15ffc5f6c\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -2359,9 +2359,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:11:38 GMT + - Wed, 04 Mar 2020 18:09:53 GMT etag: - - W/"e3199e09-bf0d-44b5-ae88-508b3ce44e62" + - W/"7d465bc6-2615-466f-ae9a-c6b15ffc5f6c" expires: - '-1' pragma: @@ -2378,7 +2378,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6f9c489f-aea4-4aa8-8be0-488bac7db8a1 + - f8d6d48f-992c-45fc-8221-3d2af19a132f status: code: 200 message: OK @@ -2410,8 +2410,8 @@ interactions: ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT @@ -2419,29 +2419,29 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"cb52f185-c1ca-4444-bcfa-361babd09463\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"04c5d1e8-89a0-4930-8af4-919f6029fa9d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"9652920e-5548-4eb6-8970-4bda4706ed39\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6cae420d-017d-44a2-937e-a5f820731288\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"cb52f185-c1ca-4444-bcfa-361babd09463\\\"\",\r\n + \ \"etag\": \"W/\\\"04c5d1e8-89a0-4930-8af4-919f6029fa9d\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"clitestsubnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet2\",\r\n - \ \"etag\": \"W/\\\"cb52f185-c1ca-4444-bcfa-361babd09463\\\"\",\r\n + \ \"etag\": \"W/\\\"04c5d1e8-89a0-4930-8af4-919f6029fa9d\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.1.0/24\",\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 \"name\": \"clitestsubnet3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet3\",\r\n - \ \"etag\": \"W/\\\"cb52f185-c1ca-4444-bcfa-361babd09463\\\"\",\r\n + \ \"etag\": \"W/\\\"04c5d1e8-89a0-4930-8af4-919f6029fa9d\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.3.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -2450,7 +2450,7 @@ interactions: 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/eastus/operations/eb55e135-4ce8-41df-9d79-9f65b860dfd8?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c3b2bd37-6baf-4eec-8622-8dc00cc97f66?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -2458,7 +2458,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:11:39 GMT + - Wed, 04 Mar 2020 18:09:54 GMT expires: - '-1' pragma: @@ -2475,7 +2475,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c46555bb-5abd-4312-ae0d-a83ca82a54a8 + - 418c4884-a015-446f-9a17-3003c5605a77 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2495,10 +2495,10 @@ interactions: ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/eb55e135-4ce8-41df-9d79-9f65b860dfd8?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c3b2bd37-6baf-4eec-8622-8dc00cc97f66?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2510,7 +2510,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:11:45 GMT + - Wed, 04 Mar 2020 18:09:57 GMT expires: - '-1' pragma: @@ -2527,7 +2527,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 67ab798f-50e7-490e-a451-85af9b330dea + - 4b608d85-f5c4-40ce-8d30-e521454f2bd1 status: code: 200 message: OK @@ -2545,36 +2545,36 @@ interactions: ParameterSetName: - --vnet-name -g --address-prefix -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet?api-version=2019-11-01 response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"1230e6b6-fc6d-45ee-9827-5cc6614f82e1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"64a53226-64f7-492f-8947-531ebedb1195\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"9652920e-5548-4eb6-8970-4bda4706ed39\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6cae420d-017d-44a2-937e-a5f820731288\",\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\": \"clitestsubnet1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet1\",\r\n - \ \"etag\": \"W/\\\"1230e6b6-fc6d-45ee-9827-5cc6614f82e1\\\"\",\r\n + \ \"etag\": \"W/\\\"64a53226-64f7-492f-8947-531ebedb1195\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"clitestsubnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet2\",\r\n - \ \"etag\": \"W/\\\"1230e6b6-fc6d-45ee-9827-5cc6614f82e1\\\"\",\r\n + \ \"etag\": \"W/\\\"64a53226-64f7-492f-8947-531ebedb1195\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.1.0/24\",\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 \"name\": \"clitestsubnet3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitestvnet/subnets/clitestsubnet3\",\r\n - \ \"etag\": \"W/\\\"1230e6b6-fc6d-45ee-9827-5cc6614f82e1\\\"\",\r\n + \ \"etag\": \"W/\\\"64a53226-64f7-492f-8947-531ebedb1195\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.3.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -2589,9 +2589,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:11:46 GMT + - Wed, 04 Mar 2020 18:09:57 GMT etag: - - W/"1230e6b6-fc6d-45ee-9827-5cc6614f82e1" + - W/"64a53226-64f7-492f-8947-531ebedb1195" expires: - '-1' pragma: @@ -2608,7 +2608,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 152ab175-b3b3-4a95-9eb6-e2f62d825190 + - d5e4ae59-16aa-43c1-9140-b09e2bf1cd67 status: code: 200 message: OK @@ -2626,8 +2626,8 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -2643,7 +2643,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:11:47 GMT + - Wed, 04 Mar 2020 18:09:58 GMT expires: - '-1' pragma: @@ -2680,30 +2680,30 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule2?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServerVnetFirewallRule","startTime":"2020-02-07T19:11:49.73Z"}' + string: '{"operation":"UpsertElasticServerVnetFirewallRule","startTime":"2020-03-04T18:09:59.503Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/dcb73d0c-42ee-48fa-b68b-dabc3ad83966?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/06db1ef6-a3de-428d-a9bb-ca0b51902f66?api-version=2017-12-01 cache-control: - no-cache content-length: - - '89' + - '90' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:11:50 GMT + - Wed, 04 Mar 2020 18:10:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/dcb73d0c-42ee-48fa-b68b-dabc3ad83966?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/06db1ef6-a3de-428d-a9bb-ca0b51902f66?api-version=2017-12-01 pragma: - no-cache server: @@ -2713,7 +2713,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -2731,22 +2731,22 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/dcb73d0c-42ee-48fa-b68b-dabc3ad83966?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/06db1ef6-a3de-428d-a9bb-ca0b51902f66?api-version=2017-12-01 response: body: - string: '{"name":"dcb73d0c-42ee-48fa-b68b-dabc3ad83966","status":"Succeeded","startTime":"2020-02-07T19:11:49.73Z"}' + string: '{"name":"06db1ef6-a3de-428d-a9bb-ca0b51902f66","status":"Succeeded","startTime":"2020-03-04T18:09:59.503Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:12:21 GMT + - Wed, 04 Mar 2020 18:10:30 GMT expires: - '-1' pragma: @@ -2778,8 +2778,8 @@ interactions: ParameterSetName: - -n -g -s --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule2?api-version=2017-12-01 response: @@ -2793,7 +2793,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:12:23 GMT + - Wed, 04 Mar 2020 18:10:31 GMT expires: - '-1' pragma: @@ -2825,8 +2825,8 @@ interactions: ParameterSetName: - -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -2842,7 +2842,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:12:27 GMT + - Wed, 04 Mar 2020 18:10:31 GMT expires: - '-1' pragma: @@ -2876,30 +2876,30 @@ interactions: ParameterSetName: - --name -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule1?api-version=2017-12-01 response: body: - string: '{"operation":"DropElasticServerVnetFirewallRule","startTime":"2020-02-07T19:12:29.463Z"}' + string: '{"operation":"DropElasticServerVnetFirewallRule","startTime":"2020-03-04T18:10:32.74Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/1c71683a-a66a-4a4c-bfb4-f54ad15ffd67?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7b571290-69e0-462b-b114-1a584385ef52?api-version=2017-12-01 cache-control: - no-cache content-length: - - '88' + - '87' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:12:30 GMT + - Wed, 04 Mar 2020 18:10:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/1c71683a-a66a-4a4c-bfb4-f54ad15ffd67?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/7b571290-69e0-462b-b114-1a584385ef52?api-version=2017-12-01 pragma: - no-cache server: @@ -2927,22 +2927,22 @@ interactions: ParameterSetName: - --name -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/1c71683a-a66a-4a4c-bfb4-f54ad15ffd67?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7b571290-69e0-462b-b114-1a584385ef52?api-version=2017-12-01 response: body: - string: '{"name":"1c71683a-a66a-4a4c-bfb4-f54ad15ffd67","status":"Succeeded","startTime":"2020-02-07T19:12:29.463Z"}' + string: '{"name":"7b571290-69e0-462b-b114-1a584385ef52","status":"Succeeded","startTime":"2020-03-04T18:10:32.74Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:12:46 GMT + - Wed, 04 Mar 2020 18:10:50 GMT expires: - '-1' pragma: @@ -2974,8 +2974,8 @@ interactions: ParameterSetName: - -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -2991,7 +2991,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:12:49 GMT + - Wed, 04 Mar 2020 18:10:51 GMT expires: - '-1' pragma: @@ -3025,18 +3025,18 @@ interactions: ParameterSetName: - -n -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/virtualNetworkRules/vnet_rule2?api-version=2017-12-01 response: body: - string: '{"operation":"DropElasticServerVnetFirewallRule","startTime":"2020-02-07T19:12:50.837Z"}' + string: '{"operation":"DropElasticServerVnetFirewallRule","startTime":"2020-03-04T18:10:53.083Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7eafe145-ff80-4b64-ba77-159623409e75?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/580e7517-bc93-4c11-95ba-178bd006107f?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -3044,11 +3044,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:12:51 GMT + - Wed, 04 Mar 2020 18:10:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/7eafe145-ff80-4b64-ba77-159623409e75?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/580e7517-bc93-4c11-95ba-178bd006107f?api-version=2017-12-01 pragma: - no-cache server: @@ -3058,7 +3058,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 202 message: Accepted @@ -3076,13 +3076,13 @@ interactions: ParameterSetName: - -n -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7eafe145-ff80-4b64-ba77-159623409e75?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/580e7517-bc93-4c11-95ba-178bd006107f?api-version=2017-12-01 response: body: - string: '{"name":"7eafe145-ff80-4b64-ba77-159623409e75","status":"Succeeded","startTime":"2020-02-07T19:12:50.837Z"}' + string: '{"name":"580e7517-bc93-4c11-95ba-178bd006107f","status":"Succeeded","startTime":"2020-03-04T18:10:53.083Z"}' headers: cache-control: - no-cache @@ -3091,7 +3091,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:13:08 GMT + - Wed, 04 Mar 2020 18:11:09 GMT expires: - '-1' pragma: @@ -3123,8 +3123,8 @@ interactions: ParameterSetName: - -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -3140,7 +3140,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:13:09 GMT + - Wed, 04 Mar 2020 18:11:10 GMT expires: - '-1' pragma: @@ -3174,8 +3174,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE @@ -3185,17 +3185,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/504240c6-a8bd-4b9b-9fa0-a88d09fe8fc7?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cbb5ac00-4e6a-4b2f-b4f2-34523bc54e64?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Feb 2020 19:13:12 GMT + - Wed, 04 Mar 2020 18:11:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/504240c6-a8bd-4b9b-9fa0-a88d09fe8fc7?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/cbb5ac00-4e6a-4b2f-b4f2-34523bc54e64?api-version=2019-11-01 pragma: - no-cache server: @@ -3206,9 +3206,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0ad0ba8c-813c-482f-9486-ba7490edb7d9 + - 42176100-afb2-4f68-ac6c-82acc6b3c390 x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -3226,10 +3226,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/504240c6-a8bd-4b9b-9fa0-a88d09fe8fc7?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cbb5ac00-4e6a-4b2f-b4f2-34523bc54e64?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3241,7 +3241,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:13:24 GMT + - Wed, 04 Mar 2020 18:11:21 GMT expires: - '-1' pragma: @@ -3258,7 +3258,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1748c16f-185f-4d6e-a155-f5c0949ba00f + - c1e6edde-b402-441d-8b43-b924f7a1e5c0 status: code: 200 message: OK @@ -3276,8 +3276,8 @@ interactions: ParameterSetName: - -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -3296,7 +3296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:13:29 GMT + - Wed, 04 Mar 2020 18:11:22 GMT expires: - '-1' pragma: @@ -3328,8 +3328,8 @@ interactions: ParameterSetName: - --name -g --server User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -3346,7 +3346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:13:34 GMT + - Wed, 04 Mar 2020 18:11:23 GMT expires: - '-1' pragma: @@ -3382,30 +3382,30 @@ interactions: ParameterSetName: - -n -g -s --value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/array_nulls?api-version=2017-12-01 response: body: - string: '{"operation":"UpdateElasticServerConfig","startTime":"2020-02-07T19:13:36.873Z"}' + string: '{"operation":"UpdateElasticServerConfig","startTime":"2020-03-04T18:11:24.82Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/67301217-a7a3-4f48-adc3-724fce8b4ed8?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/8f750517-9ce4-4e32-b2ed-df76ab9b096c?api-version=2017-12-01 cache-control: - no-cache content-length: - - '80' + - '79' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:13:36 GMT + - Wed, 04 Mar 2020 18:11:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/67301217-a7a3-4f48-adc3-724fce8b4ed8?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/8f750517-9ce4-4e32-b2ed-df76ab9b096c?api-version=2017-12-01 pragma: - no-cache server: @@ -3415,7 +3415,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 202 message: Accepted @@ -3433,22 +3433,22 @@ interactions: ParameterSetName: - -n -g -s --value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/67301217-a7a3-4f48-adc3-724fce8b4ed8?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/8f750517-9ce4-4e32-b2ed-df76ab9b096c?api-version=2017-12-01 response: body: - string: '{"name":"67301217-a7a3-4f48-adc3-724fce8b4ed8","status":"Succeeded","startTime":"2020-02-07T19:13:36.873Z"}' + string: '{"name":"8f750517-9ce4-4e32-b2ed-df76ab9b096c","status":"Succeeded","startTime":"2020-03-04T18:11:24.82Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:13:53 GMT + - Wed, 04 Mar 2020 18:11:39 GMT expires: - '-1' pragma: @@ -3480,8 +3480,8 @@ interactions: ParameterSetName: - -n -g -s --value User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/array_nulls?api-version=2017-12-01 response: @@ -3496,7 +3496,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:13:57 GMT + - Wed, 04 Mar 2020 18:11:40 GMT expires: - '-1' pragma: @@ -3532,18 +3532,18 @@ interactions: ParameterSetName: - -n -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/array_nulls?api-version=2017-12-01 response: body: - string: '{"operation":"UpdateElasticServerConfig","startTime":"2020-02-07T19:14:00.467Z"}' + string: '{"operation":"UpdateElasticServerConfig","startTime":"2020-03-04T18:11:41.697Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/39daeb62-68e9-44ad-96c4-bf2b22ef9849?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/21b9c006-17ce-4ebb-9c5b-0539ab0ba2d1?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -3551,11 +3551,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:13:59 GMT + - Wed, 04 Mar 2020 18:11:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/39daeb62-68e9-44ad-96c4-bf2b22ef9849?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/21b9c006-17ce-4ebb-9c5b-0539ab0ba2d1?api-version=2017-12-01 pragma: - no-cache server: @@ -3565,7 +3565,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 202 message: Accepted @@ -3583,13 +3583,13 @@ interactions: ParameterSetName: - -n -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/39daeb62-68e9-44ad-96c4-bf2b22ef9849?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/21b9c006-17ce-4ebb-9c5b-0539ab0ba2d1?api-version=2017-12-01 response: body: - string: '{"name":"39daeb62-68e9-44ad-96c4-bf2b22ef9849","status":"Succeeded","startTime":"2020-02-07T19:14:00.467Z"}' + string: '{"name":"21b9c006-17ce-4ebb-9c5b-0539ab0ba2d1","status":"Succeeded","startTime":"2020-03-04T18:11:41.697Z"}' headers: cache-control: - no-cache @@ -3598,7 +3598,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:14:16 GMT + - Wed, 04 Mar 2020 18:11:57 GMT expires: - '-1' pragma: @@ -3630,8 +3630,8 @@ interactions: ParameterSetName: - -n -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/array_nulls?api-version=2017-12-01 response: @@ -3646,7 +3646,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:14:19 GMT + - Wed, 04 Mar 2020 18:11:57 GMT expires: - '-1' pragma: @@ -3678,8 +3678,8 @@ interactions: ParameterSetName: - -g -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -3805,7 +3805,9 @@ interactions: the time zone for displaying and interpreting time stamps","defaultValue":"UTC","dataType":"String","allowedValues":"[A-Za-z0-9/+-_]+","source":"system-default","isConfigPendingRestart":"False","isDynamicConfig":"True"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/timezone","name":"timezone","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"","description":"Sets which shared libraries are preloaded at server start. Any change requires a restart to take effect.","defaultValue":"","dataType":"Set","allowedValues":",pgaudit,timescaledb","source":"system-default","isConfigPendingRestart":"False","isDynamicConfig":"False"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/shared_preload_libraries","name":"shared_preload_libraries","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"0","description":"Number - of transactions by which VACUUM and HOT cleanup should be deferred, if any.","defaultValue":"0","dataType":"Integer","allowedValues":"0-1000000","source":"system-default","isConfigPendingRestart":"False","isDynamicConfig":"True"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/vacuum_defer_cleanup_age","name":"vacuum_defer_cleanup_age","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"10","description":"Specifies + of transactions by which VACUUM and HOT cleanup should be deferred, if any.","defaultValue":"0","dataType":"Integer","allowedValues":"0-1000000","source":"system-default","isConfigPendingRestart":"False","isDynamicConfig":"True"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/vacuum_defer_cleanup_age","name":"vacuum_defer_cleanup_age","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"OFF","description":"Sets + the level of replication support (Read Replicas). Any change requires restarting + the server to take effect. This setting should not be changed for Basic servers.","defaultValue":"OFF","dataType":"Enumeration","allowedValues":"OFF,REPLICA,LOGICAL","source":"system-default","isConfigPendingRestart":"False","isDynamicConfig":"False"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/azure.replication_support","name":"azure.replication_support","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"10","description":"Specifies the maximum number of concurrent connections from standby servers or streaming base backup clients (i.e., the maximum number of simultaneously running WAL sender processes). This setting should not be changed for Basic servers.","defaultValue":"10","dataType":"Integer","allowedValues":"0-50","source":"system-default","isConfigPendingRestart":"False","isDynamicConfig":"False"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/max_wal_senders","name":"max_wal_senders","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"10","description":"Specifies @@ -3818,11 +3820,11 @@ interactions: cache-control: - no-cache content-length: - - '65000' + - '65775' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:14:22 GMT + - Wed, 04 Mar 2020 18:11:58 GMT expires: - '-1' pragma: @@ -3854,24 +3856,1288 @@ interactions: ParameterSetName: - -g -s --file-last-written User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/logFiles?api-version=2017-12-01 response: body: - string: '{"value":[{"properties":{"name":"postgresql-2020-02-07_190621.log","sizeInKB":8,"createdTime":"0001-01-01T00:00:00+00:00","lastModifiedTime":"2020-02-07T19:14:00+00:00","type":"text","url":"https://wasd2prodeus1apfse1041.file.core.windows.net/0dde18dcceba4d48aaa0b6f9fcaa780b/pg_log/postgresql-2020-02-07_190621.log?sv=2018-11-09&sr=f&sig=rOOHK4e%2BWWC9V5DIynlxnpNbxNorpokHDvOT1VDRCNc%3D&se=2020-02-07T20%3A14%3A28Z&sp=r"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/logFiles/postgresql-2020-02-07_190621.log","name":"postgresql-2020-02-07_190621.log","type":"Microsoft.DBforPostgreSQL/servers/logFiles"}]}' + string: '{"value":[{"properties":{"name":"postgresql-2020-03-04_180537.log","sizeInKB":7,"createdTime":"0001-01-01T00:00:00+00:00","lastModifiedTime":"2020-03-04T18:11:42+00:00","type":"text","url":"https://wasd2prodeus1apfse4276.file.core.windows.net/92514f54358b48f48528324005db49e5/pg_log/postgresql-2020-03-04_180537.log?sv=2018-11-09&sr=f&sig=rwXlKDLu3V%2FilPgnw6QB%2Bao2c%2BdsqfLeo13D7YhUiBw%3D&se=2020-03-04T19%3A11%3A59Z&sp=r"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/logFiles/postgresql-2020-03-04_180537.log","name":"postgresql-2020-03-04_180537.log","type":"Microsoft.DBforPostgreSQL/servers/logFiles"}]}' + headers: + cache-control: + - no-cache + content-length: + - '823' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:11: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: + - postgres server private-link-resource list + Connection: + - keep-alive + ParameterSetName: + - -g -s + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/privateLinkResources?api-version=2018-06-01 + response: + body: + string: '{"value":[{"properties":{"groupId":"postgresqlServer","requiredMembers":["postgresqlServer"]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/privateLinkResources/plr","name":"plr","type":"Microsoft.DBforPostgreSQL/servers/privateLinkResources"}]}' + headers: + cache-control: + - no-cache + content-length: + - '456' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:11: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: '{"location": "eastus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"properties": {"addressPrefix": + "10.0.0.0/24"}, "name": "cli-subnet-000004"}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + Content-Length: + - '222' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g -l --subnet-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003\",\r\n + \ \"etag\": \"W/\\\"75ff48f4-6636-4070-a7f2-5d9d16399748\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"7b6d28ff-168c-4402-ac35-f759dafeb974\",\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\": \"cli-subnet-000004\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n + \ \"etag\": \"W/\\\"75ff48f4-6636-4070-a7f2-5d9d16399748\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\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/eastus/operations/0c38f1e6-5210-492e-80b9-e6be69b75666?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '1528' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:12: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: + - 8062e758-d5a9-42a4-b1e4-6de6f5bf3c5a + 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: + - -n -g -l --subnet-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0c38f1e6-5210-492e-80b9-e6be69b75666?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:12:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 375df580-728c-4387-9721-57b8a516551c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --subnet-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003\",\r\n + \ \"etag\": \"W/\\\"e045f918-3173-49c6-be66-8930b0349acd\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"7b6d28ff-168c-4402-ac35-f759dafeb974\",\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\": \"cli-subnet-000004\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n + \ \"etag\": \"W/\\\"e045f918-3173-49c6-be66-8930b0349acd\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\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: - - '819' + - '1530' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:12:04 GMT + etag: + - W/"e045f918-3173-49c6-be66-8930b0349acd" + 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: + - f7f6d79e-0049-4f38-9d2b-63b3dc4c7b7e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet update + Connection: + - keep-alive + ParameterSetName: + - -n --vnet-name -g --disable-private-endpoint-network-policies + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"cli-subnet-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n + \ \"etag\": \"W/\\\"e045f918-3173-49c6-be66-8930b0349acd\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": + \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '639' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:12:04 GMT + etag: + - W/"e045f918-3173-49c6-be66-8930b0349acd" + 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: + - 6b568d8b-d2e6-4941-8cf4-025495a88335 + status: + code: 200 + message: OK +- request: + body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004", + "properties": {"addressPrefix": "10.0.0.0/24", "delegations": [], "privateEndpointNetworkPolicies": + "Disabled", "privateLinkServiceNetworkPolicies": "Enabled"}, "name": "cli-subnet-000004"}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet update + Connection: + - keep-alive + Content-Length: + - '451' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --vnet-name -g --disable-private-endpoint-network-policies + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"cli-subnet-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n + \ \"etag\": \"W/\\\"d726d9e5-2440-411f-8a18-9b1b4f86cecd\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": + \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9a9539e6-c114-4217-8804-b0f6b016875e?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '639' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:12:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 70eaea1d-70eb-46ed-a357-d84de2cbbba8 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet update + Connection: + - keep-alive + ParameterSetName: + - -n --vnet-name -g --disable-private-endpoint-network-policies + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9a9539e6-c114-4217-8804-b0f6b016875e?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:12:09 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: + - 045e6f7d-2455-4f2e-b91b-6c3ade53432b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet update + Connection: + - keep-alive + ParameterSetName: + - -n --vnet-name -g --disable-private-endpoint-network-policies + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"cli-subnet-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n + \ \"etag\": \"W/\\\"5942c359-4900-49f1-aff8-5c540b586b61\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": + \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '640' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:12:09 GMT + etag: + - W/"5942c359-4900-49f1-aff8-5c540b586b61" + 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: + - c081a54c-82af-49f2-9cf5-8c22f70019af + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - postgres server show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002?api-version=2017-12-01 + response: + body: + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.postgres.database.azure.com","earliestRestoreDate":"2020-03-04T18:14:32.347+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforPostgreSQL/servers"}' + headers: + cache-control: + - no-cache + content-length: + - '1094' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:12: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: + - postgres server private-link-resource list + Connection: + - keep-alive + ParameterSetName: + - -g -s + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/privateLinkResources?api-version=2018-06-01 + response: + body: + string: '{"value":[{"properties":{"groupId":"postgresqlServer","requiredMembers":["postgresqlServer"]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/privateLinkResources/plr","name":"plr","type":"Microsoft.DBforPostgreSQL/servers/privateLinkResources"}]}' + headers: + cache-control: + - no-cache + content-length: + - '456' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:12: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: 'b''b\''{"location": "eastus", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004"}, + "privateLinkServiceConnections": [{"properties": {"privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002", + "groupIds": ["postgresqlServer"]}, "name": "cli-pec-000006"}]}}\''''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + Content-Length: + - '705' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id + --group-ids + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"cli-pe-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005\",\r\n + \ \"etag\": \"W/\\\"2170d14c-8ac6-4461-970f-b42ab4af00b6\\\"\",\r\n \"type\": + \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": + \"7ed7017d-6b20-4103-8f1a-df36815913d6\",\r\n \"privateLinkServiceConnections\": + [\r\n {\r\n \"name\": \"cli-pec-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006\",\r\n + \ \"etag\": \"W/\\\"2170d14c-8ac6-4461-970f-b42ab4af00b6\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002\",\r\n + \ \"groupIds\": [\r\n \"postgresqlServer\"\r\n ],\r\n + \ \"privateLinkServiceConnectionState\": {\r\n \"status\": + \"Approved\",\r\n \"description\": \"\",\r\n \"actionsRequired\": + \"None\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n + \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n + \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/cli-pe-000005.nic.f41dd161-3e13-40cc-9322-6138c3b59cf2\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/270eb2b5-8f9c-412e-8250-2bc9863e8b84?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '2335' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:12: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: + - af206abb-9feb-45f9-8dd0-df140db53d0a + 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 private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id + --group-ids + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/270eb2b5-8f9c-412e-8250-2bc9863e8b84?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:12: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: + - 3674cf56-8ec1-4b4a-9fb8-089a2ee7f919 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id + --group-ids + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/270eb2b5-8f9c-412e-8250-2bc9863e8b84?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:12:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 6329b970-2201-452f-9031-841f8c9c684d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id + --group-ids + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/270eb2b5-8f9c-412e-8250-2bc9863e8b84?api-version=2019-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:12: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: + - e9b0ad55-154c-48ba-8fe4-6b82c17a4e1a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id + --group-ids + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005?api-version=2019-11-01 + response: + body: + string: "{\r\n \"name\": \"cli-pe-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005\",\r\n + \ \"etag\": \"W/\\\"96ec7acb-b103-4d0a-a163-97669f8498d5\\\"\",\r\n \"type\": + \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"7ed7017d-6b20-4103-8f1a-df36815913d6\",\r\n \"privateLinkServiceConnections\": + [\r\n {\r\n \"name\": \"cli-pec-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006\",\r\n + \ \"etag\": \"W/\\\"96ec7acb-b103-4d0a-a163-97669f8498d5\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002\",\r\n + \ \"groupIds\": [\r\n \"postgresqlServer\"\r\n ],\r\n + \ \"privateLinkServiceConnectionState\": {\r\n \"status\": + \"Approved\",\r\n \"description\": \"Auto-approved\",\r\n \"actionsRequired\": + \"None\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n + \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n + \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/cli-pe-000005.nic.f41dd161-3e13-40cc-9322-6138c3b59cf2\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2349' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:12:46 GMT + etag: + - W/"96ec7acb-b103-4d0a-a163-97669f8498d5" + 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: + - be2b6ba4-6b3f-43de-b977-3dee43105f9a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - rest + Connection: + - keep-alive + ParameterSetName: + - --method --uri + User-Agent: + - AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002?api-version=2017-12-01 + response: + body: + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.postgres.database.azure.com","earliestRestoreDate":"2020-03-04T18:14:32.347+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-a1eee105-237e-4a6d-903f-6fce184ef25b","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Ready"}}],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforPostgreSQL/servers"}' + headers: + cache-control: + - no-cache + content-length: + - '1893' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:12: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: + - postgres server private-endpoint-connection show + Connection: + - keep-alive + ParameterSetName: + - --server-name -g --name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-a1eee105-237e-4a6d-903f-6fce184ef25b?api-version=2018-06-01 + response: + body: + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Ready"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-a1eee105-237e-4a6d-903f-6fce184ef25b","name":"cli-pe-000005-a1eee105-237e-4a6d-903f-6fce184ef25b","type":"Microsoft.DBforPostgreSQL/servers/privateEndpointConnections"}' + headers: + cache-control: + - no-cache + content-length: + - '940' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:12: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: + - postgres server private-endpoint-connection approve + Connection: + - keep-alive + ParameterSetName: + - --server-name -g --name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-a1eee105-237e-4a6d-903f-6fce184ef25b?api-version=2018-06-01 + response: + body: + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Ready"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-a1eee105-237e-4a6d-903f-6fce184ef25b","name":"cli-pe-000005-a1eee105-237e-4a6d-903f-6fce184ef25b","type":"Microsoft.DBforPostgreSQL/servers/privateEndpointConnections"}' + headers: + cache-control: + - no-cache + content-length: + - '940' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:12:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - postgres server private-endpoint-connection approve + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --server-name -g --name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-a1eee105-237e-4a6d-903f-6fce184ef25b?api-version=2018-06-01 + response: + body: + string: '{"error":{"code":"PrivateEndpointConnectionStatusNotPending","message":"Private + Endpoint Connection Status is not Pending"}}' + headers: + cache-control: + - no-cache + content-length: + - '124' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:12:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 400 + message: Bad Request +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - postgres server private-endpoint-connection reject + Connection: + - keep-alive + ParameterSetName: + - --server-name -g --name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-a1eee105-237e-4a6d-903f-6fce184ef25b?api-version=2018-06-01 + response: + body: + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Ready"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-a1eee105-237e-4a6d-903f-6fce184ef25b","name":"cli-pe-000005-a1eee105-237e-4a6d-903f-6fce184ef25b","type":"Microsoft.DBforPostgreSQL/servers/privateEndpointConnections"}' + headers: + cache-control: + - no-cache + content-length: + - '940' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:12: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: '{}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - postgres server private-endpoint-connection reject + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --server-name -g --name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-a1eee105-237e-4a6d-903f-6fce184ef25b?api-version=2018-06-01 + response: + body: + string: '{"error":{"code":"PrivateEndpointConnectionStatusNotPending","message":"Private + Endpoint Connection Status is not Pending"}}' + headers: + cache-control: + - no-cache + content-length: + - '124' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:12:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 400 + message: Bad Request +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - postgres server private-endpoint-connection delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --id + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/privateEndpointConnections/cli-pe-000005-a1eee105-237e-4a6d-903f-6fce184ef25b?api-version=2018-06-01 + response: + body: + string: '{"operation":"DropElasticServerPrivateEndpointConnection","startTime":"2020-03-04T18:12:52.067Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/locations/eastus/privateEndpointConnectionAzureAsyncOperation/a7a4792a-efe9-4f6b-ac90-2b85ef9ce806?api-version=2018-06-01 + cache-control: + - no-cache + content-length: + - '97' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 04 Mar 2020 18:12:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/locations/eastus/privateEndpointConnectionOperationResults/a7a4792a-efe9-4f6b-ac90-2b85ef9ce806?api-version=2018-06-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - postgres server private-endpoint-connection delete + Connection: + - keep-alive + ParameterSetName: + - --id + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/locations/eastus/privateEndpointConnectionAzureAsyncOperation/a7a4792a-efe9-4f6b-ac90-2b85ef9ce806?api-version=2018-06-01 + response: + body: + string: '{"name":"a7a4792a-efe9-4f6b-ac90-2b85ef9ce806","status":"Succeeded","startTime":"2020-03-04T18:12:52.067Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 19:14:28 GMT + - Wed, 04 Mar 2020 18:13:08 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_postgres_server_mgmt.yaml b/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_postgres_server_mgmt.yaml index d9013937613..c40b82b10e9 100644 --- a/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_postgres_server_mgmt.yaml +++ b/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_postgres_server_mgmt.yaml @@ -1,95 +1,54 @@ interactions: - request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-03-20T03:29:02Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.60 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-03-20T03:29:02Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 03:29:03 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-03-20T03:29:03Z"}}' + body: '{"sku": {"name": "GP_Gen5_2"}, "properties": {"storageProfile": {"backupRetentionDays": + 10, "geoRedundantBackup": "Enabled", "storageAutogrow": "Enabled"}, "createMode": + "Default", "administratorLogin": "cloudsa", "administratorLoginPassword": "SecretPassword123"}, + "location": "eastus", "tags": {"key": "1"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - group create + - postgres server create Connection: - keep-alive Content-Length: - - '110' + - '309' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - --location --name --tag + - -g --name -l --admin-user --admin-password --sku-name --tags --geo-redundant-backup + --backup-retention User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000002?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002","name":"clitest.rg000002","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-03-20T03:29:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-03T02:29:10.653Z"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/2abc9078-1487-4233-85a0-72c33b3ebc29?api-version=2017-12-01 cache-control: - no-cache content-length: - - '384' + - '74' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:29:04 GMT + - Tue, 03 Mar 2020 02:29:10 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/2abc9078-1487-4233-85a0-72c33b3ebc29?api-version=2017-12-01 pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -97,13 +56,10 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' status: - code: 201 - message: Created + code: 202 + message: Accepted - request: - body: '{"sku": {"name": "GP_Gen5_2"}, "properties": {"storageProfile": {"backupRetentionDays": - 10, "geoRedundantBackup": "Enabled"}, "createMode": "Default", "administratorLogin": - "cloudsa", "administratorLoginPassword": "SecretPassword123"}, "location": "koreasouth", - "tags": {"key": "1"}}' + body: null headers: Accept: - application/json @@ -113,51 +69,43 @@ interactions: - postgres server create Connection: - keep-alive - Content-Length: - - '283' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g --name -l --admin-user --admin-password --sku-name --tags --geo-redundant-backup --backup-retention User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/2abc9078-1487-4233-85a0-72c33b3ebc29?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2019-03-20T03:29:06.393Z"}' + string: '{"name":"2abc9078-1487-4233-85a0-72c33b3ebc29","status":"InProgress","startTime":"2020-03-03T02:29:10.653Z"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/d9b0cb65-49d7-4474-a8ea-49c188c16bf1?api-version=2017-12-01 cache-control: - no-cache content-length: - - '74' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:29:06 GMT + - Tue, 03 Mar 2020 02:30:10 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/operationResults/d9b0cb65-49d7-4474-a8ea-49c188c16bf1?api-version=2017-12-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -173,13 +121,13 @@ interactions: - -g --name -l --admin-user --admin-password --sku-name --tags --geo-redundant-backup --backup-retention User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/d9b0cb65-49d7-4474-a8ea-49c188c16bf1?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/2abc9078-1487-4233-85a0-72c33b3ebc29?api-version=2017-12-01 response: body: - string: '{"name":"d9b0cb65-49d7-4474-a8ea-49c188c16bf1","status":"Succeeded","startTime":"2019-03-20T03:29:06.393Z"}' + string: '{"name":"2abc9078-1487-4233-85a0-72c33b3ebc29","status":"Succeeded","startTime":"2020-03-03T02:29:10.653Z"}' headers: cache-control: - no-cache @@ -188,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:30:07 GMT + - Tue, 03 Mar 2020 02:31:11 GMT expires: - '-1' pragma: @@ -221,22 +169,22 @@ interactions: - -g --name -l --admin-user --admin-password --sku-name --tags --geo-redundant-backup --backup-retention User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2019-03-20T03:39:06.707+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '975' + - '1113' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:30:07 GMT + - Tue, 03 Mar 2020 02:31:11 GMT expires: - '-1' pragma: @@ -268,24 +216,24 @@ interactions: ParameterSetName: - -g --name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2019-03-20T03:39:06.707+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '975' + - '1113' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:30:09 GMT + - Tue, 03 Mar 2020 02:31:12 GMT expires: - '-1' pragma: @@ -317,24 +265,24 @@ interactions: ParameterSetName: - -g --name --admin-password --ssl-enforcement --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2019-03-20T03:39:06.707+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '975' + - '1113' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:30:10 GMT + - Tue, 03 Mar 2020 02:31:13 GMT expires: - '-1' pragma: @@ -354,8 +302,8 @@ interactions: message: OK - request: body: '{"properties": {"storageProfile": {"backupRetentionDays": 10, "geoRedundantBackup": - "Enabled", "storageMB": 5120}, "administratorLoginPassword": "SecretPassword456", - "sslEnforcement": "Disabled"}, "tags": {"key": "2"}}' + "Enabled", "storageMB": 5120, "storageAutogrow": "Enabled"}, "administratorLoginPassword": + "SecretPassword456", "sslEnforcement": "Disabled"}, "tags": {"key": "2"}}' headers: Accept: - application/json @@ -366,24 +314,24 @@ interactions: Connection: - keep-alive Content-Length: - - '218' + - '248' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g --name --admin-password --ssl-enforcement --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2019-03-20T03:30:12.507Z"}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-03T02:31:14.477Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/9f122970-891e-423a-bd38-f186cd63b47f?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61968b92-6b50-4122-9df7-3a7b1c64ca93?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -391,11 +339,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:30:12 GMT + - Tue, 03 Mar 2020 02:31:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/operationResults/9f122970-891e-423a-bd38-f186cd63b47f?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/61968b92-6b50-4122-9df7-3a7b1c64ca93?api-version=2017-12-01 pragma: - no-cache server: @@ -405,7 +353,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 202 message: Accepted @@ -423,13 +371,13 @@ interactions: ParameterSetName: - -g --name --admin-password --ssl-enforcement --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/9f122970-891e-423a-bd38-f186cd63b47f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61968b92-6b50-4122-9df7-3a7b1c64ca93?api-version=2017-12-01 response: body: - string: '{"name":"9f122970-891e-423a-bd38-f186cd63b47f","status":"Succeeded","startTime":"2019-03-20T03:30:12.507Z"}' + string: '{"name":"61968b92-6b50-4122-9df7-3a7b1c64ca93","status":"Succeeded","startTime":"2020-03-03T02:31:14.477Z"}' headers: cache-control: - no-cache @@ -438,7 +386,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:31:12 GMT + - Tue, 03 Mar 2020 02:32:14 GMT expires: - '-1' pragma: @@ -470,22 +418,22 @@ interactions: ParameterSetName: - -g --name --admin-password --ssl-enforcement --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2019-03-20T03:39:06.707+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '976' + - '1114' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:31:13 GMT + - Tue, 03 Mar 2020 02:32:14 GMT expires: - '-1' pragma: @@ -517,24 +465,24 @@ interactions: ParameterSetName: - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2019-03-20T03:39:06.707+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '976' + - '1114' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:31:15 GMT + - Tue, 03 Mar 2020 02:32:15 GMT expires: - '-1' pragma: @@ -554,7 +502,7 @@ interactions: message: OK - request: body: '{"sku": {"name": "GP_Gen5_4"}, "properties": {"storageProfile": {"backupRetentionDays": - 10, "geoRedundantBackup": "Enabled", "storageMB": 5120}}}' + 10, "geoRedundantBackup": "Enabled", "storageMB": 5120, "storageAutogrow": "Enabled"}}}' headers: Accept: - application/json @@ -565,24 +513,24 @@ interactions: Connection: - keep-alive Content-Length: - - '145' + - '175' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2019-03-20T03:31:17.193Z"}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-03T02:32:16.707Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/b110dd4b-2689-44f0-9909-1b1b98685e28?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f7d241b7-12d6-4546-b791-00b4f1e1a764?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -590,11 +538,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:31:17 GMT + - Tue, 03 Mar 2020 02:32:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/operationResults/b110dd4b-2689-44f0-9909-1b1b98685e28?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f7d241b7-12d6-4546-b791-00b4f1e1a764?api-version=2017-12-01 pragma: - no-cache server: @@ -604,7 +552,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -622,13 +570,60 @@ interactions: ParameterSetName: - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f7d241b7-12d6-4546-b791-00b4f1e1a764?api-version=2017-12-01 + response: + body: + string: '{"name":"f7d241b7-12d6-4546-b791-00b4f1e1a764","status":"InProgress","startTime":"2020-03-03T02:32:16.707Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Mar 2020 02:33: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: + - postgres server update + Connection: + - keep-alive + ParameterSetName: + - -g --name --sku-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/b110dd4b-2689-44f0-9909-1b1b98685e28?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f7d241b7-12d6-4546-b791-00b4f1e1a764?api-version=2017-12-01 response: body: - string: '{"name":"b110dd4b-2689-44f0-9909-1b1b98685e28","status":"Succeeded","startTime":"2019-03-20T03:31:17.193Z"}' + string: '{"name":"f7d241b7-12d6-4546-b791-00b4f1e1a764","status":"Succeeded","startTime":"2020-03-03T02:32:16.707Z"}' headers: cache-control: - no-cache @@ -637,7 +632,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:32:18 GMT + - Tue, 03 Mar 2020 02:34:17 GMT expires: - '-1' pragma: @@ -669,22 +664,22 @@ interactions: ParameterSetName: - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2019-03-20T03:39:06.707+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '976' + - '1114' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:32:18 GMT + - Tue, 03 Mar 2020 02:34:17 GMT expires: - '-1' pragma: @@ -716,24 +711,24 @@ interactions: ParameterSetName: - -g --name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2019-03-20T03:39:06.707+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '976' + - '1114' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:32:19 GMT + - Tue, 03 Mar 2020 02:34:17 GMT expires: - '-1' pragma: @@ -765,24 +760,24 @@ interactions: ParameterSetName: - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2019-03-20T03:39:06.707+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '976' + - '1114' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:32:20 GMT + - Tue, 03 Mar 2020 02:34:18 GMT expires: - '-1' pragma: @@ -802,7 +797,7 @@ interactions: message: OK - request: body: '{"sku": {"name": "GP_Gen5_2"}, "properties": {"storageProfile": {"backupRetentionDays": - 10, "geoRedundantBackup": "Enabled", "storageMB": 5120}}}' + 10, "geoRedundantBackup": "Enabled", "storageMB": 5120, "storageAutogrow": "Enabled"}}}' headers: Accept: - application/json @@ -813,36 +808,36 @@ interactions: Connection: - keep-alive Content-Length: - - '145' + - '175' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2019-03-20T03:32:22.89Z"}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-03T02:34:19.383Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/d5e1c66b-6ff2-469e-8fa5-3e2daa44aca6?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/cde82e0b-9aa1-4a1c-b858-2a67e27d4d82?api-version=2017-12-01 cache-control: - no-cache content-length: - - '73' + - '74' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:32:22 GMT + - Tue, 03 Mar 2020 02:34:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/operationResults/d5e1c66b-6ff2-469e-8fa5-3e2daa44aca6?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/cde82e0b-9aa1-4a1c-b858-2a67e27d4d82?api-version=2017-12-01 pragma: - no-cache server: @@ -870,22 +865,69 @@ interactions: ParameterSetName: - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/cde82e0b-9aa1-4a1c-b858-2a67e27d4d82?api-version=2017-12-01 + response: + body: + string: '{"name":"cde82e0b-9aa1-4a1c-b858-2a67e27d4d82","status":"InProgress","startTime":"2020-03-03T02:34:19.383Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Mar 2020 02:35: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: + - postgres server update + Connection: + - keep-alive + ParameterSetName: + - -g --name --sku-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/d5e1c66b-6ff2-469e-8fa5-3e2daa44aca6?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/cde82e0b-9aa1-4a1c-b858-2a67e27d4d82?api-version=2017-12-01 response: body: - string: '{"name":"d5e1c66b-6ff2-469e-8fa5-3e2daa44aca6","status":"Succeeded","startTime":"2019-03-20T03:32:22.89Z"}' + string: '{"name":"cde82e0b-9aa1-4a1c-b858-2a67e27d4d82","status":"Succeeded","startTime":"2020-03-03T02:34:19.383Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:33:23 GMT + - Tue, 03 Mar 2020 02:36:19 GMT expires: - '-1' pragma: @@ -917,22 +959,22 @@ interactions: ParameterSetName: - -g --name --sku-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2019-03-20T03:39:06.707+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '976' + - '1114' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:33:24 GMT + - Tue, 03 Mar 2020 02:36:20 GMT expires: - '-1' pragma: @@ -964,24 +1006,24 @@ interactions: ParameterSetName: - -g --name --ssl-enforcement User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2019-03-20T03:39:06.707+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '976' + - '1114' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:33:25 GMT + - Tue, 03 Mar 2020 02:36:21 GMT expires: - '-1' pragma: @@ -1001,7 +1043,8 @@ interactions: message: OK - request: body: '{"properties": {"storageProfile": {"backupRetentionDays": 10, "geoRedundantBackup": - "Enabled", "storageMB": 5120}, "sslEnforcement": "Enabled"}}' + "Enabled", "storageMB": 5120, "storageAutogrow": "Enabled"}, "sslEnforcement": + "Enabled"}}' headers: Accept: - application/json @@ -1012,24 +1055,24 @@ interactions: Connection: - keep-alive Content-Length: - - '144' + - '174' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g --name --ssl-enforcement User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2019-03-20T03:33:27.643Z"}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-03T02:36:22.893Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/89cb9125-27ed-4fcf-83fb-5f5c4940e39c?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/782d2e86-e5c9-4229-b5f3-a0e0a08525e8?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -1037,11 +1080,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:33:27 GMT + - Tue, 03 Mar 2020 02:36:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/operationResults/89cb9125-27ed-4fcf-83fb-5f5c4940e39c?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/782d2e86-e5c9-4229-b5f3-a0e0a08525e8?api-version=2017-12-01 pragma: - no-cache server: @@ -1051,7 +1094,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -1069,13 +1112,13 @@ interactions: ParameterSetName: - -g --name --ssl-enforcement User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/89cb9125-27ed-4fcf-83fb-5f5c4940e39c?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/782d2e86-e5c9-4229-b5f3-a0e0a08525e8?api-version=2017-12-01 response: body: - string: '{"name":"89cb9125-27ed-4fcf-83fb-5f5c4940e39c","status":"Succeeded","startTime":"2019-03-20T03:33:27.643Z"}' + string: '{"name":"782d2e86-e5c9-4229-b5f3-a0e0a08525e8","status":"Succeeded","startTime":"2020-03-03T02:36:22.893Z"}' headers: cache-control: - no-cache @@ -1084,7 +1127,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:34:28 GMT + - Tue, 03 Mar 2020 02:37:22 GMT expires: - '-1' pragma: @@ -1116,22 +1159,22 @@ interactions: ParameterSetName: - -g --name --ssl-enforcement User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2019-03-20T03:39:06.707+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '975' + - '1113' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:34:28 GMT + - Tue, 03 Mar 2020 02:37:23 GMT expires: - '-1' pragma: @@ -1163,24 +1206,24 @@ interactions: ParameterSetName: - -g --name --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2019-03-20T03:39:06.707+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '975' + - '1113' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:34:30 GMT + - Tue, 03 Mar 2020 02:37:23 GMT expires: - '-1' pragma: @@ -1200,7 +1243,8 @@ interactions: message: OK - request: body: '{"properties": {"storageProfile": {"backupRetentionDays": 10, "geoRedundantBackup": - "Enabled", "storageMB": 5120}}, "tags": {"key": "3"}}' + "Enabled", "storageMB": 5120, "storageAutogrow": "Enabled"}}, "tags": {"key": + "3"}}' headers: Accept: - application/json @@ -1211,24 +1255,24 @@ interactions: Connection: - keep-alive Content-Length: - - '137' + - '167' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g --name --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2019-03-20T03:34:32.343Z"}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-03T02:37:25.057Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/52f64fee-023b-402e-9165-245602876457?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/65f41543-2b11-41f0-9562-71eb7e5f3082?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -1236,11 +1280,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:34:32 GMT + - Tue, 03 Mar 2020 02:37:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/operationResults/52f64fee-023b-402e-9165-245602876457?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/65f41543-2b11-41f0-9562-71eb7e5f3082?api-version=2017-12-01 pragma: - no-cache server: @@ -1250,7 +1294,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -1268,13 +1312,13 @@ interactions: ParameterSetName: - -g --name --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/52f64fee-023b-402e-9165-245602876457?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/65f41543-2b11-41f0-9562-71eb7e5f3082?api-version=2017-12-01 response: body: - string: '{"name":"52f64fee-023b-402e-9165-245602876457","status":"Succeeded","startTime":"2019-03-20T03:34:32.343Z"}' + string: '{"name":"65f41543-2b11-41f0-9562-71eb7e5f3082","status":"Succeeded","startTime":"2020-03-03T02:37:25.057Z"}' headers: cache-control: - no-cache @@ -1283,7 +1327,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:35:32 GMT + - Tue, 03 Mar 2020 02:38:24 GMT expires: - '-1' pragma: @@ -1315,22 +1359,22 @@ interactions: ParameterSetName: - -g --name --tags User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2019-03-20T03:39:06.707+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '975' + - '1113' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:35:33 GMT + - Tue, 03 Mar 2020 02:38:25 GMT expires: - '-1' pragma: @@ -1362,24 +1406,24 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2019-03-20T03:39:06.707+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '975' + - '1113' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:40:34 GMT + - Tue, 03 Mar 2020 02:43:25 GMT expires: - '-1' pragma: @@ -1398,9 +1442,9 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"properties": {"createMode": "PointInTimeRestore", "sourceServerId": + body: 'b''{"properties": {"createMode": "PointInTimeRestore", "sourceServerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003", - "restorePointInTime": "2019-03-20T03:40:34.676446Z"}, "location": "koreasouth"}\''''' + "restorePointInTime": "2020-03-03T02:43:26.276291Z"}, "location": "eastus"}''' headers: Accept: - application/json @@ -1411,24 +1455,24 @@ interactions: Connection: - keep-alive Content-Length: - - '403' + - '399' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirestore000004?api-version=2017-12-01 response: body: - string: '{"operation":"RestoreElasticServer","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"operation":"RestoreElasticServer","startTime":"2020-03-03T02:43:27.593Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -1436,11 +1480,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:40:35 GMT + - Tue, 03 Mar 2020 02:43:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/operationResults/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 pragma: - no-cache server: @@ -1468,13 +1512,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -1483,7 +1527,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:40:47 GMT + - Tue, 03 Mar 2020 02:43:38 GMT expires: - '-1' pragma: @@ -1515,13 +1559,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -1530,7 +1574,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:40:57 GMT + - Tue, 03 Mar 2020 02:43:47 GMT expires: - '-1' pragma: @@ -1562,13 +1606,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -1577,7 +1621,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:41:08 GMT + - Tue, 03 Mar 2020 02:43:57 GMT expires: - '-1' pragma: @@ -1609,13 +1653,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -1624,7 +1668,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:41:20 GMT + - Tue, 03 Mar 2020 02:44:07 GMT expires: - '-1' pragma: @@ -1656,13 +1700,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -1671,7 +1715,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:41:30 GMT + - Tue, 03 Mar 2020 02:44:18 GMT expires: - '-1' pragma: @@ -1703,13 +1747,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -1718,7 +1762,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:41:41 GMT + - Tue, 03 Mar 2020 02:44:28 GMT expires: - '-1' pragma: @@ -1750,13 +1794,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -1765,7 +1809,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:41:52 GMT + - Tue, 03 Mar 2020 02:44:38 GMT expires: - '-1' pragma: @@ -1797,13 +1841,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -1812,7 +1856,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:42:02 GMT + - Tue, 03 Mar 2020 02:44:48 GMT expires: - '-1' pragma: @@ -1844,13 +1888,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -1859,7 +1903,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:42:14 GMT + - Tue, 03 Mar 2020 02:44:59 GMT expires: - '-1' pragma: @@ -1891,13 +1935,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -1906,7 +1950,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:42:24 GMT + - Tue, 03 Mar 2020 02:45:09 GMT expires: - '-1' pragma: @@ -1938,13 +1982,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -1953,7 +1997,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:42:35 GMT + - Tue, 03 Mar 2020 02:45:19 GMT expires: - '-1' pragma: @@ -1985,13 +2029,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -2000,7 +2044,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:42:45 GMT + - Tue, 03 Mar 2020 02:45:29 GMT expires: - '-1' pragma: @@ -2032,13 +2076,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -2047,7 +2091,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:42:57 GMT + - Tue, 03 Mar 2020 02:45:39 GMT expires: - '-1' pragma: @@ -2079,13 +2123,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -2094,7 +2138,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:43:07 GMT + - Tue, 03 Mar 2020 02:45:49 GMT expires: - '-1' pragma: @@ -2126,13 +2170,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -2141,7 +2185,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:43:18 GMT + - Tue, 03 Mar 2020 02:45:59 GMT expires: - '-1' pragma: @@ -2173,13 +2217,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -2188,7 +2232,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:43:30 GMT + - Tue, 03 Mar 2020 02:46:09 GMT expires: - '-1' pragma: @@ -2220,13 +2264,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -2235,7 +2279,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:43:40 GMT + - Tue, 03 Mar 2020 02:46:19 GMT expires: - '-1' pragma: @@ -2267,13 +2311,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -2282,7 +2326,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:43:51 GMT + - Tue, 03 Mar 2020 02:46:29 GMT expires: - '-1' pragma: @@ -2314,13 +2358,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -2329,7 +2373,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:44:01 GMT + - Tue, 03 Mar 2020 02:46:40 GMT expires: - '-1' pragma: @@ -2361,13 +2405,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -2376,7 +2420,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:44:12 GMT + - Tue, 03 Mar 2020 02:46:50 GMT expires: - '-1' pragma: @@ -2408,13 +2452,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -2423,7 +2467,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:44:22 GMT + - Tue, 03 Mar 2020 02:47:00 GMT expires: - '-1' pragma: @@ -2455,13 +2499,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -2470,7 +2514,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:44:33 GMT + - Tue, 03 Mar 2020 02:47:11 GMT expires: - '-1' pragma: @@ -2502,13 +2546,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -2517,7 +2561,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:44:44 GMT + - Tue, 03 Mar 2020 02:47:21 GMT expires: - '-1' pragma: @@ -2549,13 +2593,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -2564,7 +2608,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:44:56 GMT + - Tue, 03 Mar 2020 02:47:31 GMT expires: - '-1' pragma: @@ -2596,13 +2640,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -2611,7 +2655,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:45:06 GMT + - Tue, 03 Mar 2020 02:47:41 GMT expires: - '-1' pragma: @@ -2643,13 +2687,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -2658,7 +2702,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:45:16 GMT + - Tue, 03 Mar 2020 02:47:51 GMT expires: - '-1' pragma: @@ -2690,13 +2734,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -2705,7 +2749,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:45:27 GMT + - Tue, 03 Mar 2020 02:48:01 GMT expires: - '-1' pragma: @@ -2737,13 +2781,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -2752,7 +2796,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:45:38 GMT + - Tue, 03 Mar 2020 02:48:12 GMT expires: - '-1' pragma: @@ -2784,13 +2828,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -2799,7 +2843,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:45:49 GMT + - Tue, 03 Mar 2020 02:48:22 GMT expires: - '-1' pragma: @@ -2831,13 +2875,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -2846,7 +2890,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:46:00 GMT + - Tue, 03 Mar 2020 02:48:32 GMT expires: - '-1' pragma: @@ -2878,13 +2922,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -2893,7 +2937,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:46:10 GMT + - Tue, 03 Mar 2020 02:48:42 GMT expires: - '-1' pragma: @@ -2925,13 +2969,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -2940,7 +2984,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:46:20 GMT + - Tue, 03 Mar 2020 02:48:52 GMT expires: - '-1' pragma: @@ -2972,13 +3016,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -2987,7 +3031,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:46:31 GMT + - Tue, 03 Mar 2020 02:49:02 GMT expires: - '-1' pragma: @@ -3019,13 +3063,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -3034,7 +3078,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:46:43 GMT + - Tue, 03 Mar 2020 02:49:12 GMT expires: - '-1' pragma: @@ -3066,13 +3110,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -3081,7 +3125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:46:53 GMT + - Tue, 03 Mar 2020 02:49:22 GMT expires: - '-1' pragma: @@ -3113,13 +3157,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -3128,7 +3172,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:47:05 GMT + - Tue, 03 Mar 2020 02:49:32 GMT expires: - '-1' pragma: @@ -3160,13 +3204,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -3175,7 +3219,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:47:15 GMT + - Tue, 03 Mar 2020 02:49:42 GMT expires: - '-1' pragma: @@ -3207,13 +3251,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -3222,7 +3266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:47:25 GMT + - Tue, 03 Mar 2020 02:49:52 GMT expires: - '-1' pragma: @@ -3254,13 +3298,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -3269,7 +3313,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:47:37 GMT + - Tue, 03 Mar 2020 02:50:03 GMT expires: - '-1' pragma: @@ -3301,13 +3345,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -3316,7 +3360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:47:48 GMT + - Tue, 03 Mar 2020 02:50:13 GMT expires: - '-1' pragma: @@ -3348,13 +3392,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -3363,7 +3407,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:47:58 GMT + - Tue, 03 Mar 2020 02:50:23 GMT expires: - '-1' pragma: @@ -3395,13 +3439,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -3410,7 +3454,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:48:09 GMT + - Tue, 03 Mar 2020 02:50:33 GMT expires: - '-1' pragma: @@ -3442,13 +3486,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -3457,7 +3501,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:48:20 GMT + - Tue, 03 Mar 2020 02:50:44 GMT expires: - '-1' pragma: @@ -3489,13 +3533,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -3504,7 +3548,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:48:31 GMT + - Tue, 03 Mar 2020 02:50:54 GMT expires: - '-1' pragma: @@ -3536,13 +3580,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -3551,7 +3595,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:48:42 GMT + - Tue, 03 Mar 2020 02:51:04 GMT expires: - '-1' pragma: @@ -3583,13 +3627,13 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"InProgress","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache @@ -3598,7 +3642,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:48:53 GMT + - Tue, 03 Mar 2020 02:51:14 GMT expires: - '-1' pragma: @@ -3630,22 +3674,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4552aa23-970b-4635-a1df-124e448a671a?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"4552aa23-970b-4635-a1df-124e448a671a","status":"Succeeded","startTime":"2020-03-03T02:43:27.593Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:49:03 GMT + - Tue, 03 Mar 2020 02:51:24 GMT expires: - '-1' pragma: @@ -3677,22 +3721,22 @@ interactions: ParameterSetName: - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirestore000004?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:53:27.937+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '108' + - '1094' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:49:14 GMT + - Tue, 03 Mar 2020 02:51:24 GMT expires: - '-1' pragma: @@ -3718,28 +3762,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server restore + - postgres server georestore Connection: - keep-alive ParameterSetName: - - -g --name --source-server --restore-point-in-time + - -g --name --source-server -l --geo-redundant-backup --backup-retention User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.997+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '108' + - '1113' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:49:25 GMT + - Tue, 03 Mar 2020 02:51:26 GMT expires: - '-1' pragma: @@ -3758,52 +3804,63 @@ interactions: code: 200 message: OK - request: - body: null + body: 'b''{"sku": {"name": "GP_Gen5_2"}, "properties": {"storageProfile": {"backupRetentionDays": + 20, "geoRedundantBackup": "Disabled"}, "createMode": "GeoRestore", "sourceServerId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003"}, + "location": "eastus"}''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - postgres server restore + - postgres server georestore Connection: - keep-alive + Content-Length: + - '449' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g --name --source-server --restore-point-in-time + - -g --name --source-server -l --geo-redundant-backup --backup-retention User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforPostgreSQL/servers/azuredbcligeorestore000005?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"operation":"RestoreElasticServer","startTime":"2020-03-03T02:51:27.457Z"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6108610b-3ec1-4345-b033-3397d56e3153?api-version=2017-12-01 cache-control: - no-cache content-length: - - '108' + - '75' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:49:36 GMT + - Tue, 03 Mar 2020 02:51:27 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/6108610b-3ec1-4345-b033-3397d56e3153?api-version=2017-12-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3812,28 +3869,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server restore + - postgres server georestore Connection: - keep-alive ParameterSetName: - - -g --name --source-server --restore-point-in-time + - -g --name --source-server -l --geo-redundant-backup --backup-retention User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6108610b-3ec1-4345-b033-3397d56e3153?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"name":"6108610b-3ec1-4345-b033-3397d56e3153","status":"Failed","startTime":"2020-03-03T02:51:27.457Z","error":{"code":"SubscriptionDoesNotHaveServer","message":"Subscription + ''cb33edf0-f7b3-405b-a766-592dd69a1987'' does not have the server ''azuredbclitest000003''."}}' headers: cache-control: - no-cache content-length: - - '108' + - '309' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:49:47 GMT + - Tue, 03 Mar 2020 02:51:38 GMT expires: - '-1' pragma: @@ -3859,28 +3917,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server restore + - postgres server list Connection: - keep-alive ParameterSetName: - - -g --name --source-server --restore-point-in-time + - -g User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforPostgreSQL/servers?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"value":[{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:53:27.937+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforPostgreSQL/servers"}]}' headers: cache-control: - no-cache content-length: - - '108' + - '1082' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:49:58 GMT + - Tue, 03 Mar 2020 02:51:38 GMT expires: - '-1' pragma: @@ -3906,42 +3966,46 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server restore + - postgres server list Connection: - keep-alive - ParameterSetName: - - -g --name --source-server --restore-point-in-time User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/servers?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"value":[{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"azureuser","storageProfile":{"storageMB":51200,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pg-xbb6aj4xo3p6e.postgres.database.azure.com","earliestRestoreDate":"2020-02-25T02:51:40.3421345+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ramp3/providers/Microsoft.DBforPostgreSQL/servers/pg-xbb6aj4xo3p6e/privateEndpointConnections/MyPrivateEndpointPostgreSql-xbb6aj4xo3p6e-d208e08c-2885-41a0-ba29-4520388305ce","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ramp3/providers/Microsoft.Network/privateEndpoints/MyPrivateEndpointPostgreSql-xbb6aj4xo3p6e/privateLinkServiceConnections/MyConnection"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Ready"}}],"infrastructureEncryption":"Enabled"},"location":"australiaeast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ramp3/providers/Microsoft.DBforPostgreSQL/servers/pg-xbb6aj4xo3p6e","name":"pg-xbb6aj4xo3p6e","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_16","tier":"GeneralPurpose","family":"Gen5","capacity":16},"properties":{"administratorLogin":"pguser","storageProfile":{"storageMB":104448,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"10","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"ubsairflowpg.postgres.database.azure.com","earliestRestoreDate":"2020-02-25T02:51:40.0677123+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus2","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ubsairflowtestrg/providers/Microsoft.DBforPostgreSQL/servers/ubsairflowpg","name":"ubsairflowpg","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_8","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"administratorLogin":"T3stRepladmin12","storageProfile":{"storageMB":214016,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"targetpostgresql96.postgres.database.azure.com","earliestRestoreDate":"2020-02-25T02:51:40.0756972+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestServersSi0ci1EastUSRG/providers/Microsoft.DBforPostgreSQL/servers/targetpostgresql96","name":"targetpostgresql96","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"dms","storageProfile":{"storageMB":114688,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pgreliability01.postgres.database.azure.com","earliestRestoreDate":"2020-02-25T02:51:40.0756972+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PGReliabilityTest01/providers/Microsoft.DBforPostgreSQL/servers/pgreliability01","name":"pgreliability01","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"pguser","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"10","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"kidb.postgres.database.azure.com","earliestRestoreDate":"2020-02-25T02:51:40.0756972+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kidelete/providers/Microsoft.DBforPostgreSQL/servers/kidb","name":"kidb","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"dms","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"dmpgtesteus.postgres.database.azure.com","earliestRestoreDate":"2020-02-25T02:51:40.0756972+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestServersSi0ci1EastUSRG/providers/Microsoft.DBforPostgreSQL/servers/dmpgtesteus","name":"dmpgtesteus","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"rvadmin","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"airflow-62i2q2munvg24pgserver.postgres.database.azure.com","earliestRestoreDate":"2020-02-25T02:51:40.0756972+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kidelete/providers/Microsoft.DBforPostgreSQL/servers/airflow-62i2q2munvg24pgserver","name":"airflow-62i2q2munvg24pgserver","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_1","tier":"Basic","family":"Gen5","capacity":1},"properties":{"administratorLogin":"dma","storageProfile":{"storageMB":51200,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"arpavliccrappypg96.postgres.database.azure.com","earliestRestoreDate":"2020-02-25T02:51:40.0756972+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arpavlicCrappyPG/providers/Microsoft.DBforPostgreSQL/servers/arpavliccrappypg96","name":"arpavliccrappypg96","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"rvadmin","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"10","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"kidb2.postgres.database.azure.com","earliestRestoreDate":"2020-02-25T02:51:40.0756972+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kidelete/providers/Microsoft.DBforPostgreSQL/servers/kidb2","name":"kidb2","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_1","tier":"Basic","family":"Gen5","capacity":1},"properties":{"administratorLogin":"dma","storageProfile":{"storageMB":51200,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"10","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"arpavliccrappypg10.postgres.database.azure.com","earliestRestoreDate":"2020-02-25T02:51:40.0756972+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arpavlicCrappyPG/providers/Microsoft.DBforPostgreSQL/servers/arpavliccrappypg10","name":"arpavliccrappypg10","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitestfgn7r5lhvkk557mb2t.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T00:04:13.333+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg442uizjgb7g3uzexjz5vihef4o6dgnbcdrbe7cxb6acionw4owpyioftdbrb4rjkp/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitestfgn7r5lhvkk557mb2t","name":"azuredbclitestfgn7r5lhvkk557mb2t","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitestg63ikmx5eyko76y3ws.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T00:06:21.837+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rga5plxkzencnffq3uk3cms25bmvoy2qm6h3y5aqaedz3ljsh33ckquhc3mh43gyhtu/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitestg63ikmx5eyko76y3ws","name":"azuredbclitestg63ikmx5eyko76y3ws","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep1v6kywwfja5mienoestvxpie4mjn2ct4k6xkeze4zhalyypr4i.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T00:15:19.507+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg442uizjgb7g3uzexjz5vihef4o6dgnbcdrbe7cxb6acionw4owpyioftdbrb4rjkp/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1v6kywwfja5mienoestvxpie4mjn2ct4k6xkeze4zhalyypr4i","name":"azuredbclirep1v6kywwfja5mienoestvxpie4mjn2ct4k6xkeze4zhalyypr4i","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitestuwzjqfujtaljm5se46.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.337+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmozyerxy23h3lo4im7jg7anvgxfeficce3gq4axbw6ncwgqcdskjlqejsrjqltlgo/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitestuwzjqfujtaljm5se46","name":"azuredbclitestuwzjqfujtaljm5se46","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.997+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:53:27.937+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitestedotlhtxhye6caenzv.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:56:43.047+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcu45p3ds32c5nyuyhxrxqddnju345kkzae7nwfzx3yoogvaqvs7x4darusx7tv5rd/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitestedotlhtxhye6caenzv","name":"azuredbclitestedotlhtxhye6caenzv","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"ssannakk","storageProfile":{"storageMB":51200,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"sudhakarpgtest.postgres.database.azure.com","earliestRestoreDate":"2020-02-25T02:51:40.0328615+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"northcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sudhakartestrg/providers/Microsoft.DBforPostgreSQL/servers/sudhakarpgtest","name":"sudhakarpgtest","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"pguser","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"10","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"kalyanspgwe.postgres.database.azure.com","earliestRestoreDate":"2020-02-25T02:51:40.3627017+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"westeurope","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/KalyanSRG/providers/Microsoft.DBforPostgreSQL/servers/kalyanspgwe","name":"kalyanspgwe","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_1","tier":"Basic","family":"Gen5","capacity":1},"properties":{"administratorLogin":"pguser","storageProfile":{"storageMB":51200,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"10","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"kalyanspgbasic.postgres.database.azure.com","earliestRestoreDate":"2020-02-25T02:51:40.3627017+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"westeurope","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/KalyanSRG/providers/Microsoft.DBforPostgreSQL/servers/kalyanspgbasic","name":"kalyanspgbasic","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"pguser","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"10","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"kalyanspgwe-r1.postgres.database.azure.com","earliestRestoreDate":"2020-02-25T02:51:40.3627017+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/KalyanSRG/providers/Microsoft.DBforPostgreSQL/servers/kalyanspgwe-r1","name":"kalyanspgwe-r1","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_8","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"administratorLogin":"T3stRepladmin12","storageProfile":{"storageMB":51200,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"targetpostgresql96wcus.postgres.database.azure.com","earliestRestoreDate":"2020-02-25T02:51:39.8600543+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestServersSi0ci1WestCentralUSRG/providers/Microsoft.DBforPostgreSQL/servers/targetpostgresql96wcus","name":"targetpostgresql96wcus","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_1","tier":"Basic","family":"Gen5","capacity":1},"properties":{"administratorLogin":"dma","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"10","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"testrestorecancel.postgres.database.azure.com","earliestRestoreDate":"2020-02-25T02:51:39.8600543+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arpavlicwuspg/providers/Microsoft.DBforPostgreSQL/servers/testrestorecancel","name":"testrestorecancel","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_1","tier":"Basic","family":"Gen5","capacity":1},"properties":{"administratorLogin":"dma","storageProfile":{"storageMB":51200,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"arpavlicwuspg96.postgres.database.azure.com","earliestRestoreDate":"2020-02-25T02:51:39.8600543+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arpavlicwuspg2/providers/Microsoft.DBforPostgreSQL/servers/arpavlicwuspg96","name":"arpavlicwuspg96","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"postgres","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"11","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"testnewversions.postgres.database.azure.com","earliestRestoreDate":"2020-02-25T02:51:39.8600543+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwjainTestMigration/providers/Microsoft.DBforPostgreSQL/servers/testnewversions","name":"testnewversions","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"dms","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"builddemotargetpg.postgres.database.azure.com","earliestRestoreDate":"2020-02-25T02:51:39.9335917+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BuildDemo/providers/Microsoft.DBforPostgreSQL/servers/builddemotargetpg","name":"builddemotargetpg","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"dms","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"builddemotarget.postgres.database.azure.com","earliestRestoreDate":"2020-02-25T02:51:39.9335917+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BuildDemo/providers/Microsoft.DBforPostgreSQL/servers/builddemotarget","name":"builddemotarget","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"dms","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"dmpgtestwus2.postgres.database.azure.com","earliestRestoreDate":"2020-02-25T02:51:39.9335917+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestServersSi0ci1WestUS2RG/providers/Microsoft.DBforPostgreSQL/servers/dmpgtestwus2","name":"dmpgtestwus2","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"rbartel_admin","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"10","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"rbartel-westus2.postgres.database.azure.com","earliestRestoreDate":"2020-02-25T02:51:39.9335917+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"westus2","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rbartel-test/providers/Microsoft.DBforPostgreSQL/servers/rbartel-westus2","name":"rbartel-westus2","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"admin_rbartel","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"10","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"rbar-westus2.postgres.database.azure.com","earliestRestoreDate":"2020-02-25T23:33:13.493+00:00","replicationRole":"","masterServerId":"","byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"westus2","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rbartel-test/providers/Microsoft.DBforPostgreSQL/servers/rbar-westus2","name":"rbar-westus2","type":"Microsoft.DBforPostgreSQL/servers"}]}' headers: cache-control: - no-cache content-length: - - '108' + - '27849' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:50:08 GMT + - Tue, 03 Mar 2020 02:51:40 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-original-request-ids: + - 6a9553d8-af66-4128-88dc-c2e6a4b7d03e + - f456e0c1-b084-4189-bbc7-3f6f6fa02063 + - 65cda77e-03a4-4000-9163-191337528e22 + - 64e153d8-9812-4180-a231-cf2c9c32258d + - ac4aad0c-5376-4bfc-b862-05ac0d531ad3 + - 966e1695-24c3-484c-b1ad-57f8b86d42b7 + - 7a78156e-e53f-497c-a7bd-af12d64f6e2c status: code: 200 message: OK @@ -3953,1024 +4017,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server restore + - postgres server delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g --name --source-server --restore-point-in-time + - -g --name --yes User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' + string: '{"operation":"DropElasticServer","startTime":"2020-03-03T02:51:41.247Z"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/24951b9d-ea0c-4281-91a5-fc7fd73f9158?api-version=2017-12-01 cache-control: - no-cache content-length: - - '108' + - '72' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:50:19 GMT + - Tue, 03 Mar 2020 02:51:40 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/24951b9d-ea0c-4281-91a5-fc7fd73f9158?api-version=2017-12-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres server restore - Connection: - - keep-alive - ParameterSetName: - - -g --name --source-server --restore-point-in-time - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 - response: - body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 03:50: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: - - postgres server restore - Connection: - - keep-alive - ParameterSetName: - - -g --name --source-server --restore-point-in-time - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 - response: - body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 03:50: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: - - postgres server restore - Connection: - - keep-alive - ParameterSetName: - - -g --name --source-server --restore-point-in-time - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 - response: - body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 03: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: - - postgres server restore - Connection: - - keep-alive - ParameterSetName: - - -g --name --source-server --restore-point-in-time - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 - response: - body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 03:51: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: - - postgres server restore - Connection: - - keep-alive - ParameterSetName: - - -g --name --source-server --restore-point-in-time - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 - response: - body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 03:51: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: - - postgres server restore - Connection: - - keep-alive - ParameterSetName: - - -g --name --source-server --restore-point-in-time - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 - response: - body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 03:51: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: - - postgres server restore - Connection: - - keep-alive - ParameterSetName: - - -g --name --source-server --restore-point-in-time - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 - response: - body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 03:51: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: - - postgres server restore - Connection: - - keep-alive - ParameterSetName: - - -g --name --source-server --restore-point-in-time - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 - response: - body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 03:51: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: - - postgres server restore - Connection: - - keep-alive - ParameterSetName: - - -g --name --source-server --restore-point-in-time - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 - response: - body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 03:51: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: - - postgres server restore - Connection: - - keep-alive - ParameterSetName: - - -g --name --source-server --restore-point-in-time - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 - response: - body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 03:52: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: - - postgres server restore - Connection: - - keep-alive - ParameterSetName: - - -g --name --source-server --restore-point-in-time - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 - response: - body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 03:52: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: - - postgres server restore - Connection: - - keep-alive - ParameterSetName: - - -g --name --source-server --restore-point-in-time - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 - response: - body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"InProgress","startTime":"2019-03-20T03:40:36.783Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 03:52: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: - - postgres server restore - Connection: - - keep-alive - ParameterSetName: - - -g --name --source-server --restore-point-in-time - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/5ff53577-8888-44ab-8870-bbba93f2594f?api-version=2017-12-01 - response: - body: - string: '{"name":"5ff53577-8888-44ab-8870-bbba93f2594f","status":"Succeeded","startTime":"2019-03-20T03:40:36.783Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 03:52:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres server restore - Connection: - - keep-alive - ParameterSetName: - - -g --name --source-server --restore-point-in-time - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirestore000004?api-version=2017-12-01 - response: - body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.postgres.database.azure.com","earliestRestoreDate":"2019-03-20T03:50:37.003+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforPostgreSQL/servers"}' - headers: - cache-control: - - no-cache - content-length: - - '956' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 03:52: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: - - postgres server georestore - Connection: - - keep-alive - ParameterSetName: - - -g --name --source-server -l --geo-redundant-backup --backup-retention - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 - response: - body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2019-03-20T03:39:06.707+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"koreasouth","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' - headers: - cache-control: - - no-cache - content-length: - - '975' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 03:52: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: 'b''b\''{"sku": {"name": "GP_Gen5_2"}, "properties": {"storageProfile": - {"backupRetentionDays": 20, "geoRedundantBackup": "Disabled"}, "createMode": - "GeoRestore", "sourceServerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003"}, - "location": "koreasouth"}\''''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres server georestore - Connection: - - keep-alive - Content-Length: - - '453' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g --name --source-server -l --geo-redundant-backup --backup-retention - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforPostgreSQL/servers/azuredbcligeorestore000005?api-version=2017-12-01 - response: - body: - string: '{"operation":"RestoreElasticServer","startTime":"2019-03-20T03:52:46.543Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/4cb7504a-7e9f-4fd7-b835-f5588acd8f50?api-version=2017-12-01 - cache-control: - - no-cache - content-length: - - '75' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 03:52:46 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/operationResults/4cb7504a-7e9f-4fd7-b835-f5588acd8f50?api-version=2017-12-01 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres server georestore - Connection: - - keep-alive - ParameterSetName: - - -g --name --source-server -l --geo-redundant-backup --backup-retention - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/4cb7504a-7e9f-4fd7-b835-f5588acd8f50?api-version=2017-12-01 - response: - body: - string: '{"name":"4cb7504a-7e9f-4fd7-b835-f5588acd8f50","status":"Failed","startTime":"2019-03-20T03:52:46.543Z","error":{"code":"SubscriptionDoesNotHaveServer","message":"Subscription - ''8403da61-2731-4c0e-a00c-1ecd41e0d247'' does not have the server ''azuredbclitest000003''."}}' - headers: - cache-control: - - no-cache - content-length: - - '309' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 03:52:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres server list - Connection: - - keep-alive - ParameterSetName: - - -g - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforPostgreSQL/servers?api-version=2017-12-01 - response: - body: - string: '{"value":[{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.postgres.database.azure.com","earliestRestoreDate":"2019-03-20T03:50:37.003+00:00","replicationRole":"","masterServerId":""},"location":"koreasouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforPostgreSQL/servers"}]}' - headers: - cache-control: - - no-cache - content-length: - - '944' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 03:52: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: - - postgres server list - Connection: - - keep-alive - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/servers?api-version=2017-12-01 - response: - body: - string: '{"value":[{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"prkint","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"prkinttestingserver.postgres.database.azure.com","earliestRestoreDate":"2019-03-19T20:22:48.373+00:00","replicationRole":"","masterServerId":""},"location":"australiacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adobe/providers/Microsoft.DBforPostgreSQL/servers/prkinttestingserver","name":"prkinttestingserver","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_16","tier":"GeneralPurpose","family":"Gen5","capacity":16},"properties":{"administratorLogin":"Username123","storageProfile":{"storageMB":1024000,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"adampggpv16g.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.8774146+00:00","replicationRole":"","masterServerId":""},"location":"australiaeast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OrcasGATesting/providers/Microsoft.DBforPostgreSQL/servers/adampggpv16g","name":"adampggpv16g","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"liusunlogin","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"liusunliusun.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.8774146+00:00","replicationRole":"","masterServerId":""},"location":"australiaeast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/liusun-test/providers/Microsoft.DBforPostgreSQL/servers/liusunliusun","name":"liusunliusun","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_1","tier":"Basic","family":"Gen5","capacity":1},"properties":{"administratorLogin":"Username123","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pgausbasicgen5v1.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.9221632+00:00","replicationRole":"","masterServerId":""},"location":"australiasoutheast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OrcasGATesting/providers/Microsoft.DBforPostgreSQL/servers/pgausbasicgen5v1","name":"pgausbasicgen5v1","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"MO_Gen5_32","tier":"MemoryOptimized","family":"Gen5","capacity":32},"properties":{"administratorLogin":"Username123","storageProfile":{"storageMB":10240,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pgausmogen5v34.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.9221632+00:00","replicationRole":"","masterServerId":""},"location":"australiasoutheast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OrcasGATesting/providers/Microsoft.DBforPostgreSQL/servers/pgausmogen5v34","name":"pgausmogen5v34","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_16","tier":"GeneralPurpose","family":"Gen5","capacity":16},"properties":{"administratorLogin":"pgtestvnet","storageProfile":{"storageMB":128000,"backupRetentionDays":35,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pgvnetperftest02.postgres.database.azure.com","earliestRestoreDate":"2019-02-13T03:52:59.9357938+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VNETTesting/providers/Microsoft.DBforPostgreSQL/servers/pgvnetperftest02","name":"pgvnetperftest02","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_1","tier":"Basic","family":"Gen5","capacity":1},"properties":{"administratorLogin":"myname","storageProfile":{"storageMB":184320,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"mypgserver1.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.9357938+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mypgrg/providers/Microsoft.DBforPostgreSQL/servers/mypgserver1","name":"mypgserver1","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"testlogin","storageProfile":{"storageMB":240640,"backupRetentionDays":10,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"mypgtestserver.postgres.database.azure.com","earliestRestoreDate":"2019-03-10T03:52:59.9357938+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mypgrg/providers/Microsoft.DBforPostgreSQL/servers/mypgtestserver","name":"mypgtestserver","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"demoadmin","storageProfile":{"storageMB":278528,"backupRetentionDays":7,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pgsqlrestore.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.9357938+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mypgresource/providers/Microsoft.DBforPostgreSQL/servers/pgsqlrestore","name":"pgsqlrestore","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"demoadmin","storageProfile":{"storageMB":227328,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"brazilpgsqldemo.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.9357938+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/BrazilPGSQLDemo/providers/Microsoft.DBforPostgreSQL/servers/brazilpgsqldemo","name":"brazilpgsqldemo","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"brazildemo","storageProfile":{"storageMB":1011712,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"brazildemo.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.9357938+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/brazildemo/providers/Microsoft.DBforPostgreSQL/servers/brazildemo","name":"brazildemo","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"brazildemo","storageProfile":{"storageMB":91136,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"brazildemorestore.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.9357938+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/brazildemo/providers/Microsoft.DBforPostgreSQL/servers/brazildemorestore","name":"brazildemorestore","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"brazildemo","storageProfile":{"storageMB":91136,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"testrest.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.9357938+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","tags":{"cause":"automation"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/brazildemo/providers/Microsoft.DBforPostgreSQL/servers/testrest","name":"testrest","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"Username123","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pgbzbasicgen5v2.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.9357938+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OrcasGATesting/providers/Microsoft.DBforPostgreSQL/servers/pgbzbasicgen5v2","name":"pgbzbasicgen5v2","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"pgtestvnet","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pgvnetbasicftest01.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.9357938+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VNETTesting/providers/Microsoft.DBforPostgreSQL/servers/pgvnetbasicftest01","name":"pgvnetbasicftest01","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"pgtestvnet","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pgvnetperftest01.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.9357938+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VNETTesting/providers/Microsoft.DBforPostgreSQL/servers/pgvnetperftest01","name":"pgvnetperftest01","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"pgtestvnet","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pg10vnetperftest01.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.9357938+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VNETTesting/providers/Microsoft.DBforPostgreSQL/servers/pg10vnetperftest01","name":"pg10vnetperftest01","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"pgtestvnet","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pg10vnetperftest02.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.9357938+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VNETTesting/providers/Microsoft.DBforPostgreSQL/servers/pg10vnetperftest02","name":"pg10vnetperftest02","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"testnewpg10","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"testnewpg10.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.9357938+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VNETTesting/providers/Microsoft.DBforPostgreSQL/servers/testnewpg10","name":"testnewpg10","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudSA","storageProfile":{"storageMB":7168,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"sarorabrazil.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.9357938+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarora_oss_group/providers/Microsoft.DBforPostgreSQL/servers/sarorabrazil","name":"sarorabrazil","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"Username123","storageProfile":{"storageMB":1048576,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"br-msorcas-experimentation-b-gen5-2.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.9357938+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OrcasGATesting/providers/Microsoft.DBforPostgreSQL/servers/br-msorcas-experimentation-b-gen5-2","name":"br-msorcas-experimentation-b-gen5-2","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_16","tier":"GeneralPurpose","family":"Gen5","capacity":16},"properties":{"administratorLogin":"Username123","storageProfile":{"storageMB":4096000,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"br-msorcas-experimentation-gp-gen5-16.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.9357938+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OrcasGATesting/providers/Microsoft.DBforPostgreSQL/servers/br-msorcas-experimentation-gp-gen5-16","name":"br-msorcas-experimentation-gp-gen5-16","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"MO_Gen5_2","tier":"MemoryOptimized","family":"Gen5","capacity":2},"properties":{"administratorLogin":"Username123","storageProfile":{"storageMB":4096000,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"br-msorcas-experimentation-mo-gen5-2.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.9357938+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OrcasGATesting/providers/Microsoft.DBforPostgreSQL/servers/br-msorcas-experimentation-mo-gen5-2","name":"br-msorcas-experimentation-mo-gen5-2","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"MO_Gen5_8","tier":"MemoryOptimized","family":"Gen5","capacity":8},"properties":{"administratorLogin":"Username123","storageProfile":{"storageMB":4096000,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"br-msorcas-experimentation-mo-gen5-8.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.9357938+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OrcasGATesting/providers/Microsoft.DBforPostgreSQL/servers/br-msorcas-experimentation-mo-gen5-8","name":"br-msorcas-experimentation-mo-gen5-8","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitestqiu5yoliy4hkxb5y76.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.9357938+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5ghkpon3kotfs7jiqsop4aw46e36x2jsxvm32mnqbfdaoyunvjns3jgdqveou6o2/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitestqiu5yoliy4hkxb5y76","name":"azuredbclitestqiu5yoliy4hkxb5y76","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitestpacxwob5lwnspy3wch.postgres.database.azure.com","earliestRestoreDate":"2019-03-19T23:49:01.037+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghqju53lyx6jrmnblx2azozogazfmxxwsg7cggxz5ufj7gofoagna3jmbroqj3o7jl/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitestpacxwob5lwnspy3wch","name":"azuredbclitestpacxwob5lwnspy3wch","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitestzxkj2jgtx7xdtbpap6.postgres.database.azure.com","earliestRestoreDate":"2019-03-20T00:11:01.2+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqgk6avo5ajd5fwd5q4qpa7llsnhxwq5657xlznokdwoyvhstdfk3g5sgxnuosjrow/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitestzxkj2jgtx7xdtbpap6","name":"azuredbclitestzxkj2jgtx7xdtbpap6","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep1m7xslsz6bikag7jwimrv3irirxenty33fuv23nen2oy2l6zph.postgres.database.azure.com","earliestRestoreDate":"2019-03-20T00:20:07.883+00:00","replicationRole":"","masterServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqgk6avo5ajd5fwd5q4qpa7llsnhxwq5657xlznokdwoyvhstdfk3g5sgxnuosjrow/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1m7xslsz6bikag7jwimrv3irirxenty33fuv23nen2oy2l6zph","name":"azuredbclirep1m7xslsz6bikag7jwimrv3irirxenty33fuv23nen2oy2l6zph","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"MO_Gen5_2","tier":"MemoryOptimized","family":"Gen5","capacity":2},"properties":{"administratorLogin":"Username123","storageProfile":{"storageMB":10240,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pgsqlmo500v2.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.4823995+00:00","replicationRole":"","masterServerId":""},"location":"canadacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OrcasGATesting/providers/Microsoft.DBforPostgreSQL/servers/pgsqlmo500v2","name":"pgsqlmo500v2","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"shinim","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"orcasdeveloperpg1.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.4823995+00:00","replicationRole":"","masterServerId":""},"location":"canadacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/orcasql/providers/Microsoft.DBforPostgreSQL/servers/orcasdeveloperpg1","name":"orcasdeveloperpg1","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"postgres","storageProfile":{"storageMB":305152,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"perfdojo-test.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.3961932+00:00","replicationRole":"","masterServerId":""},"location":"centralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adsmiech/providers/Microsoft.DBforPostgreSQL/servers/perfdojo-test","name":"perfdojo-test","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"pgadmin","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"qiyuantestsvc3.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.3961932+00:00","replicationRole":"","masterServerId":""},"location":"centralus","tags":{"AzPGParameterKey":"a0973102-f5fa-44fa-85d9-f8333456c37e","tags1":"value1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qiyuanrgnew/providers/Microsoft.DBforPostgreSQL/servers/qiyuantestsvc3","name":"qiyuantestsvc3","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"pguser","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"mr-crashy.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.3961932+00:00","replicationRole":"","masterServerId":""},"location":"centralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ramarti/providers/Microsoft.DBforPostgreSQL/servers/mr-crashy","name":"mr-crashy","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"prkint","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"prkintserver.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T07:31:21.43+00:00","replicationRole":"","masterServerId":""},"location":"eastasia","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adobe/providers/Microsoft.DBforPostgreSQL/servers/prkintserver","name":"prkintserver","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"prkint","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"prkinttest.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T23:19:20.087+00:00","replicationRole":"","masterServerId":""},"location":"eastasia","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adobe/providers/Microsoft.DBforPostgreSQL/servers/prkinttest","name":"prkinttest","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"demouser","storageProfile":{"storageMB":128000,"backupRetentionDays":35,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"mypgdemo1.postgres.database.azure.com","earliestRestoreDate":"2019-02-13T03:52:59.5097362+00:00","replicationRole":"","masterServerId":""},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sunilrg/providers/Microsoft.DBforPostgreSQL/servers/mypgdemo1","name":"mypgdemo1","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_16","tier":"GeneralPurpose","family":"Gen5","capacity":16},"properties":{"administratorLogin":"pguser","storageProfile":{"storageMB":1048576,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"staples2terabytesp40-restore.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.5097362+00:00","replicationRole":"","masterServerId":""},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/staples/providers/Microsoft.DBforPostgreSQL/servers/staples2terabytesp40-restore","name":"staples2terabytesp40-restore","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"pgtestvnet","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"vnettesteastus2.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.5097362+00:00","replicationRole":"","masterServerId":""},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VNETTesting/providers/Microsoft.DBforPostgreSQL/servers/vnettesteastus2","name":"vnettesteastus2","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"sukamat","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"sunilpg10server.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.5097362+00:00","replicationRole":"","masterServerId":""},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sunilrg/providers/Microsoft.DBforPostgreSQL/servers/sunilpg10server","name":"sunilpg10server","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"pgtestvnet","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pgvnetmovetest.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.5097362+00:00","replicationRole":"","masterServerId":""},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VNETTestMove/providers/Microsoft.DBforPostgreSQL/servers/pgvnetmovetest","name":"pgvnetmovetest","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"pguser","storageProfile":{"storageMB":54272,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pgreplication-demo-master.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.5097362+00:00","replicationRole":"","masterServerId":""},"location":"eastus2","tags":{"Tag1":"Tag1Value","Tag2":"Tag2Value"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PGReadReplicaDemo_EastUS2/providers/Microsoft.DBforPostgreSQL/servers/pgreplication-demo-master","name":"pgreplication-demo-master","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"pguser","storageProfile":{"storageMB":54272,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pgreplication-demo-replica2.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.5097362+00:00","replicationRole":"","masterServerId":""},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PGReadReplicaDemo_EastUS2/providers/Microsoft.DBforPostgreSQL/servers/pgreplication-demo-replica2","name":"pgreplication-demo-replica2","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"adsmiech","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"adsmiech-config-test.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.5097362+00:00","replicationRole":"","masterServerId":""},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adsmiech/providers/Microsoft.DBforPostgreSQL/servers/adsmiech-config-test","name":"adsmiech-config-test","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"pguser","storageProfile":{"storageMB":51200,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"kalyans-basic-master.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.5097362+00:00","replicationRole":"","masterServerId":""},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PGReadReplicaDemo_EastUS2/providers/Microsoft.DBforPostgreSQL/servers/kalyans-basic-master","name":"kalyans-basic-master","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"pguser","storageProfile":{"storageMB":51200,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"kalyans-basic-replica1.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.5097362+00:00","replicationRole":"","masterServerId":""},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PGReadReplicaDemo_EastUS2/providers/Microsoft.DBforPostgreSQL/servers/kalyans-basic-replica1","name":"kalyans-basic-replica1","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"sukamat","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"sunilpgbenchdemo.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.4977743+00:00","replicationRole":"","masterServerId":""},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sunilrg/providers/Microsoft.DBforPostgreSQL/servers/sunilpgbenchdemo","name":"sunilpgbenchdemo","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_32","tier":"GeneralPurpose","family":"Gen5","capacity":32},"properties":{"administratorLogin":"pguser","storageProfile":{"storageMB":2097152,"backupRetentionDays":14,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pgs-node-postgres.postgres.database.azure.com","earliestRestoreDate":"2019-03-06T03:52:59.4977743+00:00","replicationRole":"","masterServerId":""},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pgs-node-postgres/providers/Microsoft.DBforPostgreSQL/servers/pgs-node-postgres","name":"pgs-node-postgres","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudSA","storageProfile":{"storageMB":51200,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"janitapostgres.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.4977743+00:00","replicationRole":"","masterServerId":""},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/janitaadhoc/providers/Microsoft.DBforPostgreSQL/servers/janitapostgres","name":"janitapostgres","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"sasankv-rr-master.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.4977743+00:00","replicationRole":"","masterServerId":""},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sasankv-rr-master/providers/Microsoft.DBforPostgreSQL/servers/sasankv-rr-master","name":"sasankv-rr-master","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"prkint","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"prkintpgserver.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.4977743+00:00","replicationRole":"","masterServerId":""},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prkintresourcegroup/providers/Microsoft.DBforPostgreSQL/servers/prkintpgserver","name":"prkintpgserver","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"prkint","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"prkintpgserverreplica.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.4977743+00:00","replicationRole":"","masterServerId":""},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prkintresourcegroup/providers/Microsoft.DBforPostgreSQL/servers/prkintpgserverreplica","name":"prkintpgserverreplica","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"prkint","storageProfile":{"storageMB":102400,"backupRetentionDays":31,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"prkintmaster-replica1.postgres.database.azure.com","earliestRestoreDate":"2019-02-17T03:52:59.4977743+00:00","replicationRole":"","masterServerId":""},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prkintresourcegroup/providers/Microsoft.DBforPostgreSQL/servers/prkintmaster-replica1","name":"prkintmaster-replica1","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"prkint","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"prkintservertest.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.4977743+00:00","replicationRole":"","masterServerId":""},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prkintresourcegroup/providers/Microsoft.DBforPostgreSQL/servers/prkintservertest","name":"prkintservertest","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"prkint","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"prkintreplica1.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.4977743+00:00","replicationRole":"","masterServerId":""},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prkintresourcegroup/providers/Microsoft.DBforPostgreSQL/servers/prkintreplica1","name":"prkintreplica1","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"prkint","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"prkinttestserver01.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.4977743+00:00","replicationRole":"","masterServerId":""},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prkintresourcegroup/providers/Microsoft.DBforPostgreSQL/servers/prkinttestserver01","name":"prkinttestserver01","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"pguser","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"doesitwork.postgres.database.azure.com","earliestRestoreDate":"2019-03-18T19:39:54.62+00:00","replicationRole":"","masterServerId":""},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/timescale-test/providers/Microsoft.DBforPostgreSQL/servers/doesitwork","name":"doesitwork","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"prkint","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"prkint.postgres.database.azure.com","earliestRestoreDate":"2019-03-19T01:31:09.98+00:00","replicationRole":"","masterServerId":""},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adobe/providers/Microsoft.DBforPostgreSQL/servers/prkint","name":"prkint","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen4_4","tier":"GeneralPurpose","family":"Gen4","capacity":4},"properties":{"administratorLogin":"liusunlogin","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"liusun-tttt.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.6114301+00:00","replicationRole":"","masterServerId":""},"location":"japaneast","tags":{"cause":"automation"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/liusun-test/providers/Microsoft.DBforPostgreSQL/servers/liusun-tttt","name":"liusun-tttt","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"MO_Gen5_32","tier":"MemoryOptimized","family":"Gen5","capacity":32},"properties":{"administratorLogin":"Username123","storageProfile":{"storageMB":10240,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pgmogen5v32.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.6268464+00:00","replicationRole":"","masterServerId":""},"location":"japanwest","tags":{"displayName":"test"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OrcasGATesting/providers/Microsoft.DBforPostgreSQL/servers/pgmogen5v32","name":"pgmogen5v32","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"prkint","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"prkintpg01.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.6268464+00:00","replicationRole":"","masterServerId":""},"location":"japanwest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prkintresourcegroup/providers/Microsoft.DBforPostgreSQL/servers/prkintpg01","name":"prkintpg01","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"Username123","storageProfile":{"storageMB":256000,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"tr10kc1apg96v2g5gp.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.773068+00:00","replicationRole":"","masterServerId":""},"location":"koreacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OrcasGATesting/providers/Microsoft.DBforPostgreSQL/servers/tr10kc1apg96v2g5gp","name":"tr10kc1apg96v2g5gp","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudSA","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"sarorakoreapg.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.7740673+00:00","replicationRole":"","masterServerId":""},"location":"koreasouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarora_oss_group/providers/Microsoft.DBforPostgreSQL/servers/sarorakoreapg","name":"sarorakoreapg","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_64","tier":"GeneralPurpose","family":"Gen5","capacity":64},"properties":{"administratorLogin":"shinim","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"koreasouthgp64.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.7740673+00:00","replicationRole":"","masterServerId":""},"location":"koreasouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adobe_resource/providers/Microsoft.DBforPostgreSQL/servers/koreasouthgp64","name":"koreasouthgp64","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitestabeqf3k45rfgc2kszph3lct3ejk5t7yayytzpyk4du3ywqsxm.postgres.database.azure.com","earliestRestoreDate":"2019-03-19T06:37:14.033+00:00","replicationRole":"","masterServerId":""},"location":"koreasouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgt6u6iohb2ryav5wo34jpss6k3dpykfdihdonobxv3jsjrraz35vrujaqjxsxk2l75/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitestabeqf3k45rfgc2kszph3lct3ejk5t7yayytzpyk4du3ywqsxm","name":"azuredbclitestabeqf3k45rfgc2kszph3lct3ejk5t7yayytzpyk4du3ywqsxm","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2019-03-20T03:39:06.707+00:00","replicationRole":"","masterServerId":""},"location":"koreasouth","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":10,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.postgres.database.azure.com","earliestRestoreDate":"2019-03-20T03:50:37.003+00:00","replicationRole":"","masterServerId":""},"location":"koreasouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"pgadmin","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"ecompoc-postgresqldbserver.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.4336575+00:00","replicationRole":"","masterServerId":""},"location":"northcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ecompoc/providers/Microsoft.DBforPostgreSQL/servers/ecompoc-postgresqldbserver","name":"ecompoc-postgresqldbserver","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_64","tier":"GeneralPurpose","family":"Gen5","capacity":64},"properties":{"administratorLogin":"shinim","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"northcentraluspg64.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.4336575+00:00","replicationRole":"","masterServerId":""},"location":"northcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adobe_rg/providers/Microsoft.DBforPostgreSQL/servers/northcentraluspg64","name":"northcentraluspg64","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"postgres","storageProfile":{"storageMB":51200,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"vnetcustomerserver.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.4336575+00:00","replicationRole":"","masterServerId":""},"location":"northcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vnetcustomerserver/providers/Microsoft.DBforPostgreSQL/servers/vnetcustomerserver","name":"vnetcustomerserver","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"postgre","storageProfile":{"storageMB":128000,"backupRetentionDays":35,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"testssl.postgres.database.azure.com","earliestRestoreDate":"2019-02-13T03:52:59.4066834+00:00","replicationRole":"","masterServerId":""},"location":"southcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ssltest/providers/Microsoft.DBforPostgreSQL/servers/testssl","name":"testssl","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_1","tier":"Basic","family":"Gen5","capacity":1},"properties":{"administratorLogin":"Username123","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pgtestbasicgen5v1.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.4066834+00:00","replicationRole":"","masterServerId":""},"location":"southcentralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OrcasGATesting/providers/Microsoft.DBforPostgreSQL/servers/pgtestbasicgen5v1","name":"pgtestbasicgen5v1","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"clog","storageProfile":{"storageMB":104448,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"clog-test.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.9614249+00:00","replicationRole":"","masterServerId":""},"location":"southeastasia","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chengyu-test/providers/Microsoft.DBforPostgreSQL/servers/clog-test","name":"clog-test","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"csiadmin","storageProfile":{"storageMB":51200,"backupRetentionDays":7,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"qiyuantestcharv1.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.8116021+00:00","replicationRole":"","masterServerId":""},"location":"uksouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qiyuanrgwus/providers/Microsoft.DBforPostgreSQL/servers/qiyuantestcharv1","name":"qiyuantestcharv1","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"adobetest","storageProfile":{"storageMB":512000,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"sarorapg.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.8233764+00:00","replicationRole":"","masterServerId":""},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adobe/providers/Microsoft.DBforPostgreSQL/servers/sarorapg","name":"sarorapg","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"shinim","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"advacedthreadprotectiontest.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.8233764+00:00","replicationRole":"","masterServerId":""},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/orcasql/providers/Microsoft.DBforPostgreSQL/servers/advacedthreadprotectiontest","name":"advacedthreadprotectiontest","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"sukamat","storageProfile":{"storageMB":128000,"backupRetentionDays":35,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"postgresmigrationdemo.postgres.database.azure.com","earliestRestoreDate":"2019-02-13T03:52:59.3437983+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IgniteMigration/providers/Microsoft.DBforPostgreSQL/servers/postgresmigrationdemo","name":"postgresmigrationdemo","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"sukamat","storageProfile":{"storageMB":598016,"backupRetentionDays":12,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"scalepgdemo.postgres.database.azure.com","earliestRestoreDate":"2019-03-08T03:52:59.3437983+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sunilrg/providers/Microsoft.DBforPostgreSQL/servers/scalepgdemo","name":"scalepgdemo","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_8","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"administratorLogin":"yukon","storageProfile":{"storageMB":128000,"backupRetentionDays":21,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"boeing-test-2-restored.postgres.database.azure.com","earliestRestoreDate":"2019-02-27T03:52:59.3437983+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connectivitytest/providers/Microsoft.DBforPostgreSQL/servers/boeing-test-2-restored","name":"boeing-test-2-restored","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"pguser","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pgs-bachow.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.3437983+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/postgres_fdw/providers/Microsoft.DBforPostgreSQL/servers/pgs-bachow","name":"pgs-bachow","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"pguser","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pgs-bachow1.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.3437983+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/postgres_fdw/providers/Microsoft.DBforPostgreSQL/servers/pgs-bachow1","name":"pgs-bachow1","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"postgres","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.5","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"sqlopsstudio-test-95.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.3437983+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SqlOpsStudioTest/providers/Microsoft.DBforPostgreSQL/servers/sqlopsstudio-test-95","name":"sqlopsstudio-test-95","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"pguser","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pgs-bachow7.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.3437983+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/postgres_fdw/providers/Microsoft.DBforPostgreSQL/servers/pgs-bachow7","name":"pgs-bachow7","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"hgadmin","storageProfile":{"storageMB":646144,"backupRetentionDays":35,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"hgpgsqlserver.postgres.database.azure.com","earliestRestoreDate":"2019-02-13T03:52:59.3437983+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hgpgsqlserver/providers/Microsoft.DBforPostgreSQL/servers/hgpgsqlserver","name":"hgpgsqlserver","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":19456,"backupRetentionDays":10,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"basicprodpg.postgres.database.azure.com","earliestRestoreDate":"2019-03-10T03:52:59.3437983+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/s1/providers/Microsoft.DBforPostgreSQL/servers/basicprodpg","name":"basicprodpg","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"mypg10.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.3437983+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/s1/providers/Microsoft.DBforPostgreSQL/servers/mypg10","name":"mypg10","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"hgadmin","storageProfile":{"storageMB":646144,"backupRetentionDays":35,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pgsqlpitr.postgres.database.azure.com","earliestRestoreDate":"2019-02-13T03:52:59.3437983+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hgpgsqlserver/providers/Microsoft.DBforPostgreSQL/servers/pgsqlpitr","name":"pgsqlpitr","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_1","tier":"Basic","family":"Gen5","capacity":1},"properties":{"administratorLogin":"postgres","storageProfile":{"storageMB":51200,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"microbenchmark-result.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.3437983+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/microbenchmark/providers/Microsoft.DBforPostgreSQL/servers/microbenchmark-result","name":"microbenchmark-result","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"postgres","storageProfile":{"storageMB":418816,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"akamath.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.3437983+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akamath/providers/Microsoft.DBforPostgreSQL/servers/akamath","name":"akamath","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"pgadmin","storageProfile":{"storageMB":51200,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"iotpoc-pgserver.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.3437983+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pgiotpoc/providers/Microsoft.DBforPostgreSQL/servers/iotpoc-pgserver","name":"iotpoc-pgserver","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"rthattak","storageProfile":{"storageMB":51200,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"rthattak.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.3437983+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ByjuTestRG/providers/Microsoft.DBforPostgreSQL/servers/rthattak","name":"rthattak","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"orcasperf","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Enabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"adsmiech-perfbenchmark-db.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.3437983+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adsmiech/providers/Microsoft.DBforPostgreSQL/servers/adsmiech-perfbenchmark-db","name":"adsmiech-perfbenchmark-db","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"postgres","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"sqlopsstudio-test-96.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.3437983+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/liusun-test/providers/Microsoft.DBforPostgreSQL/servers/sqlopsstudio-test-96","name":"sqlopsstudio-test-96","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"csiadmin","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"qiyuantestvalidate1.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.3437983+00:00","replicationRole":"","masterServerId":""},"location":"westus","tags":{"tag1":"value"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qiyuanrgwus/providers/Microsoft.DBforPostgreSQL/servers/qiyuantestvalidate1","name":"qiyuantestvalidate1","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"Yukon","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pgs10-gg.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.3437983+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gg-rc/providers/Microsoft.DBforPostgreSQL/servers/pgs10-gg","name":"pgs10-gg","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"Yukon","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pgs96-gg.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.3437983+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gg-rc/providers/Microsoft.DBforPostgreSQL/servers/pgs96-gg","name":"pgs96-gg","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"Yukon","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pgs10-gg-r2.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.3437983+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gg-rc/providers/Microsoft.DBforPostgreSQL/servers/pgs10-gg-r2","name":"pgs10-gg-r2","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"Yukon","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"pgs10-gg-r4.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.3437983+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gg-rc/providers/Microsoft.DBforPostgreSQL/servers/pgs10-gg-r4","name":"pgs10-gg-r4","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"pguser","storageProfile":{"storageMB":1026048,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"kakedzia.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.3437983+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kakedzia/providers/Microsoft.DBforPostgreSQL/servers/kakedzia","name":"kakedzia","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"csiadmin","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"mytestsvrqiyuan.postgres.database.azure.com","earliestRestoreDate":"2019-03-19T21:00:02.233+00:00","replicationRole":"","masterServerId":""},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qiyuanrgnew/providers/Microsoft.DBforPostgreSQL/servers/mytestsvrqiyuan","name":"mytestsvrqiyuan","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"adsmiech","storageProfile":{"storageMB":25600,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"adsmiech-ktr.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.2540137+00:00","replicationRole":"","masterServerId":""},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adsmiech/providers/Microsoft.DBforPostgreSQL/servers/adsmiech-ktr","name":"adsmiech-ktr","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"sa","storageProfile":{"storageMB":112640,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"kg-test-postgres.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.2540137+00:00","replicationRole":"","masterServerId":""},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kiglus-aks-pgbouncer-test/providers/Microsoft.DBforPostgreSQL/servers/kg-test-postgres","name":"kg-test-postgres","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"postgres","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"sqlopsstudio-test-10.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.2540137+00:00","replicationRole":"","masterServerId":""},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/liusun-test/providers/Microsoft.DBforPostgreSQL/servers/sqlopsstudio-test-10","name":"sqlopsstudio-test-10","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"postgres","storageProfile":{"storageMB":303104,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"adsmiech-perfdojo-test.postgres.database.azure.com","earliestRestoreDate":"2019-03-13T03:52:59.2540137+00:00","replicationRole":"","masterServerId":""},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adsmiech/providers/Microsoft.DBforPostgreSQL/servers/adsmiech-perfdojo-test","name":"adsmiech-perfdojo-test","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"myadmin","storageProfile":{"storageMB":102400,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"10","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"test-pg.postgres.database.azure.com","earliestRestoreDate":"2019-03-15T17:28:15.19+00:00","replicationRole":"","masterServerId":""},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.DBforPostgreSQL/servers/test-pg","name":"test-pg","type":"Microsoft.DBforPostgreSQL/servers"}]}' - headers: - cache-control: - - no-cache - content-length: - - '77402' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 03:53:00 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - 43c64b16-29dc-42f6-9fb8-939c600bcd31 - - 7f6529df-734a-4256-b47f-f3598c3c6a25 - - c11f96b7-2265-46f9-b952-46e71099bf9e - - 4abde228-b9a4-4589-b296-41c96f9b6744 - - 95dfad70-cd3b-43b6-81bc-ae4bcf5f01e0 - - b574d570-a07c-47c7-beb3-b4d59a52d99f - - cf809dc4-ee24-4b04-b902-2a717905bfff - - fddaf1c8-54b5-4e19-8ac6-46ad5463fe8c - - 0d0c141a-fd54-4707-8fba-692fcf50c6ed - - 06e076d5-8880-44aa-b980-89fe59fa0f30 - - d2d084c8-be03-4ce5-bd22-919b83de63f7 - - 328d4c60-b871-4dba-9cba-eac8c4734b76 - - f0341706-2fee-4631-a401-cb18f9b1c41e - - 7077fabb-ec87-4af8-ad7b-94a8db0580cc - - a412cb96-0310-4bd8-8add-e6033b5993a4 - - 8531a6d2-f752-40ef-bc1c-1990423a13eb - - 8a6250f0-2ef7-4854-83d7-4c8768103645 - - 390231df-da17-4329-ae6f-9dfcc4ed58d2 - - a2b4ab63-8c62-4fb8-9a69-932d6dda6c22 - - 8abd9111-152e-418f-a931-f800fc06bf07 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres server delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g --name --yes - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 - response: - body: - string: '{"operation":"DropElasticServer","startTime":"2019-03-20T03:53:00.977Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/71b463fc-d229-4832-987c-90313cadc67e?api-version=2017-12-01 - cache-control: - - no-cache - content-length: - - '72' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Mar 2019 03:53:01 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/operationResults/71b463fc-d229-4832-987c-90313cadc67e?api-version=2017-12-01 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - status: - code: 202 - message: Accepted + code: 202 + message: Accepted - request: body: null headers: @@ -4985,13 +4076,13 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/71b463fc-d229-4832-987c-90313cadc67e?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/24951b9d-ea0c-4281-91a5-fc7fd73f9158?api-version=2017-12-01 response: body: - string: '{"name":"71b463fc-d229-4832-987c-90313cadc67e","status":"Succeeded","startTime":"2019-03-20T03:53:00.977Z"}' + string: '{"name":"24951b9d-ea0c-4281-91a5-fc7fd73f9158","status":"Succeeded","startTime":"2020-03-03T02:51:41.247Z"}' headers: cache-control: - no-cache @@ -5000,7 +4091,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:53:16 GMT + - Tue, 03 Mar 2020 02:51:56 GMT expires: - '-1' pragma: @@ -5034,30 +4125,30 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirestore000004?api-version=2017-12-01 response: body: - string: '{"operation":"DropElasticServer","startTime":"2019-03-20T03:53:18.04Z"}' + string: '{"operation":"DropElasticServer","startTime":"2020-03-03T02:51:58.003Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/1f05c589-9fb1-4b3f-a9ee-fc84975cdcb1?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/90f0546b-4f50-4150-92fd-ee62656df601?api-version=2017-12-01 cache-control: - no-cache content-length: - - '71' + - '72' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:53:17 GMT + - Tue, 03 Mar 2020 02:51:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/operationResults/1f05c589-9fb1-4b3f-a9ee-fc84975cdcb1?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/90f0546b-4f50-4150-92fd-ee62656df601?api-version=2017-12-01 pragma: - no-cache server: @@ -5085,22 +4176,22 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/koreasouth/azureAsyncOperation/1f05c589-9fb1-4b3f-a9ee-fc84975cdcb1?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/90f0546b-4f50-4150-92fd-ee62656df601?api-version=2017-12-01 response: body: - string: '{"name":"1f05c589-9fb1-4b3f-a9ee-fc84975cdcb1","status":"Succeeded","startTime":"2019-03-20T03:53:18.04Z"}' + string: '{"name":"90f0546b-4f50-4150-92fd-ee62656df601","status":"Succeeded","startTime":"2020-03-03T02:51:58.003Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:53:33 GMT + - Tue, 03 Mar 2020 02:52:12 GMT expires: - '-1' pragma: @@ -5132,8 +4223,8 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -5149,7 +4240,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:53:34 GMT + - Tue, 03 Mar 2020 02:52:13 GMT expires: - '-1' pragma: @@ -5177,8 +4268,8 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET @@ -5194,7 +4285,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Mar 2019 03:53:34 GMT + - Tue, 03 Mar 2020 02:52:14 GMT expires: - '-1' pragma: @@ -5212,98 +4303,4 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.60 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000002?api-version=2019-07-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 20 Mar 2019 03:53:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdUTDRJM05CREY1N1VVNVNUN0VLRkJDQjVCTVBFRE82VEhLN3w2Qzk4RUNCQTQ0MTBBMzgzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-07-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.60 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 20 Mar 2019 03:53:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdJT1A3SUZQVUVWRkRLWVNWUzJMTkJXSklaT1RBREdUWFNYQ3wxMkQ1QTIxNzQ1MUY1QzFGLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-07-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_postgrsql_basic_replica_mgmt.yaml b/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_postgrsql_basic_replica_mgmt.yaml index fd33e6abb87..0f28db9969d 100644 --- a/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_postgrsql_basic_replica_mgmt.yaml +++ b/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_postgrsql_basic_replica_mgmt.yaml @@ -1,58 +1,63 @@ interactions: - request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-06-28T21:43:53Z"}}' + body: '{"sku": {"name": "B_Gen5_2"}, "properties": {"storageProfile": {"storageAutogrow": + "Enabled"}, "createMode": "Default", "administratorLogin": "cloudsa", "administratorLoginPassword": + "SecretPassword123"}, "location": "eastus"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - group create + - postgres server create Connection: - keep-alive Content-Length: - - '110' + - '226' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - --location --name --tag + - -g --name -l --admin-user --admin-password --sku-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-28T21:43:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-03T02:29:09.977Z"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a318e269-7c22-4a1f-9931-55f4978edf08?api-version=2017-12-01 cache-control: - no-cache content-length: - - '384' + - '74' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:43:55 GMT + - Tue, 03 Mar 2020 02:29:09 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/a318e269-7c22-4a1f-9931-55f4978edf08?api-version=2017-12-01 pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: - code: 201 - message: Created + code: 202 + message: Accepted - request: - body: '{"sku": {"name": "B_Gen5_2"}, "properties": {"storageProfile": {}, "createMode": - "Default", "administratorLogin": "cloudsa", "administratorLoginPassword": "SecretPassword123"}, - "location": "brazilsouth"}' + body: null headers: Accept: - application/json @@ -62,50 +67,42 @@ interactions: - postgres server create Connection: - keep-alive - Content-Length: - - '203' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g --name -l --admin-user --admin-password --sku-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002?api-version=2017-12-01 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a318e269-7c22-4a1f-9931-55f4978edf08?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2019-06-28T21:43:57.737Z"}' + string: '{"name":"a318e269-7c22-4a1f-9931-55f4978edf08","status":"InProgress","startTime":"2020-03-03T02:29:09.977Z"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/417ccacd-faa1-4d1e-a02c-a2241c7b9b7d?api-version=2017-12-01 cache-control: - no-cache content-length: - - '74' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:43:57 GMT + - Tue, 03 Mar 2020 02:30:10 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/417ccacd-faa1-4d1e-a02c-a2241c7b9b7d?api-version=2017-12-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -120,13 +117,13 @@ interactions: ParameterSetName: - -g --name -l --admin-user --admin-password --sku-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/417ccacd-faa1-4d1e-a02c-a2241c7b9b7d?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a318e269-7c22-4a1f-9931-55f4978edf08?api-version=2017-12-01 response: body: - string: '{"name":"417ccacd-faa1-4d1e-a02c-a2241c7b9b7d","status":"InProgress","startTime":"2019-06-28T21:43:57.737Z"}' + string: '{"name":"a318e269-7c22-4a1f-9931-55f4978edf08","status":"InProgress","startTime":"2020-03-03T02:29:09.977Z"}' headers: cache-control: - no-cache @@ -135,7 +132,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:44:58 GMT + - Tue, 03 Mar 2020 02:31:10 GMT expires: - '-1' pragma: @@ -167,13 +164,13 @@ interactions: ParameterSetName: - -g --name -l --admin-user --admin-password --sku-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/417ccacd-faa1-4d1e-a02c-a2241c7b9b7d?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a318e269-7c22-4a1f-9931-55f4978edf08?api-version=2017-12-01 response: body: - string: '{"name":"417ccacd-faa1-4d1e-a02c-a2241c7b9b7d","status":"InProgress","startTime":"2019-06-28T21:43:57.737Z"}' + string: '{"name":"a318e269-7c22-4a1f-9931-55f4978edf08","status":"InProgress","startTime":"2020-03-03T02:29:09.977Z"}' headers: cache-control: - no-cache @@ -182,7 +179,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:45:59 GMT + - Tue, 03 Mar 2020 02:32:10 GMT expires: - '-1' pragma: @@ -214,13 +211,13 @@ interactions: ParameterSetName: - -g --name -l --admin-user --admin-password --sku-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/417ccacd-faa1-4d1e-a02c-a2241c7b9b7d?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a318e269-7c22-4a1f-9931-55f4978edf08?api-version=2017-12-01 response: body: - string: '{"name":"417ccacd-faa1-4d1e-a02c-a2241c7b9b7d","status":"Succeeded","startTime":"2019-06-28T21:43:57.737Z"}' + string: '{"name":"a318e269-7c22-4a1f-9931-55f4978edf08","status":"Succeeded","startTime":"2020-03-03T02:29:09.977Z"}' headers: cache-control: - no-cache @@ -229,7 +226,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:46:59 GMT + - Tue, 03 Mar 2020 02:33:10 GMT expires: - '-1' pragma: @@ -261,22 +258,22 @@ interactions: ParameterSetName: - -g --name -l --admin-user --admin-password --sku-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.postgres.database.azure.com","earliestRestoreDate":"2019-06-28T21:53:58.173+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.337+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '854' + - '991' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:47:01 GMT + - Tue, 03 Mar 2020 02:33:10 GMT expires: - '-1' pragma: @@ -308,24 +305,24 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.postgres.database.azure.com","earliestRestoreDate":"2019-06-28T21:53:58.173+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.337+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '854' + - '991' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:52:02 GMT + - Tue, 03 Mar 2020 02:38:12 GMT expires: - '-1' pragma: @@ -344,9 +341,9 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"sku": {"name": "B_Gen5_2"}, "properties": {"createMode": "Replica", - "sourceServerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002"}, - "location": "brazilsouth"}\''''' + body: 'b''{"sku": {"name": "B_Gen5_2"}, "properties": {"createMode": "Replica", + "sourceServerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003"}, + "location": "eastus"}''' headers: Accept: - application/json @@ -357,36 +354,36 @@ interactions: Connection: - keep-alive Content-Length: - - '338' + - '333' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000003?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000004?api-version=2017-12-01 response: body: - string: '{"operation":"CreateElasticServerContinuousCopy","startTime":"2019-06-28T21:52:07.327Z"}' + string: '{"operation":"CreateElasticServerContinuousCopy","startTime":"2020-03-03T02:38:13.5Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/58273faa-9744-4cc7-ad4c-280ffbb3d5c0?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fcba2400-59b3-4fc4-b860-f76abc2a05ad?api-version=2017-12-01 cache-control: - no-cache content-length: - - '88' + - '86' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:52:06 GMT + - Tue, 03 Mar 2020 02:38:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/58273faa-9744-4cc7-ad4c-280ffbb3d5c0?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/fcba2400-59b3-4fc4-b860-f76abc2a05ad?api-version=2017-12-01 pragma: - no-cache server: @@ -396,7 +393,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -414,22 +411,22 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/58273faa-9744-4cc7-ad4c-280ffbb3d5c0?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fcba2400-59b3-4fc4-b860-f76abc2a05ad?api-version=2017-12-01 response: body: - string: '{"name":"58273faa-9744-4cc7-ad4c-280ffbb3d5c0","status":"InProgress","startTime":"2019-06-28T21:52:07.327Z"}' + string: '{"name":"fcba2400-59b3-4fc4-b860-f76abc2a05ad","status":"InProgress","startTime":"2020-03-03T02:38:13.5Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:52:38 GMT + - Tue, 03 Mar 2020 02:38:44 GMT expires: - '-1' pragma: @@ -461,22 +458,22 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/58273faa-9744-4cc7-ad4c-280ffbb3d5c0?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fcba2400-59b3-4fc4-b860-f76abc2a05ad?api-version=2017-12-01 response: body: - string: '{"name":"58273faa-9744-4cc7-ad4c-280ffbb3d5c0","status":"InProgress","startTime":"2019-06-28T21:52:07.327Z"}' + string: '{"name":"fcba2400-59b3-4fc4-b860-f76abc2a05ad","status":"InProgress","startTime":"2020-03-03T02:38:13.5Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:53:09 GMT + - Tue, 03 Mar 2020 02:39:14 GMT expires: - '-1' pragma: @@ -508,22 +505,22 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/58273faa-9744-4cc7-ad4c-280ffbb3d5c0?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fcba2400-59b3-4fc4-b860-f76abc2a05ad?api-version=2017-12-01 response: body: - string: '{"name":"58273faa-9744-4cc7-ad4c-280ffbb3d5c0","status":"InProgress","startTime":"2019-06-28T21:52:07.327Z"}' + string: '{"name":"fcba2400-59b3-4fc4-b860-f76abc2a05ad","status":"InProgress","startTime":"2020-03-03T02:38:13.5Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:53:39 GMT + - Tue, 03 Mar 2020 02:39:43 GMT expires: - '-1' pragma: @@ -555,22 +552,22 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/58273faa-9744-4cc7-ad4c-280ffbb3d5c0?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fcba2400-59b3-4fc4-b860-f76abc2a05ad?api-version=2017-12-01 response: body: - string: '{"name":"58273faa-9744-4cc7-ad4c-280ffbb3d5c0","status":"InProgress","startTime":"2019-06-28T21:52:07.327Z"}' + string: '{"name":"fcba2400-59b3-4fc4-b860-f76abc2a05ad","status":"InProgress","startTime":"2020-03-03T02:38:13.5Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:54:10 GMT + - Tue, 03 Mar 2020 02:40:13 GMT expires: - '-1' pragma: @@ -602,22 +599,22 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/58273faa-9744-4cc7-ad4c-280ffbb3d5c0?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fcba2400-59b3-4fc4-b860-f76abc2a05ad?api-version=2017-12-01 response: body: - string: '{"name":"58273faa-9744-4cc7-ad4c-280ffbb3d5c0","status":"InProgress","startTime":"2019-06-28T21:52:07.327Z"}' + string: '{"name":"fcba2400-59b3-4fc4-b860-f76abc2a05ad","status":"InProgress","startTime":"2020-03-03T02:38:13.5Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:54:41 GMT + - Tue, 03 Mar 2020 02:40:44 GMT expires: - '-1' pragma: @@ -649,22 +646,22 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/58273faa-9744-4cc7-ad4c-280ffbb3d5c0?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fcba2400-59b3-4fc4-b860-f76abc2a05ad?api-version=2017-12-01 response: body: - string: '{"name":"58273faa-9744-4cc7-ad4c-280ffbb3d5c0","status":"InProgress","startTime":"2019-06-28T21:52:07.327Z"}' + string: '{"name":"fcba2400-59b3-4fc4-b860-f76abc2a05ad","status":"InProgress","startTime":"2020-03-03T02:38:13.5Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:55:12 GMT + - Tue, 03 Mar 2020 02:41:14 GMT expires: - '-1' pragma: @@ -696,22 +693,22 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/58273faa-9744-4cc7-ad4c-280ffbb3d5c0?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fcba2400-59b3-4fc4-b860-f76abc2a05ad?api-version=2017-12-01 response: body: - string: '{"name":"58273faa-9744-4cc7-ad4c-280ffbb3d5c0","status":"InProgress","startTime":"2019-06-28T21:52:07.327Z"}' + string: '{"name":"fcba2400-59b3-4fc4-b860-f76abc2a05ad","status":"InProgress","startTime":"2020-03-03T02:38:13.5Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:55:43 GMT + - Tue, 03 Mar 2020 02:41:44 GMT expires: - '-1' pragma: @@ -743,22 +740,22 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/58273faa-9744-4cc7-ad4c-280ffbb3d5c0?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fcba2400-59b3-4fc4-b860-f76abc2a05ad?api-version=2017-12-01 response: body: - string: '{"name":"58273faa-9744-4cc7-ad4c-280ffbb3d5c0","status":"InProgress","startTime":"2019-06-28T21:52:07.327Z"}' + string: '{"name":"fcba2400-59b3-4fc4-b860-f76abc2a05ad","status":"InProgress","startTime":"2020-03-03T02:38:13.5Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:56:14 GMT + - Tue, 03 Mar 2020 02:42:14 GMT expires: - '-1' pragma: @@ -790,22 +787,22 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/58273faa-9744-4cc7-ad4c-280ffbb3d5c0?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fcba2400-59b3-4fc4-b860-f76abc2a05ad?api-version=2017-12-01 response: body: - string: '{"name":"58273faa-9744-4cc7-ad4c-280ffbb3d5c0","status":"InProgress","startTime":"2019-06-28T21:52:07.327Z"}' + string: '{"name":"fcba2400-59b3-4fc4-b860-f76abc2a05ad","status":"InProgress","startTime":"2020-03-03T02:38:13.5Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:56:45 GMT + - Tue, 03 Mar 2020 02:42:45 GMT expires: - '-1' pragma: @@ -837,22 +834,22 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/58273faa-9744-4cc7-ad4c-280ffbb3d5c0?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fcba2400-59b3-4fc4-b860-f76abc2a05ad?api-version=2017-12-01 response: body: - string: '{"name":"58273faa-9744-4cc7-ad4c-280ffbb3d5c0","status":"InProgress","startTime":"2019-06-28T21:52:07.327Z"}' + string: '{"name":"fcba2400-59b3-4fc4-b860-f76abc2a05ad","status":"InProgress","startTime":"2020-03-03T02:38:13.5Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:57:15 GMT + - Tue, 03 Mar 2020 02:43:15 GMT expires: - '-1' pragma: @@ -884,22 +881,22 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/58273faa-9744-4cc7-ad4c-280ffbb3d5c0?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fcba2400-59b3-4fc4-b860-f76abc2a05ad?api-version=2017-12-01 response: body: - string: '{"name":"58273faa-9744-4cc7-ad4c-280ffbb3d5c0","status":"Succeeded","startTime":"2019-06-28T21:52:07.327Z"}' + string: '{"name":"fcba2400-59b3-4fc4-b860-f76abc2a05ad","status":"InProgress","startTime":"2020-03-03T02:38:13.5Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:57:46 GMT + - Tue, 03 Mar 2020 02:43:45 GMT expires: - '-1' pragma: @@ -931,22 +928,22 @@ interactions: ParameterSetName: - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000003?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fcba2400-59b3-4fc4-b860-f76abc2a05ad?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep1000003.postgres.database.azure.com","earliestRestoreDate":"2019-06-28T22:03:21.61+00:00","replicationRole":"Replica","masterServerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002","replicaCapacity":0},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000003","name":"azuredbclirep1000003","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"name":"fcba2400-59b3-4fc4-b860-f76abc2a05ad","status":"InProgress","startTime":"2020-03-03T02:38:13.5Z"}' headers: cache-control: - no-cache content-length: - - '1167' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:57:48 GMT + - Tue, 03 Mar 2020 02:44:16 GMT expires: - '-1' pragma: @@ -972,30 +969,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server show + - postgres server replica create Connection: - keep-alive ParameterSetName: - - -g --name + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fcba2400-59b3-4fc4-b860-f76abc2a05ad?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.postgres.database.azure.com","earliestRestoreDate":"2019-06-28T21:53:58.173+00:00","replicationRole":"Master","masterServerId":"","replicaCapacity":5},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"name":"fcba2400-59b3-4fc4-b860-f76abc2a05ad","status":"InProgress","startTime":"2020-03-03T02:38:13.5Z"}' headers: cache-control: - no-cache content-length: - - '856' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:57:49 GMT + - Tue, 03 Mar 2020 02:44:46 GMT expires: - '-1' pragma: @@ -1021,30 +1016,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server replica list + - postgres server replica create Connection: - keep-alive ParameterSetName: - - -g -s + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/Replicas?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fcba2400-59b3-4fc4-b860-f76abc2a05ad?api-version=2017-12-01 response: body: - string: '{"value":[{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep1000003.postgres.database.azure.com","earliestRestoreDate":"2019-06-28T22:03:21.61+00:00","replicationRole":"Replica","masterServerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002","replicaCapacity":0},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000003","name":"azuredbclirep1000003","type":"Microsoft.DBforPostgreSQL/servers"}]}' + string: '{"name":"fcba2400-59b3-4fc4-b860-f76abc2a05ad","status":"InProgress","startTime":"2020-03-03T02:38:13.5Z"}' headers: cache-control: - no-cache content-length: - - '1179' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:57:50 GMT + - Tue, 03 Mar 2020 02:45:16 GMT expires: - '-1' pragma: @@ -1070,51 +1063,45 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server delete + - postgres server replica create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g --name --yes + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000003?api-version=2017-12-01 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fcba2400-59b3-4fc4-b860-f76abc2a05ad?api-version=2017-12-01 response: body: - string: '{"operation":"DropElasticServer","startTime":"2019-06-28T21:57:51.8Z"}' + string: '{"name":"fcba2400-59b3-4fc4-b860-f76abc2a05ad","status":"InProgress","startTime":"2020-03-03T02:38:13.5Z"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/9901c3eb-4fbe-416c-ad71-3114e23956da?api-version=2017-12-01 cache-control: - no-cache content-length: - - '70' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:57:51 GMT + - Tue, 03 Mar 2020 02:45:46 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/9901c3eb-4fbe-416c-ad71-3114e23956da?api-version=2017-12-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1123,28 +1110,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server delete + - postgres server replica create Connection: - keep-alive ParameterSetName: - - -g --name --yes + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/9901c3eb-4fbe-416c-ad71-3114e23956da?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fcba2400-59b3-4fc4-b860-f76abc2a05ad?api-version=2017-12-01 response: body: - string: '{"name":"9901c3eb-4fbe-416c-ad71-3114e23956da","status":"Succeeded","startTime":"2019-06-28T21:57:51.8Z"}' + string: '{"name":"fcba2400-59b3-4fc4-b860-f76abc2a05ad","status":"InProgress","startTime":"2020-03-03T02:38:13.5Z"}' headers: cache-control: - no-cache content-length: - - '105' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 21:58:06 GMT + - Tue, 03 Mar 2020 02:46:16 GMT expires: - '-1' pragma: @@ -1170,30 +1157,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server show + - postgres server replica create Connection: - keep-alive ParameterSetName: - - -g --name + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fcba2400-59b3-4fc4-b860-f76abc2a05ad?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.postgres.database.azure.com","earliestRestoreDate":"2019-06-28T21:53:58.173+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"name":"fcba2400-59b3-4fc4-b860-f76abc2a05ad","status":"Succeeded","startTime":"2020-03-03T02:38:13.5Z"}' headers: cache-control: - no-cache content-length: - - '854' + - '105' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:03:08 GMT + - Tue, 03 Mar 2020 02:46:46 GMT expires: - '-1' pragma: @@ -1223,26 +1208,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --source-server + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000004?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.postgres.database.azure.com","earliestRestoreDate":"2019-06-28T21:53:58.173+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep1000004.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:50:16.203+00:00","replicationRole":"Replica","masterServerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","replicaCapacity":0,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000004","name":"azuredbclirep1000004","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '854' + - '1306' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:03:09 GMT + - Tue, 03 Mar 2020 02:46:47 GMT expires: - '-1' pragma: @@ -1261,62 +1244,54 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"sku": {"name": "B_Gen5_2"}, "properties": {"createMode": "Replica", - "sourceServerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002"}, - "location": "brazilsouth"}\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - postgres server replica create + - postgres server show Connection: - keep-alive - Content-Length: - - '338' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n --source-server + - -g --name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000004?api-version=2017-12-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"operation":"CreateElasticServerContinuousCopy","startTime":"2019-06-28T22:03:11.38Z"}' + string: '{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.337+00:00","replicationRole":"Master","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/11d0a294-37c3-4f23-8173-78ec3257eec9?api-version=2017-12-01 cache-control: - no-cache content-length: - - '87' + - '993' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:03:10 GMT + - Tue, 03 Mar 2020 02:46:48 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/11d0a294-37c3-4f23-8173-78ec3257eec9?api-version=2017-12-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1325,28 +1300,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server replica create + - postgres server replica list Connection: - keep-alive ParameterSetName: - - -g -n --source-server + - -g -s User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/11d0a294-37c3-4f23-8173-78ec3257eec9?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003/Replicas?api-version=2017-12-01 response: body: - string: '{"name":"11d0a294-37c3-4f23-8173-78ec3257eec9","status":"InProgress","startTime":"2019-06-28T22:03:11.38Z"}' + string: '{"value":[{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep1000004.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:50:16.203+00:00","replicationRole":"Replica","masterServerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","replicaCapacity":0,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000004","name":"azuredbclirep1000004","type":"Microsoft.DBforPostgreSQL/servers"}]}' headers: cache-control: - no-cache content-length: - - '107' + - '1318' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:03:42 GMT + - Tue, 03 Mar 2020 02:46:49 GMT expires: - '-1' pragma: @@ -1372,45 +1349,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server replica create + - postgres server delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -n --source-server + - -g --name --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/11d0a294-37c3-4f23-8173-78ec3257eec9?api-version=2017-12-01 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000004?api-version=2017-12-01 response: body: - string: '{"name":"11d0a294-37c3-4f23-8173-78ec3257eec9","status":"InProgress","startTime":"2019-06-28T22:03:11.38Z"}' + string: '{"operation":"DropElasticServer","startTime":"2020-03-03T02:46:50.25Z"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a460afe1-cda6-4ef9-845e-130f45d4bc35?api-version=2017-12-01 cache-control: - no-cache content-length: - - '107' + - '71' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:04:13 GMT + - Tue, 03 Mar 2020 02:46:50 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/a460afe1-cda6-4ef9-845e-130f45d4bc35?api-version=2017-12-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1419,28 +1402,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server replica create + - postgres server delete Connection: - keep-alive ParameterSetName: - - -g -n --source-server + - -g --name --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/11d0a294-37c3-4f23-8173-78ec3257eec9?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a460afe1-cda6-4ef9-845e-130f45d4bc35?api-version=2017-12-01 response: body: - string: '{"name":"11d0a294-37c3-4f23-8173-78ec3257eec9","status":"InProgress","startTime":"2019-06-28T22:03:11.38Z"}' + string: '{"name":"a460afe1-cda6-4ef9-845e-130f45d4bc35","status":"Succeeded","startTime":"2020-03-03T02:46:50.25Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:04:43 GMT + - Tue, 03 Mar 2020 02:47:05 GMT expires: - '-1' pragma: @@ -1466,28 +1449,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server replica create + - postgres server show Connection: - keep-alive ParameterSetName: - - -g -n --source-server + - -g --name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/11d0a294-37c3-4f23-8173-78ec3257eec9?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"name":"11d0a294-37c3-4f23-8173-78ec3257eec9","status":"InProgress","startTime":"2019-06-28T22:03:11.38Z"}' + string: '{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.337+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '107' + - '991' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:05:14 GMT + - Tue, 03 Mar 2020 02:52:06 GMT expires: - '-1' pragma: @@ -1519,22 +1504,24 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/11d0a294-37c3-4f23-8173-78ec3257eec9?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"name":"11d0a294-37c3-4f23-8173-78ec3257eec9","status":"InProgress","startTime":"2019-06-28T22:03:11.38Z"}' + string: '{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:39:10.337+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '107' + - '991' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:05:46 GMT + - Tue, 03 Mar 2020 02:52:06 GMT expires: - '-1' pragma: @@ -1553,7 +1540,9 @@ interactions: code: 200 message: OK - request: - body: null + body: 'b''{"sku": {"name": "B_Gen5_2"}, "properties": {"createMode": "Replica", + "sourceServerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003"}, + "location": "eastus"}''' headers: Accept: - application/json @@ -1563,42 +1552,50 @@ interactions: - postgres server replica create Connection: - keep-alive + Content-Length: + - '333' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/11d0a294-37c3-4f23-8173-78ec3257eec9?api-version=2017-12-01 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000005?api-version=2017-12-01 response: body: - string: '{"name":"11d0a294-37c3-4f23-8173-78ec3257eec9","status":"InProgress","startTime":"2019-06-28T22:03:11.38Z"}' + string: '{"operation":"CreateElasticServerContinuousCopy","startTime":"2020-03-03T02:52:20.353Z"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3cca02e4-8e76-4fa4-a012-2fa2600bd258?api-version=2017-12-01 cache-control: - no-cache content-length: - - '107' + - '88' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:06:16 GMT + - Tue, 03 Mar 2020 02:52:19 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/3cca02e4-8e76-4fa4-a012-2fa2600bd258?api-version=2017-12-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1613,22 +1610,22 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/11d0a294-37c3-4f23-8173-78ec3257eec9?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3cca02e4-8e76-4fa4-a012-2fa2600bd258?api-version=2017-12-01 response: body: - string: '{"name":"11d0a294-37c3-4f23-8173-78ec3257eec9","status":"InProgress","startTime":"2019-06-28T22:03:11.38Z"}' + string: '{"name":"3cca02e4-8e76-4fa4-a012-2fa2600bd258","status":"InProgress","startTime":"2020-03-03T02:52:20.353Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:06:47 GMT + - Tue, 03 Mar 2020 02:52:50 GMT expires: - '-1' pragma: @@ -1660,22 +1657,22 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/11d0a294-37c3-4f23-8173-78ec3257eec9?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3cca02e4-8e76-4fa4-a012-2fa2600bd258?api-version=2017-12-01 response: body: - string: '{"name":"11d0a294-37c3-4f23-8173-78ec3257eec9","status":"InProgress","startTime":"2019-06-28T22:03:11.38Z"}' + string: '{"name":"3cca02e4-8e76-4fa4-a012-2fa2600bd258","status":"InProgress","startTime":"2020-03-03T02:52:20.353Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:07:17 GMT + - Tue, 03 Mar 2020 02:53:20 GMT expires: - '-1' pragma: @@ -1707,22 +1704,22 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/11d0a294-37c3-4f23-8173-78ec3257eec9?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3cca02e4-8e76-4fa4-a012-2fa2600bd258?api-version=2017-12-01 response: body: - string: '{"name":"11d0a294-37c3-4f23-8173-78ec3257eec9","status":"InProgress","startTime":"2019-06-28T22:03:11.38Z"}' + string: '{"name":"3cca02e4-8e76-4fa4-a012-2fa2600bd258","status":"InProgress","startTime":"2020-03-03T02:52:20.353Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:07:49 GMT + - Tue, 03 Mar 2020 02:53:51 GMT expires: - '-1' pragma: @@ -1754,22 +1751,22 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/11d0a294-37c3-4f23-8173-78ec3257eec9?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3cca02e4-8e76-4fa4-a012-2fa2600bd258?api-version=2017-12-01 response: body: - string: '{"name":"11d0a294-37c3-4f23-8173-78ec3257eec9","status":"Succeeded","startTime":"2019-06-28T22:03:11.38Z"}' + string: '{"name":"3cca02e4-8e76-4fa4-a012-2fa2600bd258","status":"InProgress","startTime":"2020-03-03T02:52:20.353Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:08:20 GMT + - Tue, 03 Mar 2020 02:54:21 GMT expires: - '-1' pragma: @@ -1801,22 +1798,22 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000004?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3cca02e4-8e76-4fa4-a012-2fa2600bd258?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep2000004.postgres.database.azure.com","earliestRestoreDate":"2019-06-28T22:14:24.6+00:00","replicationRole":"Replica","masterServerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002","replicaCapacity":0},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000004","name":"azuredbclirep2000004","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"name":"3cca02e4-8e76-4fa4-a012-2fa2600bd258","status":"InProgress","startTime":"2020-03-03T02:52:20.353Z"}' headers: cache-control: - no-cache content-length: - - '1166' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:08:21 GMT + - Tue, 03 Mar 2020 02:54:50 GMT expires: - '-1' pragma: @@ -1842,51 +1839,45 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server delete + - postgres server replica create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g --name --yes + - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002?api-version=2017-12-01 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3cca02e4-8e76-4fa4-a012-2fa2600bd258?api-version=2017-12-01 response: body: - string: '{"operation":"DropElasticServer","startTime":"2019-06-28T22:08:22.847Z"}' + string: '{"name":"3cca02e4-8e76-4fa4-a012-2fa2600bd258","status":"InProgress","startTime":"2020-03-03T02:52:20.353Z"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/f1a5e112-872f-484e-97d3-6a51f04cef2c?api-version=2017-12-01 cache-control: - no-cache content-length: - - '72' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:08:22 GMT + - Tue, 03 Mar 2020 02:55:22 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/f1a5e112-872f-484e-97d3-6a51f04cef2c?api-version=2017-12-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1895,28 +1886,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server delete + - postgres server replica create Connection: - keep-alive ParameterSetName: - - -g --name --yes + - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/f1a5e112-872f-484e-97d3-6a51f04cef2c?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3cca02e4-8e76-4fa4-a012-2fa2600bd258?api-version=2017-12-01 response: body: - string: '{"name":"f1a5e112-872f-484e-97d3-6a51f04cef2c","status":"Succeeded","startTime":"2019-06-28T22:08:22.847Z"}' + string: '{"name":"3cca02e4-8e76-4fa4-a012-2fa2600bd258","status":"InProgress","startTime":"2020-03-03T02:52:20.353Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:08:38 GMT + - Tue, 03 Mar 2020 02:55:51 GMT expires: - '-1' pragma: @@ -1942,30 +1933,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server show + - postgres server replica create Connection: - keep-alive ParameterSetName: - - -g --name + - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000004?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3cca02e4-8e76-4fa4-a012-2fa2600bd258?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep2000004.postgres.database.azure.com","earliestRestoreDate":"2019-06-28T22:14:24.6+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000004","name":"azuredbclirep2000004","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"name":"3cca02e4-8e76-4fa4-a012-2fa2600bd258","status":"InProgress","startTime":"2020-03-03T02:52:20.353Z"}' headers: cache-control: - no-cache content-length: - - '944' + - '108' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:13:39 GMT + - Tue, 03 Mar 2020 02:56:21 GMT expires: - '-1' pragma: @@ -1991,41 +1980,421 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server delete + - postgres server replica create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g --name --yes + - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000003?api-version=2017-12-01 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3cca02e4-8e76-4fa4-a012-2fa2600bd258?api-version=2017-12-01 response: body: - string: '' + string: '{"name":"3cca02e4-8e76-4fa4-a012-2fa2600bd258","status":"InProgress","startTime":"2020-03-03T02:52:20.353Z"}' headers: cache-control: - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:13:40 GMT + - Tue, 03 Mar 2020 02:56:51 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' status: - code: 204 - message: No Content + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - postgres server replica create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source-server + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3cca02e4-8e76-4fa4-a012-2fa2600bd258?api-version=2017-12-01 + response: + body: + string: '{"name":"3cca02e4-8e76-4fa4-a012-2fa2600bd258","status":"InProgress","startTime":"2020-03-03T02:52:20.353Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Mar 2020 02:57:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - postgres server replica create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source-server + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3cca02e4-8e76-4fa4-a012-2fa2600bd258?api-version=2017-12-01 + response: + body: + string: '{"name":"3cca02e4-8e76-4fa4-a012-2fa2600bd258","status":"InProgress","startTime":"2020-03-03T02:52:20.353Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Mar 2020 02:57: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: + - postgres server replica create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source-server + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3cca02e4-8e76-4fa4-a012-2fa2600bd258?api-version=2017-12-01 + response: + body: + string: '{"name":"3cca02e4-8e76-4fa4-a012-2fa2600bd258","status":"InProgress","startTime":"2020-03-03T02:52:20.353Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Mar 2020 02:58:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - postgres server replica create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source-server + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3cca02e4-8e76-4fa4-a012-2fa2600bd258?api-version=2017-12-01 + response: + body: + string: '{"name":"3cca02e4-8e76-4fa4-a012-2fa2600bd258","status":"InProgress","startTime":"2020-03-03T02:52:20.353Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Mar 2020 02:58: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: + - postgres server replica create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source-server + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3cca02e4-8e76-4fa4-a012-2fa2600bd258?api-version=2017-12-01 + response: + body: + string: '{"name":"3cca02e4-8e76-4fa4-a012-2fa2600bd258","status":"InProgress","startTime":"2020-03-03T02:52:20.353Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Mar 2020 02:59:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - postgres server replica create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source-server + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3cca02e4-8e76-4fa4-a012-2fa2600bd258?api-version=2017-12-01 + response: + body: + string: '{"name":"3cca02e4-8e76-4fa4-a012-2fa2600bd258","status":"InProgress","startTime":"2020-03-03T02:52:20.353Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Mar 2020 02:59:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - postgres server replica create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source-server + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3cca02e4-8e76-4fa4-a012-2fa2600bd258?api-version=2017-12-01 + response: + body: + string: '{"name":"3cca02e4-8e76-4fa4-a012-2fa2600bd258","status":"Succeeded","startTime":"2020-03-03T02:52:20.353Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Mar 2020 03:00:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - postgres server replica create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source-server + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000005?api-version=2017-12-01 + response: + body: + string: '{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep2000005.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T03:04:22.727+00:00","replicationRole":"Replica","masterServerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","replicaCapacity":0,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000005","name":"azuredbclirep2000005","type":"Microsoft.DBforPostgreSQL/servers"}' + headers: + cache-control: + - no-cache + content-length: + - '1306' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Mar 2020 03:00:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: @@ -2042,30 +2411,30 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000004?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"operation":"DropElasticServer","startTime":"2019-06-28T22:13:42.12Z"}' + string: '{"operation":"DropElasticServer","startTime":"2020-03-03T03:00:25.427Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/85176ffb-26af-4283-9e33-6c0ec0390e72?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/8d8aad8e-4aad-4226-a441-cc6cc7578807?api-version=2017-12-01 cache-control: - no-cache content-length: - - '71' + - '72' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:13:42 GMT + - Tue, 03 Mar 2020 03:00:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/85176ffb-26af-4283-9e33-6c0ec0390e72?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/8d8aad8e-4aad-4226-a441-cc6cc7578807?api-version=2017-12-01 pragma: - no-cache server: @@ -2075,7 +2444,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' status: code: 202 message: Accepted @@ -2093,22 +2462,71 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/85176ffb-26af-4283-9e33-6c0ec0390e72?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/8d8aad8e-4aad-4226-a441-cc6cc7578807?api-version=2017-12-01 response: body: - string: '{"name":"85176ffb-26af-4283-9e33-6c0ec0390e72","status":"Succeeded","startTime":"2019-06-28T22:13:42.12Z"}' + string: '{"name":"8d8aad8e-4aad-4226-a441-cc6cc7578807","status":"Succeeded","startTime":"2020-03-03T03:00:25.427Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Mar 2020 03:00:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - postgres server show + Connection: + - keep-alive + ParameterSetName: + - -g --name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000005?api-version=2017-12-01 + response: + body: + string: '{"sku":{"name":"B_Gen5_2","tier":"Basic","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep2000005.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T03:04:22.727+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000005","name":"azuredbclirep2000005","type":"Microsoft.DBforPostgreSQL/servers"}' + headers: + cache-control: + - no-cache + content-length: + - '1084' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:13:57 GMT + - Tue, 03 Mar 2020 03:05:42 GMT expires: - '-1' pragma: @@ -2134,36 +2552,85 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - group delete + - postgres server delete Connection: - keep-alive Content-Length: - '0' ParameterSetName: - - --name --yes --no-wait + - -g --name --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000004?api-version=2017-12-01 response: body: string: '' headers: cache-control: - no-cache - content-length: + date: + - Tue, 03 Mar 2020 03:05:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - postgres server delete + Connection: + - keep-alive + Content-Length: - '0' + ParameterSetName: + - -g --name --yes + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000005?api-version=2017-12-01 + response: + body: + string: '{"operation":"DropElasticServer","startTime":"2020-03-03T03:05:43.407Z"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/927ad0de-3c22-47e9-8e1f-5d12af327265?api-version=2017-12-01 + cache-control: + - no-cache + content-length: + - '72' + content-type: + - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:13:59 GMT + - Tue, 03 Mar 2020 03:05:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkczV0pWR1JBT1JZTzVEUlNSS0Q2Vko0S0RCWU9QRzQzS01IQXxCNDkwQTVCMUVEMTI0NDE4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/927ad0de-3c22-47e9-8e1f-5d12af327265?api-version=2017-12-01 pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -2173,4 +2640,51 @@ interactions: status: code: 202 message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - postgres server delete + Connection: + - keep-alive + ParameterSetName: + - -g --name --yes + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/927ad0de-3c22-47e9-8e1f-5d12af327265?api-version=2017-12-01 + response: + body: + string: '{"name":"927ad0de-3c22-47e9-8e1f-5d12af327265","status":"Succeeded","startTime":"2020-03-03T03:05:43.407Z"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 03 Mar 2020 03:05:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_postgrsql_general_purpose_replica_mgmt.yaml b/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_postgrsql_general_purpose_replica_mgmt.yaml index e7a7fa97c2c..9744ad86b76 100644 --- a/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_postgrsql_general_purpose_replica_mgmt.yaml +++ b/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/recordings/test_postgrsql_general_purpose_replica_mgmt.yaml @@ -1,58 +1,63 @@ interactions: - request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-06-28T22:14:00Z"}}' + body: '{"sku": {"name": "GP_Gen5_2"}, "properties": {"storageProfile": {"storageAutogrow": + "Enabled"}, "createMode": "Default", "administratorLogin": "cloudsa", "administratorLoginPassword": + "SecretPassword123"}, "location": "eastus"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - group create + - postgres server create Connection: - keep-alive Content-Length: - - '110' + - '227' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - --location --name --tag + - -g --name -l --admin-user --admin-password --sku-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-28T22:14:00Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"operation":"UpsertElasticServer","startTime":"2020-03-03T02:46:42.75Z"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c6343ab6-4bbc-43b1-9cb3-85db69f8eaf8?api-version=2017-12-01 cache-control: - no-cache content-length: - - '384' + - '73' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:14:02 GMT + - Tue, 03 Mar 2020 02:46:41 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/c6343ab6-4bbc-43b1-9cb3-85db69f8eaf8?api-version=2017-12-01 pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: - code: 201 - message: Created + code: 202 + message: Accepted - request: - body: '{"sku": {"name": "GP_Gen5_2"}, "properties": {"storageProfile": {}, "createMode": - "Default", "administratorLogin": "cloudsa", "administratorLoginPassword": "SecretPassword123"}, - "location": "brazilsouth"}' + body: null headers: Accept: - application/json @@ -62,50 +67,42 @@ interactions: - postgres server create Connection: - keep-alive - Content-Length: - - '204' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g --name -l --admin-user --admin-password --sku-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002?api-version=2017-12-01 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c6343ab6-4bbc-43b1-9cb3-85db69f8eaf8?api-version=2017-12-01 response: body: - string: '{"operation":"UpsertElasticServer","startTime":"2019-06-28T22:14:04.917Z"}' + string: '{"name":"c6343ab6-4bbc-43b1-9cb3-85db69f8eaf8","status":"InProgress","startTime":"2020-03-03T02:46:42.75Z"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/2558a42e-eab2-4c39-8301-694ebe4bea6f?api-version=2017-12-01 cache-control: - no-cache content-length: - - '74' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:14:04 GMT + - Tue, 03 Mar 2020 02:47:42 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/2558a42e-eab2-4c39-8301-694ebe4bea6f?api-version=2017-12-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -120,22 +117,22 @@ interactions: ParameterSetName: - -g --name -l --admin-user --admin-password --sku-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/2558a42e-eab2-4c39-8301-694ebe4bea6f?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c6343ab6-4bbc-43b1-9cb3-85db69f8eaf8?api-version=2017-12-01 response: body: - string: '{"name":"2558a42e-eab2-4c39-8301-694ebe4bea6f","status":"Succeeded","startTime":"2019-06-28T22:14:04.917Z"}' + string: '{"name":"c6343ab6-4bbc-43b1-9cb3-85db69f8eaf8","status":"Succeeded","startTime":"2020-03-03T02:46:42.75Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:15:05 GMT + - Tue, 03 Mar 2020 02:48:43 GMT expires: - '-1' pragma: @@ -167,22 +164,22 @@ interactions: ParameterSetName: - -g --name -l --admin-user --admin-password --sku-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.postgres.database.azure.com","earliestRestoreDate":"2019-06-28T22:24:05.323+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:56:43.047+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '864' + - '1001' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:15:06 GMT + - Tue, 03 Mar 2020 02:48:43 GMT expires: - '-1' pragma: @@ -218,18 +215,18 @@ interactions: ParameterSetName: - -g -s -n --value User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/azure.replication_support?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003/configurations/azure.replication_support?api-version=2017-12-01 response: body: - string: '{"operation":"UpdateElasticServerConfig","startTime":"2019-06-28T22:20:09.73Z"}' + string: '{"operation":"UpdateElasticServerConfig","startTime":"2020-03-03T02:53:45.85Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/af8b9cc6-2620-4cba-ba31-d8c3b8471128?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/1491dac1-1905-4e76-8fda-4a544afd941c?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -237,11 +234,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:20:08 GMT + - Tue, 03 Mar 2020 02:53:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/af8b9cc6-2620-4cba-ba31-d8c3b8471128?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/1491dac1-1905-4e76-8fda-4a544afd941c?api-version=2017-12-01 pragma: - no-cache server: @@ -269,13 +266,13 @@ interactions: ParameterSetName: - -g -s -n --value User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/af8b9cc6-2620-4cba-ba31-d8c3b8471128?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/1491dac1-1905-4e76-8fda-4a544afd941c?api-version=2017-12-01 response: body: - string: '{"name":"af8b9cc6-2620-4cba-ba31-d8c3b8471128","status":"Succeeded","startTime":"2019-06-28T22:20:09.73Z"}' + string: '{"name":"1491dac1-1905-4e76-8fda-4a544afd941c","status":"Succeeded","startTime":"2020-03-03T02:53:45.85Z"}' headers: cache-control: - no-cache @@ -284,7 +281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:20:25 GMT + - Tue, 03 Mar 2020 02:54:00 GMT expires: - '-1' pragma: @@ -316,24 +313,24 @@ interactions: ParameterSetName: - -g -s -n --value User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/azure.replication_support?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003/configurations/azure.replication_support?api-version=2017-12-01 response: body: string: '{"properties":{"value":"REPLICA","description":"Sets the level of replication support (Read Replicas). Any change requires restarting the server to take - effect. This setting should not be changed for Basic servers.","defaultValue":"OFF","dataType":"Enumeration","allowedValues":"OFF,REPLICA","source":"user-override","isConfigPendingRestart":"False","isDynamicConfig":"False"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/azure.replication_support","name":"azure.replication_support","type":"Microsoft.DBforPostgreSQL/servers/configurations"}' + effect. This setting should not be changed for Basic servers.","defaultValue":"OFF","dataType":"Enumeration","allowedValues":"OFF,REPLICA,LOGICAL","source":"user-override","isConfigPendingRestart":"False","isDynamicConfig":"False"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003/configurations/azure.replication_support","name":"azure.replication_support","type":"Microsoft.DBforPostgreSQL/servers/configurations"}' headers: cache-control: - no-cache content-length: - - '738' + - '746' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:20:25 GMT + - Tue, 03 Mar 2020 02:54:01 GMT expires: - '-1' pragma: @@ -367,18 +364,18 @@ interactions: ParameterSetName: - -g --name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/restart?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003/restart?api-version=2017-12-01 response: body: - string: '{"operation":"RestartElasticServer","startTime":"2019-06-28T22:20:28.05Z"}' + string: '{"operation":"RestartElasticServer","startTime":"2020-03-03T02:54:03.24Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6784af91-f56e-4c91-8649-20eab17d1e9a?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fead4dfc-1d3e-418d-ac5a-e7b8dd2ca90f?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -386,258 +383,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:20:27 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/6784af91-f56e-4c91-8649-20eab17d1e9a?api-version=2017-12-01 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres server restart - Connection: - - keep-alive - ParameterSetName: - - -g --name - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6784af91-f56e-4c91-8649-20eab17d1e9a?api-version=2017-12-01 - response: - body: - string: '{"name":"6784af91-f56e-4c91-8649-20eab17d1e9a","status":"InProgress","startTime":"2019-06-28T22:20:28.05Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:20: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: - - postgres server restart - Connection: - - keep-alive - ParameterSetName: - - -g --name - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6784af91-f56e-4c91-8649-20eab17d1e9a?api-version=2017-12-01 - response: - body: - string: '{"name":"6784af91-f56e-4c91-8649-20eab17d1e9a","status":"InProgress","startTime":"2019-06-28T22:20:28.05Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:20: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: - - postgres server restart - Connection: - - keep-alive - ParameterSetName: - - -g --name - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6784af91-f56e-4c91-8649-20eab17d1e9a?api-version=2017-12-01 - response: - body: - string: '{"name":"6784af91-f56e-4c91-8649-20eab17d1e9a","status":"Succeeded","startTime":"2019-06-28T22:20:28.05Z"}' - headers: - cache-control: - - no-cache - content-length: - - '106' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:21: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: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002?api-version=2017-12-01 - response: - body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.postgres.database.azure.com","earliestRestoreDate":"2019-06-28T22:24:05.323+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforPostgreSQL/servers"}' - headers: - cache-control: - - no-cache - content-length: - - '864' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:23:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: 'b''b\''{"sku": {"name": "GP_Gen5_4"}, "properties": {"createMode": "Replica", - "sourceServerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002"}, - "location": "brazilsouth"}\''''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres server replica create - Connection: - - keep-alive - Content-Length: - - '339' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000003?api-version=2017-12-01 - response: - body: - string: '{"operation":"CreateElasticServerContinuousCopy","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - cache-control: - - no-cache - content-length: - - '87' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:23:18 GMT + - Tue, 03 Mar 2020 02:54:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/fead4dfc-1d3e-418d-ac5a-e7b8dd2ca90f?api-version=2017-12-01 pragma: - no-cache server: @@ -650,1182 +400,7 @@ interactions: - '1199' status: code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:23:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:24: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: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:24:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:25:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:25: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: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:26: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: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:26: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: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:27: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: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:27: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: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:28: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: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:28: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: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:29: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: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:30:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:30: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: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:31: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: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:31: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: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:32: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: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:32: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: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:33: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: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:33:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:34: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: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:34:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:35: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: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:35:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres server replica create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku-name --source-server - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 - response: - body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 28 Jun 2019 22:36: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 + message: Accepted - request: body: null headers: @@ -1834,19 +409,19 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server replica create + - postgres server restart Connection: - keep-alive ParameterSetName: - - -g -n -l --sku-name --source-server + - -g --name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fead4dfc-1d3e-418d-ac5a-e7b8dd2ca90f?api-version=2017-12-01 response: body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' + string: '{"name":"fead4dfc-1d3e-418d-ac5a-e7b8dd2ca90f","status":"InProgress","startTime":"2020-03-03T02:54:03.24Z"}' headers: cache-control: - no-cache @@ -1855,7 +430,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:36:42 GMT + - Tue, 03 Mar 2020 02:54:18 GMT expires: - '-1' pragma: @@ -1881,19 +456,19 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server replica create + - postgres server restart Connection: - keep-alive ParameterSetName: - - -g -n -l --sku-name --source-server + - -g --name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fead4dfc-1d3e-418d-ac5a-e7b8dd2ca90f?api-version=2017-12-01 response: body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' + string: '{"name":"fead4dfc-1d3e-418d-ac5a-e7b8dd2ca90f","status":"InProgress","startTime":"2020-03-03T02:54:03.24Z"}' headers: cache-control: - no-cache @@ -1902,7 +477,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:37:13 GMT + - Tue, 03 Mar 2020 02:54:33 GMT expires: - '-1' pragma: @@ -1928,19 +503,19 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server replica create + - postgres server restart Connection: - keep-alive ParameterSetName: - - -g -n -l --sku-name --source-server + - -g --name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fead4dfc-1d3e-418d-ac5a-e7b8dd2ca90f?api-version=2017-12-01 response: body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' + string: '{"name":"fead4dfc-1d3e-418d-ac5a-e7b8dd2ca90f","status":"InProgress","startTime":"2020-03-03T02:54:03.24Z"}' headers: cache-control: - no-cache @@ -1949,7 +524,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:37:44 GMT + - Tue, 03 Mar 2020 02:54:48 GMT expires: - '-1' pragma: @@ -1975,19 +550,19 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server replica create + - postgres server restart Connection: - keep-alive ParameterSetName: - - -g -n -l --sku-name --source-server + - -g --name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fead4dfc-1d3e-418d-ac5a-e7b8dd2ca90f?api-version=2017-12-01 response: body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' + string: '{"name":"fead4dfc-1d3e-418d-ac5a-e7b8dd2ca90f","status":"InProgress","startTime":"2020-03-03T02:54:03.24Z"}' headers: cache-control: - no-cache @@ -1996,7 +571,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:38:15 GMT + - Tue, 03 Mar 2020 02:55:03 GMT expires: - '-1' pragma: @@ -2022,19 +597,19 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server replica create + - postgres server restart Connection: - keep-alive ParameterSetName: - - -g -n -l --sku-name --source-server + - -g --name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fead4dfc-1d3e-418d-ac5a-e7b8dd2ca90f?api-version=2017-12-01 response: body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"InProgress","startTime":"2019-06-28T22:23:18.33Z"}' + string: '{"name":"fead4dfc-1d3e-418d-ac5a-e7b8dd2ca90f","status":"InProgress","startTime":"2020-03-03T02:54:03.24Z"}' headers: cache-control: - no-cache @@ -2043,7 +618,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:38:45 GMT + - Tue, 03 Mar 2020 02:55:18 GMT expires: - '-1' pragma: @@ -2069,28 +644,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server replica create + - postgres server restart Connection: - keep-alive ParameterSetName: - - -g -n -l --sku-name --source-server + - -g --name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17cd2271-5f0c-4a0c-b56d-53b9d72906b5?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fead4dfc-1d3e-418d-ac5a-e7b8dd2ca90f?api-version=2017-12-01 response: body: - string: '{"name":"17cd2271-5f0c-4a0c-b56d-53b9d72906b5","status":"Succeeded","startTime":"2019-06-28T22:23:18.33Z"}' + string: '{"name":"fead4dfc-1d3e-418d-ac5a-e7b8dd2ca90f","status":"InProgress","startTime":"2020-03-03T02:54:03.24Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:39:16 GMT + - Tue, 03 Mar 2020 02:55:34 GMT expires: - '-1' pragma: @@ -2116,28 +691,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server replica create + - postgres server restart Connection: - keep-alive ParameterSetName: - - -g -n -l --sku-name --source-server + - -g --name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000003?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fead4dfc-1d3e-418d-ac5a-e7b8dd2ca90f?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep1000003.postgres.database.azure.com","earliestRestoreDate":"2019-06-28T22:35:20.583+00:00","replicationRole":"Replica","masterServerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002","replicaCapacity":0},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000003","name":"azuredbclirep1000003","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"name":"fead4dfc-1d3e-418d-ac5a-e7b8dd2ca90f","status":"InProgress","startTime":"2020-03-03T02:54:03.24Z"}' headers: cache-control: - no-cache content-length: - - '1178' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:39:17 GMT + - Tue, 03 Mar 2020 02:55:49 GMT expires: - '-1' pragma: @@ -2163,30 +738,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server show + - postgres server restart Connection: - keep-alive ParameterSetName: - -g --name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fead4dfc-1d3e-418d-ac5a-e7b8dd2ca90f?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.postgres.database.azure.com","earliestRestoreDate":"2019-06-28T22:24:05.323+00:00","replicationRole":"Master","masterServerId":"","replicaCapacity":5},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"name":"fead4dfc-1d3e-418d-ac5a-e7b8dd2ca90f","status":"Succeeded","startTime":"2020-03-03T02:54:03.24Z"}' headers: cache-control: - no-cache content-length: - - '866' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:39:19 GMT + - Tue, 03 Mar 2020 02:56:04 GMT expires: - '-1' pragma: @@ -2212,30 +785,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server replica list + - postgres server replica create Connection: - keep-alive ParameterSetName: - - -g -s + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/Replicas?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"value":[{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep1000003.postgres.database.azure.com","earliestRestoreDate":"2019-06-28T22:35:20.583+00:00","replicationRole":"Replica","masterServerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002","replicaCapacity":0},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000003","name":"azuredbclirep1000003","type":"Microsoft.DBforPostgreSQL/servers"}]}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:56:43.047+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '1190' + - '1001' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:39:21 GMT + - Tue, 03 Mar 2020 02:58:06 GMT expires: - '-1' pragma: @@ -2254,45 +827,49 @@ interactions: code: 200 message: OK - request: - body: null + body: 'b''{"sku": {"name": "GP_Gen5_4"}, "properties": {"createMode": "Replica", + "sourceServerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003"}, + "location": "eastus"}''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - postgres server delete + - postgres server replica create Connection: - keep-alive Content-Length: - - '0' + - '334' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g --name --yes + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000003?api-version=2017-12-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000004?api-version=2017-12-01 response: body: - string: '{"operation":"DropElasticServer","startTime":"2019-06-28T22:39:22.367Z"}' + string: '{"operation":"CreateElasticServerContinuousCopy","startTime":"2020-03-03T02:58:06.57Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17a22720-244e-4ae9-9e6c-ded7a5775315?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3642967c-c9b0-480e-b854-c145a170e044?api-version=2017-12-01 cache-control: - no-cache content-length: - - '72' + - '87' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:39:22 GMT + - Tue, 03 Mar 2020 02:58:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/17a22720-244e-4ae9-9e6c-ded7a5775315?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/3642967c-c9b0-480e-b854-c145a170e044?api-version=2017-12-01 pragma: - no-cache server: @@ -2301,8 +878,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 202 message: Accepted @@ -2314,19 +891,19 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server delete + - postgres server replica create Connection: - keep-alive ParameterSetName: - - -g --name --yes + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/17a22720-244e-4ae9-9e6c-ded7a5775315?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3642967c-c9b0-480e-b854-c145a170e044?api-version=2017-12-01 response: body: - string: '{"name":"17a22720-244e-4ae9-9e6c-ded7a5775315","status":"Succeeded","startTime":"2019-06-28T22:39:22.367Z"}' + string: '{"name":"3642967c-c9b0-480e-b854-c145a170e044","status":"InProgress","startTime":"2020-03-03T02:58:06.57Z"}' headers: cache-control: - no-cache @@ -2335,7 +912,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:39:37 GMT + - Tue, 03 Mar 2020 02:58:37 GMT expires: - '-1' pragma: @@ -2361,30 +938,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server show + - postgres server replica create Connection: - keep-alive ParameterSetName: - - -g --name + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3642967c-c9b0-480e-b854-c145a170e044?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.postgres.database.azure.com","earliestRestoreDate":"2019-06-28T22:24:05.323+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"name":"3642967c-c9b0-480e-b854-c145a170e044","status":"InProgress","startTime":"2020-03-03T02:58:06.57Z"}' headers: cache-control: - no-cache content-length: - - '864' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:44:38 GMT + - Tue, 03 Mar 2020 02:59:06 GMT expires: - '-1' pragma: @@ -2414,26 +989,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --source-server + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3642967c-c9b0-480e-b854-c145a170e044?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.postgres.database.azure.com","earliestRestoreDate":"2019-06-28T22:24:05.323+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"name":"3642967c-c9b0-480e-b854-c145a170e044","status":"InProgress","startTime":"2020-03-03T02:58:06.57Z"}' headers: cache-control: - no-cache content-length: - - '864' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:44:40 GMT + - Tue, 03 Mar 2020 02:59:36 GMT expires: - '-1' pragma: @@ -2452,9 +1025,7 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"sku": {"name": "GP_Gen5_2"}, "properties": {"createMode": "Replica", - "sourceServerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002"}, - "location": "brazilsouth"}\''''' + body: null headers: Accept: - application/json @@ -2464,50 +1035,42 @@ interactions: - postgres server replica create Connection: - keep-alive - Content-Length: - - '339' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n --source-server + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000004?api-version=2017-12-01 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3642967c-c9b0-480e-b854-c145a170e044?api-version=2017-12-01 response: body: - string: '{"operation":"CreateElasticServerContinuousCopy","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"name":"3642967c-c9b0-480e-b854-c145a170e044","status":"InProgress","startTime":"2020-03-03T02:58:06.57Z"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 cache-control: - no-cache content-length: - - '88' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:44:41 GMT + - Tue, 03 Mar 2020 03:00:07 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2520,24 +1083,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --source-server + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3642967c-c9b0-480e-b854-c145a170e044?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"name":"3642967c-c9b0-480e-b854-c145a170e044","status":"InProgress","startTime":"2020-03-03T02:58:06.57Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:45:12 GMT + - Tue, 03 Mar 2020 03:00:37 GMT expires: - '-1' pragma: @@ -2567,24 +1130,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --source-server + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3642967c-c9b0-480e-b854-c145a170e044?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"name":"3642967c-c9b0-480e-b854-c145a170e044","status":"InProgress","startTime":"2020-03-03T02:58:06.57Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:45:44 GMT + - Tue, 03 Mar 2020 03:01:07 GMT expires: - '-1' pragma: @@ -2614,24 +1177,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --source-server + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3642967c-c9b0-480e-b854-c145a170e044?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"name":"3642967c-c9b0-480e-b854-c145a170e044","status":"InProgress","startTime":"2020-03-03T02:58:06.57Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:46:14 GMT + - Tue, 03 Mar 2020 03:01:37 GMT expires: - '-1' pragma: @@ -2661,24 +1224,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --source-server + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3642967c-c9b0-480e-b854-c145a170e044?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"name":"3642967c-c9b0-480e-b854-c145a170e044","status":"InProgress","startTime":"2020-03-03T02:58:06.57Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:46:45 GMT + - Tue, 03 Mar 2020 03:02:07 GMT expires: - '-1' pragma: @@ -2708,24 +1271,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --source-server + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3642967c-c9b0-480e-b854-c145a170e044?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"name":"3642967c-c9b0-480e-b854-c145a170e044","status":"InProgress","startTime":"2020-03-03T02:58:06.57Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:47:16 GMT + - Tue, 03 Mar 2020 03:02:38 GMT expires: - '-1' pragma: @@ -2755,24 +1318,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --source-server + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3642967c-c9b0-480e-b854-c145a170e044?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"name":"3642967c-c9b0-480e-b854-c145a170e044","status":"InProgress","startTime":"2020-03-03T02:58:06.57Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:47:47 GMT + - Tue, 03 Mar 2020 03:03:08 GMT expires: - '-1' pragma: @@ -2802,24 +1365,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --source-server + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3642967c-c9b0-480e-b854-c145a170e044?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"name":"3642967c-c9b0-480e-b854-c145a170e044","status":"InProgress","startTime":"2020-03-03T02:58:06.57Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:48:18 GMT + - Tue, 03 Mar 2020 03:03:38 GMT expires: - '-1' pragma: @@ -2849,24 +1412,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --source-server + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3642967c-c9b0-480e-b854-c145a170e044?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"name":"3642967c-c9b0-480e-b854-c145a170e044","status":"Succeeded","startTime":"2020-03-03T02:58:06.57Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:48:49 GMT + - Tue, 03 Mar 2020 03:04:09 GMT expires: - '-1' pragma: @@ -2896,24 +1459,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --source-server + - -g -n -l --sku-name --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000004?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep1000004.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T03:10:08.79+00:00","replicationRole":"Replica","masterServerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","replicaCapacity":0,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000004","name":"azuredbclirep1000004","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '108' + - '1315' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:49:20 GMT + - Tue, 03 Mar 2020 03:04:09 GMT expires: - '-1' pragma: @@ -2939,28 +1502,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server replica create + - postgres server show Connection: - keep-alive ParameterSetName: - - -g -n --source-server + - -g --name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:56:43.047+00:00","replicationRole":"Master","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '108' + - '1003' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:49:51 GMT + - Tue, 03 Mar 2020 03:04:10 GMT expires: - '-1' pragma: @@ -2986,28 +1551,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server replica create + - postgres server replica list Connection: - keep-alive ParameterSetName: - - -g -n --source-server + - -g -s User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003/Replicas?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"value":[{"sku":{"name":"GP_Gen5_4","tier":"GeneralPurpose","family":"Gen5","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep1000004.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T03:10:08.79+00:00","replicationRole":"Replica","masterServerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","replicaCapacity":0,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000004","name":"azuredbclirep1000004","type":"Microsoft.DBforPostgreSQL/servers"}]}' headers: cache-control: - no-cache content-length: - - '108' + - '1327' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:50:21 GMT + - Tue, 03 Mar 2020 03:04:11 GMT expires: - '-1' pragma: @@ -3033,45 +1600,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server replica create + - postgres server delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -n --source-server + - -g --name --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000004?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"operation":"DropElasticServer","startTime":"2020-03-03T03:04:12.11Z"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/016c441c-3c8c-4885-9948-bf6da263b298?api-version=2017-12-01 cache-control: - no-cache content-length: - - '108' + - '71' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:50:53 GMT + - Tue, 03 Mar 2020 03:04:11 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/016c441c-3c8c-4885-9948-bf6da263b298?api-version=2017-12-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3080,28 +1653,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server replica create + - postgres server delete Connection: - keep-alive ParameterSetName: - - -g -n --source-server + - -g --name --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/016c441c-3c8c-4885-9948-bf6da263b298?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"name":"016c441c-3c8c-4885-9948-bf6da263b298","status":"Succeeded","startTime":"2020-03-03T03:04:12.11Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '106' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:51:23 GMT + - Tue, 03 Mar 2020 03:04:26 GMT expires: - '-1' pragma: @@ -3127,28 +1700,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - postgres server replica create + - postgres server show Connection: - keep-alive ParameterSetName: - - -g -n --source-server + - -g --name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:56:43.047+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '108' + - '1001' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:51:54 GMT + - Tue, 03 Mar 2020 03:09:28 GMT expires: - '-1' pragma: @@ -3180,22 +1755,24 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T02:56:43.047+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '108' + - '1001' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:52:25 GMT + - Tue, 03 Mar 2020 03:09:29 GMT expires: - '-1' pragma: @@ -3214,7 +1791,9 @@ interactions: code: 200 message: OK - request: - body: null + body: 'b''{"sku": {"name": "GP_Gen5_2"}, "properties": {"createMode": "Replica", + "sourceServerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003"}, + "location": "eastus"}''' headers: Accept: - application/json @@ -3224,42 +1803,50 @@ interactions: - postgres server replica create Connection: - keep-alive + Content-Length: + - '334' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000005?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"operation":"CreateElasticServerContinuousCopy","startTime":"2020-03-03T03:09:30.193Z"}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f902e272-d662-4b17-ab61-26f1a4da8513?api-version=2017-12-01 cache-control: - no-cache content-length: - - '108' + - '88' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:52:57 GMT + - Tue, 03 Mar 2020 03:09:30 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f902e272-d662-4b17-ab61-26f1a4da8513?api-version=2017-12-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3274,13 +1861,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f902e272-d662-4b17-ab61-26f1a4da8513?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"name":"f902e272-d662-4b17-ab61-26f1a4da8513","status":"InProgress","startTime":"2020-03-03T03:09:30.193Z"}' headers: cache-control: - no-cache @@ -3289,7 +1876,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:53:27 GMT + - Tue, 03 Mar 2020 03:10:00 GMT expires: - '-1' pragma: @@ -3321,13 +1908,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f902e272-d662-4b17-ab61-26f1a4da8513?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"name":"f902e272-d662-4b17-ab61-26f1a4da8513","status":"InProgress","startTime":"2020-03-03T03:09:30.193Z"}' headers: cache-control: - no-cache @@ -3336,7 +1923,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:53:58 GMT + - Tue, 03 Mar 2020 03:10:30 GMT expires: - '-1' pragma: @@ -3368,13 +1955,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f902e272-d662-4b17-ab61-26f1a4da8513?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"name":"f902e272-d662-4b17-ab61-26f1a4da8513","status":"InProgress","startTime":"2020-03-03T03:09:30.193Z"}' headers: cache-control: - no-cache @@ -3383,7 +1970,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:54:29 GMT + - Tue, 03 Mar 2020 03:11:00 GMT expires: - '-1' pragma: @@ -3415,13 +2002,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f902e272-d662-4b17-ab61-26f1a4da8513?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"name":"f902e272-d662-4b17-ab61-26f1a4da8513","status":"InProgress","startTime":"2020-03-03T03:09:30.193Z"}' headers: cache-control: - no-cache @@ -3430,7 +2017,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:55:00 GMT + - Tue, 03 Mar 2020 03:11:30 GMT expires: - '-1' pragma: @@ -3462,13 +2049,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f902e272-d662-4b17-ab61-26f1a4da8513?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"name":"f902e272-d662-4b17-ab61-26f1a4da8513","status":"InProgress","startTime":"2020-03-03T03:09:30.193Z"}' headers: cache-control: - no-cache @@ -3477,7 +2064,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:55:32 GMT + - Tue, 03 Mar 2020 03:12:00 GMT expires: - '-1' pragma: @@ -3509,13 +2096,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f902e272-d662-4b17-ab61-26f1a4da8513?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"name":"f902e272-d662-4b17-ab61-26f1a4da8513","status":"InProgress","startTime":"2020-03-03T03:09:30.193Z"}' headers: cache-control: - no-cache @@ -3524,7 +2111,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:56:02 GMT + - Tue, 03 Mar 2020 03:12:31 GMT expires: - '-1' pragma: @@ -3556,13 +2143,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f902e272-d662-4b17-ab61-26f1a4da8513?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"name":"f902e272-d662-4b17-ab61-26f1a4da8513","status":"InProgress","startTime":"2020-03-03T03:09:30.193Z"}' headers: cache-control: - no-cache @@ -3571,7 +2158,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:56:33 GMT + - Tue, 03 Mar 2020 03:13:01 GMT expires: - '-1' pragma: @@ -3603,13 +2190,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f902e272-d662-4b17-ab61-26f1a4da8513?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"name":"f902e272-d662-4b17-ab61-26f1a4da8513","status":"InProgress","startTime":"2020-03-03T03:09:30.193Z"}' headers: cache-control: - no-cache @@ -3618,7 +2205,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:57:03 GMT + - Tue, 03 Mar 2020 03:13:31 GMT expires: - '-1' pragma: @@ -3650,13 +2237,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f902e272-d662-4b17-ab61-26f1a4da8513?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"name":"f902e272-d662-4b17-ab61-26f1a4da8513","status":"InProgress","startTime":"2020-03-03T03:09:30.193Z"}' headers: cache-control: - no-cache @@ -3665,7 +2252,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:57:34 GMT + - Tue, 03 Mar 2020 03:14:02 GMT expires: - '-1' pragma: @@ -3697,13 +2284,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f902e272-d662-4b17-ab61-26f1a4da8513?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"name":"f902e272-d662-4b17-ab61-26f1a4da8513","status":"InProgress","startTime":"2020-03-03T03:09:30.193Z"}' headers: cache-control: - no-cache @@ -3712,7 +2299,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:58:06 GMT + - Tue, 03 Mar 2020 03:14:31 GMT expires: - '-1' pragma: @@ -3744,13 +2331,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f902e272-d662-4b17-ab61-26f1a4da8513?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"InProgress","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"name":"f902e272-d662-4b17-ab61-26f1a4da8513","status":"InProgress","startTime":"2020-03-03T03:09:30.193Z"}' headers: cache-control: - no-cache @@ -3759,7 +2346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:58:36 GMT + - Tue, 03 Mar 2020 03:15:01 GMT expires: - '-1' pragma: @@ -3791,13 +2378,13 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8bce7cc3-b43f-4ab1-907e-7407d962d52b?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f902e272-d662-4b17-ab61-26f1a4da8513?api-version=2017-12-01 response: body: - string: '{"name":"8bce7cc3-b43f-4ab1-907e-7407d962d52b","status":"Succeeded","startTime":"2019-06-28T22:44:42.057Z"}' + string: '{"name":"f902e272-d662-4b17-ab61-26f1a4da8513","status":"Succeeded","startTime":"2020-03-03T03:09:30.193Z"}' headers: cache-control: - no-cache @@ -3806,7 +2393,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:59:07 GMT + - Tue, 03 Mar 2020 03:15:32 GMT expires: - '-1' pragma: @@ -3838,22 +2425,22 @@ interactions: ParameterSetName: - -g -n --source-server User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000004?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000005?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep2000004.postgres.database.azure.com","earliestRestoreDate":"2019-06-28T22:56:43.33+00:00","replicationRole":"Replica","masterServerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002","replicaCapacity":0},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000004","name":"azuredbclirep2000004","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep2000005.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T03:21:31.443+00:00","replicationRole":"Replica","masterServerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","replicaCapacity":0,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000005","name":"azuredbclirep2000005","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '1177' + - '1316' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:59:08 GMT + - Tue, 03 Mar 2020 03:15:32 GMT expires: - '-1' pragma: @@ -3887,18 +2474,18 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: body: - string: '{"operation":"DropElasticServer","startTime":"2019-06-28T22:59:10.963Z"}' + string: '{"operation":"DropElasticServer","startTime":"2020-03-03T03:15:34.213Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/12c8078a-36b9-4558-ad2e-55de45996e8d?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/8ff41458-4a42-4ad5-b70f-4cea6db6571b?api-version=2017-12-01 cache-control: - no-cache content-length: @@ -3906,11 +2493,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:59:10 GMT + - Tue, 03 Mar 2020 03:15:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/12c8078a-36b9-4558-ad2e-55de45996e8d?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/8ff41458-4a42-4ad5-b70f-4cea6db6571b?api-version=2017-12-01 pragma: - no-cache server: @@ -3920,7 +2507,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -3938,13 +2525,13 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/12c8078a-36b9-4558-ad2e-55de45996e8d?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/8ff41458-4a42-4ad5-b70f-4cea6db6571b?api-version=2017-12-01 response: body: - string: '{"name":"12c8078a-36b9-4558-ad2e-55de45996e8d","status":"Succeeded","startTime":"2019-06-28T22:59:10.963Z"}' + string: '{"name":"8ff41458-4a42-4ad5-b70f-4cea6db6571b","status":"Succeeded","startTime":"2020-03-03T03:15:34.213Z"}' headers: cache-control: - no-cache @@ -3953,7 +2540,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 22:59:26 GMT + - Tue, 03 Mar 2020 03:15:49 GMT expires: - '-1' pragma: @@ -3985,24 +2572,24 @@ interactions: ParameterSetName: - -g --name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000004?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000005?api-version=2017-12-01 response: body: - string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutoGrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep2000004.postgres.database.azure.com","earliestRestoreDate":"2019-06-28T22:56:43.33+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000004","name":"azuredbclirep2000004","type":"Microsoft.DBforPostgreSQL/servers"}' + string: '{"sku":{"name":"GP_Gen5_2","tier":"GeneralPurpose","family":"Gen5","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled","storageAutogrow":"Enabled"},"version":"9.6","sslEnforcement":"Enabled","minimalTlsVersion":"TLSEnforcementDisabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirep2000005.postgres.database.azure.com","earliestRestoreDate":"2020-03-03T03:21:31.443+00:00","replicationRole":"None","masterServerId":"","replicaCapacity":5,"byokEnforcement":"Disabled","privateEndpointConnections":[],"infrastructureEncryption":"Enabled"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000005","name":"azuredbclirep2000005","type":"Microsoft.DBforPostgreSQL/servers"}' headers: cache-control: - no-cache content-length: - - '955' + - '1094' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 23:04:27 GMT + - Tue, 03 Mar 2020 03:20:50 GMT expires: - '-1' pragma: @@ -4036,12 +2623,12 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000003?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep1000004?api-version=2017-12-01 response: body: string: '' @@ -4049,7 +2636,7 @@ interactions: cache-control: - no-cache date: - - Fri, 28 Jun 2019 23:04:28 GMT + - Tue, 03 Mar 2020 03:20:50 GMT expires: - '-1' pragma: @@ -4079,30 +2666,30 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000004?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirep2000005?api-version=2017-12-01 response: body: - string: '{"operation":"DropElasticServer","startTime":"2019-06-28T23:04:29.78Z"}' + string: '{"operation":"DropElasticServer","startTime":"2020-03-03T03:20:52.123Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/b35e107c-bc3f-494d-a2fc-40cd5ee2bd31?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9acb044b-1d4f-4105-844f-897b5e56b515?api-version=2017-12-01 cache-control: - no-cache content-length: - - '71' + - '72' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 23:04:29 GMT + - Tue, 03 Mar 2020 03:20:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/b35e107c-bc3f-494d-a2fc-40cd5ee2bd31?api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/9acb044b-1d4f-4105-844f-897b5e56b515?api-version=2017-12-01 pragma: - no-cache server: @@ -4112,7 +2699,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -4130,22 +2717,22 @@ interactions: ParameterSetName: - -g --name --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-rdbms/2017-12-01 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-rdbms/2017-12-01 Azure-SDK-For-Python AZURECLI/2.1.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/b35e107c-bc3f-494d-a2fc-40cd5ee2bd31?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9acb044b-1d4f-4105-844f-897b5e56b515?api-version=2017-12-01 response: body: - string: '{"name":"b35e107c-bc3f-494d-a2fc-40cd5ee2bd31","status":"Succeeded","startTime":"2019-06-28T23:04:29.78Z"}' + string: '{"name":"9acb044b-1d4f-4105-844f-897b5e56b515","status":"Succeeded","startTime":"2020-03-03T03:20:52.123Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jun 2019 23:04:45 GMT + - Tue, 03 Mar 2020 03:21:07 GMT expires: - '-1' pragma: @@ -4163,51 +2750,4 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 28 Jun 2019 23:04:46 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdIUFBZT1ZFV1VQU1k0N1NISUlHQVVYTEJPSDNISVVJWVA2Unw5RjkzNkE4N0Y5RkNGMzQ2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-07-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/test_rdbms_commands.py b/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/test_rdbms_commands.py index e51391437aa..81badba4f18 100644 --- a/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/test_rdbms_commands.py +++ b/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/test_rdbms_commands.py @@ -4,9 +4,12 @@ # -------------------------------------------------------------------------------------------- from datetime import datetime +from time import sleep from dateutil.tz import tzutc # pylint: disable=import-error +from msrestazure.azure_exceptions import CloudError from azure.cli.core.util import CLIError +from azure.cli.core.util import parse_proxy_resource_id from azure.cli.testsdk.base import execute from azure.cli.testsdk.exceptions import CliTestError # pylint: disable=unused-import from azure.cli.testsdk import ( @@ -97,11 +100,11 @@ def _test_server_mgmt(self, database_engine, resource_group_1, resource_group_2) family = 'Gen5' skuname = 'GP_{}_{}'.format(family, old_cu) newskuname = 'GP_{}_{}'.format(family, new_cu) - loc = 'koreasouth' + loc = 'eastus' geoGeoRedundantBackup = 'Disabled' geoBackupRetention = 20 - geoloc = 'koreasouth' + geoloc = 'eastus' # test create server self.cmd('{} server create -g {} --name {} -l {} ' @@ -198,10 +201,6 @@ def _test_server_mgmt(self, database_engine, resource_group_1, resource_group_2) JMESPathCheck('sku.tier', edition), JMESPathCheck('administratorLogin', admin_login)]) - # test restore to a new server, make sure wait at least 5 min after server created. - from time import sleep - sleep(300) - self.cmd('{} server restore -g {} --name {} ' '--source-server {} ' '--restore-point-in-time {}' @@ -259,6 +258,8 @@ def test_mariadb_proxy_resources_mgmt(self, resource_group, server, database_eng self._test_db_mgmt(resource_group, server, database_engine) self._test_configuration_mgmt(resource_group, server, database_engine) self._test_log_file_mgmt(resource_group, server, database_engine) + self._test_private_link_resource(resource_group, server, database_engine, 'mariadbServer') + self._test_private_endpoint_connection(resource_group, server, database_engine) @ResourceGroupPreparer() @ServerPreparer(engine_type='mysql') @@ -268,6 +269,8 @@ def test_mysql_proxy_resources_mgmt(self, resource_group, server, database_engin self._test_db_mgmt(resource_group, server, database_engine) self._test_configuration_mgmt(resource_group, server, database_engine) self._test_log_file_mgmt(resource_group, server, database_engine) + self._test_private_link_resource(resource_group, server, database_engine, 'mysqlServer') + self._test_private_endpoint_connection(resource_group, server, database_engine) @ResourceGroupPreparer() @ServerPreparer(engine_type='postgres') @@ -277,6 +280,8 @@ def test_postgres_proxy_resources_mgmt(self, resource_group, server, database_en self._test_db_mgmt(resource_group, server, database_engine) self._test_configuration_mgmt(resource_group, server, database_engine) self._test_log_file_mgmt(resource_group, server, database_engine) + self._test_private_link_resource(resource_group, server, database_engine, 'postgresqlServer') + self._test_private_endpoint_connection(resource_group, server, database_engine) def _test_firewall_mgmt(self, resource_group, server, database_engine): firewall_rule_1 = 'rule1' @@ -505,6 +510,72 @@ def _test_log_file_mgmt(self, resource_group, server, database_engine): self.assertIsNotNone(result[0]['name']) + def _test_private_link_resource(self, resource_group, server, database_engine, group_id): + result = self.cmd('{} server private-link-resource list -g {} -s {}' + .format(database_engine, resource_group, server)).get_output_in_json() + self.assertEqual(result[0]['properties']['groupId'], group_id) + + def _test_private_endpoint_connection(self, resource_group, server, database_engine): + loc = 'eastus' + vnet = self.create_random_name('cli-vnet-', 24) + subnet = self.create_random_name('cli-subnet-', 24) + pe = self.create_random_name('cli-pe-', 24) + pe_connection = self.create_random_name('cli-pec-', 24) + + # Prepare network + self.cmd('network vnet create -n {} -g {} -l {} --subnet-name {}' + .format(vnet, resource_group, loc, subnet), + checks=self.check('length(newVNet.subnets)', 1)) + self.cmd('network vnet subnet update -n {} --vnet-name {} -g {} ' + '--disable-private-endpoint-network-policies true' + .format(subnet, vnet, resource_group), + checks=self.check('privateEndpointNetworkPolicies', 'Disabled')) + + # Get Server Id and Group Id + result = self.cmd('{} server show -g {} -n {}' + .format(database_engine, resource_group, server)).get_output_in_json() + server_id = result['id'] + result = self.cmd('{} server private-link-resource list -g {} -s {}' + .format(database_engine, resource_group, server)).get_output_in_json() + group_id = result[0]['properties']['groupId'] + + # Create a private endpoint connection + private_endpoint = self.cmd('network private-endpoint create -g {} -n {} --vnet-name {} --subnet {} -l {} ' + '--connection-name {} --private-connection-resource-id {} ' + '--group-ids {}' + .format(resource_group, pe, vnet, subnet, loc, pe_connection, server_id, group_id)).get_output_in_json() + self.assertEqual(private_endpoint['name'], pe) + self.assertEqual(private_endpoint['privateLinkServiceConnections'][0]['name'], pe_connection) + self.assertEqual(private_endpoint['privateLinkServiceConnections'][0]['privateLinkServiceConnectionState']['status'], 'Approved') + self.assertEqual(private_endpoint['privateLinkServiceConnections'][0]['provisioningState'], 'Succeeded') + self.assertEqual(private_endpoint['privateLinkServiceConnections'][0]['groupIds'][0], group_id) + + # Get Private Endpoint Connection Name and Id + api_version = '2018-06-01' if database_engine == 'mariadb' else '2017-12-01' + result = self.cmd('az rest --method get --uri https://management.azure.com{}?api-version={}' + .format(server_id, api_version, server)).get_output_in_json() + self.assertEqual(len(result['properties']['privateEndpointConnections']), 1) + self.assertEqual(result['properties']['privateEndpointConnections'][0]['properties']['privateLinkServiceConnectionState']['status'], + 'Approved') + server_pec_id = result['properties']['privateEndpointConnections'][0]['id'] + result = parse_proxy_resource_id(server_pec_id) + server_pec_name = result['child_name_1'] + + self.cmd('{} server private-endpoint-connection show --server-name {} -g {} --name {}' + .format(database_engine, server, resource_group, server_pec_name), + checks=self.check('id', server_pec_id)) + + with self.assertRaisesRegexp(CloudError, 'Private Endpoint Connection Status is not Pending'): + self.cmd('{} server private-endpoint-connection approve --server-name {} -g {} --name {}' + .format(database_engine, server, resource_group, server_pec_name)) + + with self.assertRaisesRegexp(CloudError, 'Private Endpoint Connection Status is not Pending'): + self.cmd('{} server private-endpoint-connection reject --server-name {} -g {} --name {}' + .format(database_engine, server, resource_group, server_pec_name)) + + self.cmd('{} server private-endpoint-connection delete --id {}' + .format(database_engine, server_pec_id)) + class ReplicationMgmtScenarioTest(ScenarioTest): # pylint: disable=too-few-public-methods @@ -518,7 +589,7 @@ def _test_replica_mgmt(self, resource_group, database_engine): self.create_random_name('azuredbclirep2', SERVER_NAME_MAX_LENGTH)] # create a server - result = self.cmd('{} server create -g {} --name {} -l brazilsouth ' + result = self.cmd('{} server create -g {} --name {} -l eastus ' '--admin-user cloudsa --admin-password SecretPassword123 ' '--sku-name GP_Gen5_2' .format(database_engine, resource_group, server), @@ -530,10 +601,8 @@ def _test_replica_mgmt(self, resource_group, database_engine): JMESPathCheck('replicationRole', 'None'), JMESPathCheck('masterServerId', '')]).get_output_in_json() - from time import sleep - sleep(300) # test replica create - self.cmd('{} server replica create -g {} -n {} -l brazilsouth --sku-name GP_Gen5_4 ' + self.cmd('{} server replica create -g {} -n {} -l eastus --sku-name GP_Gen5_4 ' '--source-server {}' .format(database_engine, resource_group, replicas[0], result['id']), checks=[ @@ -591,7 +660,6 @@ def _test_replica_mgmt(self, resource_group, database_engine): self.cmd('{} server delete -g {} --name {} --yes' .format(database_engine, resource_group, server), checks=NoneCheck()) - sleep(300) # test show server with replication info, replica was auto stopped after master server deleted self.cmd('{} server show -g {} --name {}' .format(database_engine, resource_group, replicas[1]), @@ -620,11 +688,12 @@ def test_postgrsql_general_purpose_replica_mgmt(self, resource_group): def _test_replica_mgmt(self, resource_group, skuName, testSkuName, isBasicTier): database_engine = 'postgres' server = self.create_random_name(SERVER_NAME_PREFIX, 32) + server = self.create_random_name(SERVER_NAME_PREFIX, 32) replicas = [self.create_random_name('azuredbclirep1', SERVER_NAME_MAX_LENGTH), self.create_random_name('azuredbclirep2', SERVER_NAME_MAX_LENGTH)] # create a server - result = self.cmd('{} server create -g {} --name {} -l brazilsouth ' + result = self.cmd('{} server create -g {} --name {} -l eastus ' '--admin-user cloudsa --admin-password SecretPassword123 ' '--sku-name {}' .format(database_engine, resource_group, server, skuName), @@ -636,8 +705,6 @@ def _test_replica_mgmt(self, resource_group, skuName, testSkuName, isBasicTier): JMESPathCheck('replicationRole', 'None'), JMESPathCheck('masterServerId', '')]).get_output_in_json() - from time import sleep - sleep(300) if isBasicTier is False: # enable replication support for GP/MO servers self.cmd('{} server configuration set -g {} -s {} -n azure.replication_support --value REPLICA' @@ -651,7 +718,7 @@ def _test_replica_mgmt(self, resource_group, skuName, testSkuName, isBasicTier): sleep(120) # test replica create - self.cmd('{} server replica create -g {} -n {} -l brazilsouth --sku-name {} ' + self.cmd('{} server replica create -g {} -n {} -l eastus --sku-name {} ' '--source-server {}' .format(database_engine, resource_group, replicas[0], testSkuName, result['id']), checks=[ @@ -678,7 +745,6 @@ def _test_replica_mgmt(self, resource_group, skuName, testSkuName, isBasicTier): # test replica delete self.cmd('{} server delete -g {} --name {} --yes' .format(database_engine, resource_group, replicas[0]), checks=NoneCheck()) - sleep(300) # test show server with replication info, master becomes normal server self.cmd('{} server show -g {} --name {}' @@ -703,7 +769,6 @@ def _test_replica_mgmt(self, resource_group, skuName, testSkuName, isBasicTier): self.cmd('{} server delete -g {} --name {} --yes' .format(database_engine, resource_group, server), checks=NoneCheck()) - sleep(300) # test show server with replication info, replica was auto stopped after master server deleted self.cmd('{} server show -g {} --name {}' .format(database_engine, resource_group, replicas[1]), diff --git a/src/azure-cli/azure/cli/command_modules/rdbms/validators.py b/src/azure-cli/azure/cli/command_modules/rdbms/validators.py index bcdf0f50368..44cc3d19511 100644 --- a/src/azure-cli/azure/cli/command_modules/rdbms/validators.py +++ b/src/azure-cli/azure/cli/command_modules/rdbms/validators.py @@ -3,13 +3,35 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- +from azure.cli.core.commands.client_factory import get_mgmt_service_client + from azure.cli.core.commands.validators import ( get_default_location_from_resource_group, validate_tags) +from azure.cli.core.util import parse_proxy_resource_id + from knack.prompting import prompt_pass, NoTTYException from knack.util import CLIError +def _get_resource_group_from_server_name(cli_ctx, server_name): + """ + Fetch resource group from server name + :param str server_name: name of the server + :return: resource group name or None + :rtype: str + """ + from azure.cli.core.profiles import ResourceType + from msrestazure.tools import parse_resource_id + + client = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RDBMS).servers + for server in client.list(): + id_comps = parse_resource_id(server.id) + if id_comps['name'] == server_name: + return id_comps['resource_group'] + return None + + def get_combined_validator(validators): def _final_validator_impl(cmd, namespace): # do additional creation validation @@ -71,3 +93,18 @@ def validate_subnet(cmd, namespace): else: raise CLIError('incorrect usage: [--subnet ID | --subnet NAME --vnet-name NAME]') delattr(namespace, 'vnet_name') + + +def validate_private_endpoint_connection_id(cmd, namespace): + if namespace.connection_id: + result = parse_proxy_resource_id(namespace.connection_id) + namespace.private_endpoint_connection_name = result['child_name_1'] + namespace.server_name = result['name'] + namespace.resource_group_name = result['resource_group'] + if namespace.server_name and not namespace.resource_group_name: + namespace.resource_group_name = _get_resource_group_from_server_name(cmd.cli_ctx, namespace.server_name) + + if not all([namespace.server_name, namespace.resource_group_name, namespace.private_endpoint_connection_name]): + raise CLIError('incorrect usage: [--id ID | --name NAME --server-name NAME]') + + del namespace.connection_id diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index ddb2ff75ef0..d6f33b4bc56 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -61,7 +61,7 @@ azure-mgmt-network==9.0.0 azure-mgmt-nspkg==3.0.2 azure-mgmt-policyinsights==0.4.0 azure-mgmt-privatedns==0.1.0 -azure-mgmt-rdbms==1.9.0 +azure-mgmt-rdbms==2.0.0 azure-mgmt-recoveryservices==0.4.0 azure-mgmt-recoveryservicesbackup==0.6.0 azure-mgmt-redis==7.0.0rc1 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index ddb2ff75ef0..d6f33b4bc56 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -61,7 +61,7 @@ azure-mgmt-network==9.0.0 azure-mgmt-nspkg==3.0.2 azure-mgmt-policyinsights==0.4.0 azure-mgmt-privatedns==0.1.0 -azure-mgmt-rdbms==1.9.0 +azure-mgmt-rdbms==2.0.0 azure-mgmt-recoveryservices==0.4.0 azure-mgmt-recoveryservicesbackup==0.6.0 azure-mgmt-redis==7.0.0rc1 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index 0220a91d1fe..612776dbdef 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -60,7 +60,7 @@ azure-mgmt-network==9.0.0 azure-mgmt-nspkg==3.0.2 azure-mgmt-policyinsights==0.4.0 azure-mgmt-privatedns==0.1.0 -azure-mgmt-rdbms==1.9.0 +azure-mgmt-rdbms==2.0.0 azure-mgmt-recoveryservices==0.4.0 azure-mgmt-recoveryservicesbackup==0.6.0 azure-mgmt-redis==7.0.0rc1 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index b428e28205d..0426be99223 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -105,7 +105,7 @@ 'azure-mgmt-network~=9.0.0', 'azure-mgmt-policyinsights~=0.4.0', 'azure-mgmt-privatedns~=0.1.0', - 'azure-mgmt-rdbms~=1.8', + 'azure-mgmt-rdbms~=2.0.0', 'azure-mgmt-recoveryservices~=0.4.0', 'azure-mgmt-recoveryservicesbackup~=0.6.0', 'azure-mgmt-redis~=7.0.0rc1',