diff --git a/src/index.json b/src/index.json index 26cc9e0d035..da522c98334 100644 --- a/src/index.json +++ b/src/index.json @@ -505,9 +505,9 @@ ], "rdbms": [ { - "filename": "rdbms-0.0.2-py2.py3-none-any.whl", - "sha256Digest": "f7c347df4766e593e953862dfa1f08e938fb8054821b3b507f99f7e4306b4b21", - "downloadUrl": "https://prodrdbmsclipackages.blob.core.windows.net/cliextensions/rdbms-0.0.2-py2.py3-none-any.whl", + "filename": "rdbms-0.0.3-py2.py3-none-any.whl", + "sha256Digest": "3125d386c56599dd364534988ebc7cac35d79de58bb6e89af04bc48569da9522", + "downloadUrl": "https://prodrdbmsclipackages.blob.core.windows.net/cliextensions/rdbms-0.0.3-py2.py3-none-any.whl", "metadata": { "classifiers": [ "Development Status :: 4 - Beta", @@ -544,7 +544,7 @@ "metadata_version": "2.0", "name": "rdbms", "summary": "An Azure CLI Extension to manage Azure MySQL and Azure PostgreSQL resources", - "version": "0.0.2" + "version": "0.0.3" } } ], diff --git a/src/rdbms/azext_rdbms/_help.py b/src/rdbms/azext_rdbms/_help.py index f22b095e98d..9d3e5017326 100644 --- a/src/rdbms/azext_rdbms/_help.py +++ b/src/rdbms/azext_rdbms/_help.py @@ -43,18 +43,6 @@ def add_helps(command_group, server_type): -s "/subscriptions/${{SubID}}/resourceGroups/${{ResourceGroup}}/providers/Microsoft.DBfor{1}/servers/testsvr2" \\ --restore-point-in-time "2017-06-15T13:10:00Z" """.format(command_group, server_type) - helps['{} server georestore'.format(command_group)] = """ - type: command - short-summary: Restore a server from geo-replicated backup. - examples: - - name: Geo-Restore 'testsvr' as 'testsvrgeor'. - text: az {0} server georestore -g testgroup -n testsvrgeor --source-server testsvr -l northeurope --sku-name GP_Gen4_2 - - name: Geo-Restore 'testsvr2' to 'testsvrnew', where 'testsvrnew' is in a different resource group than the backup. - text: | - az {0} server georestore -g testgroup -n testsvrgeor \\ - -s "/subscriptions/${{SubID}}/resourceGroups/${{ResourceGroup}}/providers/Microsoft.DBfor{1}/servers/testsvrgeor" \\ - -l northeurope --sku-name GP_Gen4_2 - """.format(command_group, server_type) helps['{} server update'.format(command_group)] = """ type: command short-summary: Update a server. diff --git a/src/rdbms/azext_rdbms/_params.py b/src/rdbms/azext_rdbms/_params.py index 712e58b2dec..79ea5ae88bb 100644 --- a/src/rdbms/azext_rdbms/_params.py +++ b/src/rdbms/azext_rdbms/_params.py @@ -41,21 +41,6 @@ def _complex_params(command_group, engine): c.argument('source_server_id', options_list=['--source-server', '-s'], help='The name or ID of the source server to restore from.') c.argument('restore_point_in_time', help='The point in time to restore from (ISO8601 format), e.g., 2017-04-26T02:10:00+08:00') - with self.argument_context('{} server georestore'. format(command_group)) as c: - c.expand('sku', engine.models.Sku) - c.ignore('size', 'family', 'capacity', 'tier') - - c.expand('storage_profile', engine.models.StorageProfile) - c.ignore('storage_mb') - - c.expand('properties', engine.models.ServerPropertiesForGeoRestore) - c.ignore('version', 'ssl_enforcement') - - c.expand('parameters', engine.models.ServerForCreate) - c.ignore('tags') - - c.argument('source_server_id', options_list=['--source-server', '-s'], help='The name or ID of the source server to restore from.') - with self.argument_context('{} server configuration set'.format(command_group)) as c: c.argument('value', help='Value of the configuration. If not provided, configuration value will be set to default.', validator=configuration_value_validator) c.ignore('source') diff --git a/src/rdbms/azext_rdbms/commands.py b/src/rdbms/azext_rdbms/commands.py index ef60b8a4936..1cc934e75d1 100644 --- a/src/rdbms/azext_rdbms/commands.py +++ b/src/rdbms/azext_rdbms/commands.py @@ -86,7 +86,6 @@ def load_command_table(self, _): with self.command_group('mysql server', mysql_servers_sdk, client_factory=cf_mysql_servers) as g: g.command('create', 'create') g.custom_command('restore', '_server_restore', no_wait_param='no_wait') - g.custom_command('georestore', '_server_georestore', no_wait_param='no_wait') g.command('delete', 'delete', confirmation=True) g.command('show', 'get') g.custom_command('list', '_server_list_custom_func') @@ -99,7 +98,6 @@ def load_command_table(self, _): with self.command_group('postgres server', postgres_servers_sdk, client_factory=cf_postgres_servers) as g: g.command('create', 'create') g.custom_command('restore', '_server_restore', no_wait_param='no_wait') - g.custom_command('georestore', '_server_georestore', no_wait_param='no_wait') g.command('delete', 'delete', confirmation=True) g.command('show', 'get') g.custom_command('list', '_server_list_custom_func') diff --git a/src/rdbms/azext_rdbms/custom.py b/src/rdbms/azext_rdbms/custom.py index 085c3243d71..d466ddece4c 100644 --- a/src/rdbms/azext_rdbms/custom.py +++ b/src/rdbms/azext_rdbms/custom.py @@ -44,36 +44,6 @@ def _server_restore(cmd, client, resource_group_name, server_name, parameters, n return client.create(resource_group_name, server_name, parameters, raw=no_wait) -# need to replace source sever name with source server id, so customer server restore function -# The parameter list should be the same as that in factory to use the ParametersContext -# auguments and validators -def _server_georestore(cmd, client, resource_group_name, server_name, parameters, no_wait=False, **kwargs): - source_server = kwargs['source_server_id'] - - if not is_valid_resource_id(source_server): - if len(source_server.split('/')) == 1: - provider = 'Microsoft.DBForMySQL' if isinstance(client, ServersOperations) else 'Microsoft.DBforPostgreSQL' - source_server = resource_id(subscription=get_subscription_id(cmd.cli_ctx), - resource_group=resource_group_name, - namespace=provider, - type='servers', - name=source_server) - else: - raise ValueError('The provided source-server {} is invalid.'.format(source_server)) - - parameters.properties.source_server_id = source_server - - id_parts = parse_resource_id(source_server) - try: - source_server_object = client.get(id_parts['resource_group'], id_parts['name']) - if parameters.sku.name is None: - parameters.sku.name = source_server_object.sku.name - except Exception as e: - raise ValueError('Unable to get source server: {}.'.format(str(e))) - - return client.create(resource_group_name, server_name, parameters, raw=no_wait) - - def _server_update_custom_func(instance, capacity=None, storage_mb=None, diff --git a/src/rdbms/azext_rdbms/mysql/models/__init__.py b/src/rdbms/azext_rdbms/mysql/models/__init__.py index 7eee4a037b3..c94ded454c5 100644 --- a/src/rdbms/azext_rdbms/mysql/models/__init__.py +++ b/src/rdbms/azext_rdbms/mysql/models/__init__.py @@ -15,7 +15,6 @@ from .server_properties_for_create import ServerPropertiesForCreate from .server_properties_for_default_create import ServerPropertiesForDefaultCreate from .server_properties_for_restore import ServerPropertiesForRestore -from .server_properties_for_geo_restore import ServerPropertiesForGeoRestore from .sku import Sku from .server import Server from .server_for_create import ServerForCreate @@ -53,7 +52,6 @@ 'ServerPropertiesForCreate', 'ServerPropertiesForDefaultCreate', 'ServerPropertiesForRestore', - 'ServerPropertiesForGeoRestore', 'Sku', 'Server', 'ServerForCreate', diff --git a/src/rdbms/azext_rdbms/mysql/models/log_file.py b/src/rdbms/azext_rdbms/mysql/models/log_file.py index 3ec6e29b9c5..7ca4f91fe2a 100644 --- a/src/rdbms/azext_rdbms/mysql/models/log_file.py +++ b/src/rdbms/azext_rdbms/mysql/models/log_file.py @@ -28,10 +28,10 @@ class LogFile(ProxyResource): :type log_file_name: str :param size_in_kb: Size of the log file. :type size_in_kb: long - :param created_time: Creation timestamp of the log file. - :type created_time: datetime - :param last_modified_time: Last modified timestamp of the log file. - :type last_modified_time: datetime + :ivar created_time: Creation timestamp of the log file. + :vartype created_time: datetime + :ivar last_modified_time: Last modified timestamp of the log file. + :vartype last_modified_time: datetime :param log_file_type: Type of the log file. :type log_file_type: str :param url: The url to download the log file from. @@ -42,6 +42,8 @@ class LogFile(ProxyResource): 'id': {'readonly': True}, 'name': {'readonly': True}, 'type': {'readonly': True}, + 'created_time': {'readonly': True}, + 'last_modified_time': {'readonly': True}, } _attribute_map = { @@ -56,11 +58,11 @@ class LogFile(ProxyResource): 'url': {'key': 'properties.url', 'type': 'str'}, } - def __init__(self, log_file_name=None, size_in_kb=None, created_time=None, last_modified_time=None, log_file_type=None, url=None): + def __init__(self, log_file_name=None, size_in_kb=None, log_file_type=None, url=None): super(LogFile, self).__init__() self.log_file_name = log_file_name self.size_in_kb = size_in_kb - self.created_time = created_time - self.last_modified_time = last_modified_time + self.created_time = None + self.last_modified_time = None self.log_file_type = log_file_type self.url = url diff --git a/src/rdbms/azext_rdbms/mysql/models/server_properties_for_create.py b/src/rdbms/azext_rdbms/mysql/models/server_properties_for_create.py index fb22126068f..6b9c35bf32c 100644 --- a/src/rdbms/azext_rdbms/mysql/models/server_properties_for_create.py +++ b/src/rdbms/azext_rdbms/mysql/models/server_properties_for_create.py @@ -17,7 +17,7 @@ class ServerPropertiesForCreate(Model): You probably want to use the sub-classes and not this class directly. Known sub-classes are: ServerPropertiesForDefaultCreate, - ServerPropertiesForRestore, ServerPropertiesForGeoRestore + ServerPropertiesForRestore :param version: Server version. Possible values include: '5.6', '5.7' :type version: str or ~azure.mgmt.rdbms.mysql.models.ServerVersion @@ -43,7 +43,7 @@ class ServerPropertiesForCreate(Model): } _subtype_map = { - 'create_mode': {'Default': 'ServerPropertiesForDefaultCreate', 'PointInTimeRestore': 'ServerPropertiesForRestore', 'GeoRestore': 'ServerPropertiesForGeoRestore'} + 'create_mode': {'Default': 'ServerPropertiesForDefaultCreate', 'PointInTimeRestore': 'ServerPropertiesForRestore'} } def __init__(self, version=None, ssl_enforcement=None, storage_profile=None): diff --git a/src/rdbms/azext_rdbms/mysql/models/server_properties_for_geo_restore.py b/src/rdbms/azext_rdbms/mysql/models/server_properties_for_geo_restore.py deleted file mode 100644 index cb74a4564d8..00000000000 --- a/src/rdbms/azext_rdbms/mysql/models/server_properties_for_geo_restore.py +++ /dev/null @@ -1,48 +0,0 @@ -# coding=utf-8 -# -------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# -# Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. -# -------------------------------------------------------------------------- - -from .server_properties_for_create import ServerPropertiesForCreate - - -class ServerPropertiesForGeoRestore(ServerPropertiesForCreate): - """The properties to a new server by restoring from a geo replicated backup. - - :param version: Server version. Possible values include: '5.6', '5.7' - :type version: str or ~azure.mgmt.rdbms.mysql.models.ServerVersion - :param ssl_enforcement: Enable ssl enforcement or not when connect to - server. Possible values include: 'Enabled', 'Disabled' - :type ssl_enforcement: str or - ~azure.mgmt.rdbms.mysql.models.SslEnforcementEnum - :param storage_profile: Storage profile of a server. - :type storage_profile: ~azure.mgmt.rdbms.mysql.models.StorageProfile - :param create_mode: Constant filled by server. - :type create_mode: str - :param source_server_id: The source server id to restore from. - :type source_server_id: str - """ - - _validation = { - 'create_mode': {'required': True}, - 'source_server_id': {'required': True}, - } - - _attribute_map = { - 'version': {'key': 'version', 'type': 'str'}, - 'ssl_enforcement': {'key': 'sslEnforcement', 'type': 'SslEnforcementEnum'}, - 'storage_profile': {'key': 'storageProfile', 'type': 'StorageProfile'}, - 'create_mode': {'key': 'createMode', 'type': 'str'}, - 'source_server_id': {'key': 'sourceServerId', 'type': 'str'}, - } - - def __init__(self, source_server_id, version=None, ssl_enforcement=None, storage_profile=None): - super(ServerPropertiesForGeoRestore, self).__init__(version=version, ssl_enforcement=ssl_enforcement, storage_profile=storage_profile) - self.source_server_id = source_server_id - self.create_mode = 'GeoRestore' diff --git a/src/rdbms/azext_rdbms/mysql/operations/check_name_availability_operations.py b/src/rdbms/azext_rdbms/mysql/operations/check_name_availability_operations.py index 6c71fbfcb60..3f80b148cc6 100644 --- a/src/rdbms/azext_rdbms/mysql/operations/check_name_availability_operations.py +++ b/src/rdbms/azext_rdbms/mysql/operations/check_name_availability_operations.py @@ -22,7 +22,7 @@ class CheckNameAvailabilityOperations(object): :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. - :param deserializer: An objec model deserializer. + :param deserializer: An object model deserializer. :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". """ @@ -58,7 +58,7 @@ def execute( name_availability_request = models.NameAvailabilityRequest(name=name, type=type) # Construct URL - url = '/subscriptions/{subscriptionId}/providers/Microsoft.DBforMySQL/checkNameAvailability' + url = self.execute.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') } @@ -101,3 +101,4 @@ def execute( return client_raw_response return deserialized + execute.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.DBforMySQL/checkNameAvailability'} diff --git a/src/rdbms/azext_rdbms/mysql/operations/configurations_operations.py b/src/rdbms/azext_rdbms/mysql/operations/configurations_operations.py index 4daae542f0f..6e7eb565a59 100644 --- a/src/rdbms/azext_rdbms/mysql/operations/configurations_operations.py +++ b/src/rdbms/azext_rdbms/mysql/operations/configurations_operations.py @@ -24,7 +24,7 @@ class ConfigurationsOperations(object): :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. - :param deserializer: An objec model deserializer. + :param deserializer: An object model deserializer. :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". """ @@ -45,7 +45,7 @@ def _create_or_update_initial( parameters = models.Configuration(value=value, source=source) # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/configurations/{configurationName}' + url = self.create_or_update.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -166,6 +166,7 @@ def get_long_running_output(response): return AzureOperationPoller( long_running_send, get_long_running_output, get_long_running_status, long_running_operation_timeout) + create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/configurations/{configurationName}'} def get( self, resource_group_name, server_name, configuration_name, custom_headers=None, raw=False, **operation_config): @@ -190,7 +191,7 @@ def get( :raises: :class:`CloudError` """ # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/configurations/{configurationName}' + url = self.get.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -232,6 +233,7 @@ def get( return client_raw_response return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/configurations/{configurationName}'} def list_by_server( self, resource_group_name, server_name, custom_headers=None, raw=False, **operation_config): @@ -257,7 +259,7 @@ def internal_paging(next_link=None, raw=False): if not next_link: # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/configurations' + url = self.list_by_server.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -304,3 +306,4 @@ def internal_paging(next_link=None, raw=False): return client_raw_response return deserialized + list_by_server.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/configurations'} diff --git a/src/rdbms/azext_rdbms/mysql/operations/databases_operations.py b/src/rdbms/azext_rdbms/mysql/operations/databases_operations.py index 8bec63a4b5e..0b34de11fff 100644 --- a/src/rdbms/azext_rdbms/mysql/operations/databases_operations.py +++ b/src/rdbms/azext_rdbms/mysql/operations/databases_operations.py @@ -24,7 +24,7 @@ class DatabasesOperations(object): :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. - :param deserializer: An objec model deserializer. + :param deserializer: An object model deserializer. :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". """ @@ -45,7 +45,7 @@ def _create_or_update_initial( parameters = models.Database(charset=charset, collation=collation) # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/databases/{databaseName}' + url = self.create_or_update.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -168,12 +168,13 @@ def get_long_running_output(response): return AzureOperationPoller( long_running_send, get_long_running_output, get_long_running_status, long_running_operation_timeout) + create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/databases/{databaseName}'} def _delete_initial( self, resource_group_name, server_name, database_name, custom_headers=None, raw=False, **operation_config): # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/databases/{databaseName}' + url = self.delete.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -272,6 +273,7 @@ def get_long_running_output(response): return AzureOperationPoller( long_running_send, get_long_running_output, get_long_running_status, long_running_operation_timeout) + delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/databases/{databaseName}'} def get( self, resource_group_name, server_name, database_name, custom_headers=None, raw=False, **operation_config): @@ -296,7 +298,7 @@ def get( :raises: :class:`CloudError` """ # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/databases/{databaseName}' + url = self.get.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -338,6 +340,7 @@ def get( return client_raw_response return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/databases/{databaseName}'} def list_by_server( self, resource_group_name, server_name, custom_headers=None, raw=False, **operation_config): @@ -363,7 +366,7 @@ def internal_paging(next_link=None, raw=False): if not next_link: # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/databases' + url = self.list_by_server.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -410,3 +413,4 @@ def internal_paging(next_link=None, raw=False): return client_raw_response return deserialized + list_by_server.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/databases'} diff --git a/src/rdbms/azext_rdbms/mysql/operations/firewall_rules_operations.py b/src/rdbms/azext_rdbms/mysql/operations/firewall_rules_operations.py index 7331bde2dc7..4429b21fa9e 100644 --- a/src/rdbms/azext_rdbms/mysql/operations/firewall_rules_operations.py +++ b/src/rdbms/azext_rdbms/mysql/operations/firewall_rules_operations.py @@ -24,7 +24,7 @@ class FirewallRulesOperations(object): :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. - :param deserializer: An objec model deserializer. + :param deserializer: An object model deserializer. :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". """ @@ -45,7 +45,7 @@ def _create_or_update_initial( parameters = models.FirewallRule(start_ip_address=start_ip_address, end_ip_address=end_ip_address) # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/firewallRules/{firewallRuleName}' + url = self.create_or_update.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -170,12 +170,13 @@ def get_long_running_output(response): return AzureOperationPoller( long_running_send, get_long_running_output, get_long_running_status, long_running_operation_timeout) + create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/firewallRules/{firewallRuleName}'} def _delete_initial( self, resource_group_name, server_name, firewall_rule_name, custom_headers=None, raw=False, **operation_config): # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/firewallRules/{firewallRuleName}' + url = self.delete.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -274,6 +275,7 @@ def get_long_running_output(response): return AzureOperationPoller( long_running_send, get_long_running_output, get_long_running_status, long_running_operation_timeout) + delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/firewallRules/{firewallRuleName}'} def get( self, resource_group_name, server_name, firewall_rule_name, custom_headers=None, raw=False, **operation_config): @@ -298,7 +300,7 @@ def get( :raises: :class:`CloudError` """ # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/firewallRules/{firewallRuleName}' + url = self.get.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -340,6 +342,7 @@ def get( return client_raw_response return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/firewallRules/{firewallRuleName}'} def list_by_server( self, resource_group_name, server_name, custom_headers=None, raw=False, **operation_config): @@ -365,7 +368,7 @@ def internal_paging(next_link=None, raw=False): if not next_link: # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/firewallRules' + url = self.list_by_server.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -412,3 +415,4 @@ def internal_paging(next_link=None, raw=False): return client_raw_response return deserialized + list_by_server.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/firewallRules'} diff --git a/src/rdbms/azext_rdbms/mysql/operations/location_based_performance_tier_operations.py b/src/rdbms/azext_rdbms/mysql/operations/location_based_performance_tier_operations.py index f4a79e1fe34..95e2415c7ac 100644 --- a/src/rdbms/azext_rdbms/mysql/operations/location_based_performance_tier_operations.py +++ b/src/rdbms/azext_rdbms/mysql/operations/location_based_performance_tier_operations.py @@ -22,7 +22,7 @@ class LocationBasedPerformanceTierOperations(object): :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. - :param deserializer: An objec model deserializer. + :param deserializer: An object model deserializer. :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". """ @@ -58,7 +58,7 @@ def internal_paging(next_link=None, raw=False): if not next_link: # Construct URL - url = '/subscriptions/{subscriptionId}/providers/Microsoft.DBforMySQL/locations/{locationName}/performanceTiers' + url = self.list.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'locationName': self._serialize.url("location_name", location_name, 'str') @@ -104,3 +104,4 @@ def internal_paging(next_link=None, raw=False): return client_raw_response return deserialized + list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.DBforMySQL/locations/{locationName}/performanceTiers'} diff --git a/src/rdbms/azext_rdbms/mysql/operations/log_files_operations.py b/src/rdbms/azext_rdbms/mysql/operations/log_files_operations.py index f0b57836dd0..cd215197c74 100644 --- a/src/rdbms/azext_rdbms/mysql/operations/log_files_operations.py +++ b/src/rdbms/azext_rdbms/mysql/operations/log_files_operations.py @@ -22,7 +22,7 @@ class LogFilesOperations(object): :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. - :param deserializer: An objec model deserializer. + :param deserializer: An object model deserializer. :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". """ @@ -61,7 +61,7 @@ def internal_paging(next_link=None, raw=False): if not next_link: # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/logFiles' + url = self.list_by_server.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -108,3 +108,4 @@ def internal_paging(next_link=None, raw=False): return client_raw_response return deserialized + list_by_server.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/logFiles'} diff --git a/src/rdbms/azext_rdbms/mysql/operations/operations.py b/src/rdbms/azext_rdbms/mysql/operations/operations.py index 0f5412dadd4..0da8f005aab 100644 --- a/src/rdbms/azext_rdbms/mysql/operations/operations.py +++ b/src/rdbms/azext_rdbms/mysql/operations/operations.py @@ -22,7 +22,7 @@ class Operations(object): :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. - :param deserializer: An objec model deserializer. + :param deserializer: An object model deserializer. :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". """ @@ -52,7 +52,7 @@ def list( :raises: :class:`CloudError` """ # Construct URL - url = '/providers/Microsoft.DBforMySQL/operations' + url = self.list.metadata['url'] # Construct parameters query_parameters = {} @@ -87,3 +87,4 @@ def list( return client_raw_response return deserialized + list.metadata = {'url': '/providers/Microsoft.DBforMySQL/operations'} diff --git a/src/rdbms/azext_rdbms/mysql/operations/servers_operations.py b/src/rdbms/azext_rdbms/mysql/operations/servers_operations.py index 59c12629bbd..068a8483a14 100644 --- a/src/rdbms/azext_rdbms/mysql/operations/servers_operations.py +++ b/src/rdbms/azext_rdbms/mysql/operations/servers_operations.py @@ -24,7 +24,7 @@ class ServersOperations(object): :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. - :param deserializer: An objec model deserializer. + :param deserializer: An object model deserializer. :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". """ @@ -43,7 +43,7 @@ def __init__(self, client, config, serializer, deserializer): def _create_initial( self, resource_group_name, server_name, parameters, custom_headers=None, raw=False, **operation_config): # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}' + url = self.create.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -161,12 +161,13 @@ def get_long_running_output(response): return AzureOperationPoller( long_running_send, get_long_running_output, get_long_running_status, long_running_operation_timeout) + create.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}'} def _update_initial( self, resource_group_name, server_name, parameters, custom_headers=None, raw=False, **operation_config): # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}' + url = self.update.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -282,12 +283,13 @@ def get_long_running_output(response): return AzureOperationPoller( long_running_send, get_long_running_output, get_long_running_status, long_running_operation_timeout) + update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}'} def _delete_initial( self, resource_group_name, server_name, custom_headers=None, raw=False, **operation_config): # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}' + url = self.delete.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -382,6 +384,7 @@ def get_long_running_output(response): return AzureOperationPoller( long_running_send, get_long_running_output, get_long_running_status, long_running_operation_timeout) + delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}'} def get( self, resource_group_name, server_name, custom_headers=None, raw=False, **operation_config): @@ -404,7 +407,7 @@ def get( :raises: :class:`CloudError` """ # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}' + url = self.get.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -445,6 +448,7 @@ def get( return client_raw_response return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}'} def list_by_resource_group( self, resource_group_name, custom_headers=None, raw=False, **operation_config): @@ -468,7 +472,7 @@ def internal_paging(next_link=None, raw=False): if not next_link: # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers' + url = self.list_by_resource_group.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str') @@ -514,6 +518,7 @@ def internal_paging(next_link=None, raw=False): return client_raw_response return deserialized + list_by_resource_group.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers'} def list( self, custom_headers=None, raw=False, **operation_config): @@ -533,7 +538,7 @@ def internal_paging(next_link=None, raw=False): if not next_link: # Construct URL - url = '/subscriptions/{subscriptionId}/providers/Microsoft.DBforMySQL/servers' + url = self.list.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') } @@ -578,3 +583,4 @@ def internal_paging(next_link=None, raw=False): return client_raw_response return deserialized + list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.DBforMySQL/servers'} diff --git a/src/rdbms/azext_rdbms/postgresql/models/__init__.py b/src/rdbms/azext_rdbms/postgresql/models/__init__.py index 95ce897ede1..6f36d52a362 100644 --- a/src/rdbms/azext_rdbms/postgresql/models/__init__.py +++ b/src/rdbms/azext_rdbms/postgresql/models/__init__.py @@ -15,7 +15,6 @@ from .server_properties_for_create import ServerPropertiesForCreate from .server_properties_for_default_create import ServerPropertiesForDefaultCreate from .server_properties_for_restore import ServerPropertiesForRestore -from .server_properties_for_geo_restore import ServerPropertiesForGeoRestore from .sku import Sku from .server import Server from .server_for_create import ServerForCreate @@ -53,7 +52,6 @@ 'ServerPropertiesForCreate', 'ServerPropertiesForDefaultCreate', 'ServerPropertiesForRestore', - 'ServerPropertiesForGeoRestore', 'Sku', 'Server', 'ServerForCreate', diff --git a/src/rdbms/azext_rdbms/postgresql/models/log_file.py b/src/rdbms/azext_rdbms/postgresql/models/log_file.py index 3ec6e29b9c5..7ca4f91fe2a 100644 --- a/src/rdbms/azext_rdbms/postgresql/models/log_file.py +++ b/src/rdbms/azext_rdbms/postgresql/models/log_file.py @@ -28,10 +28,10 @@ class LogFile(ProxyResource): :type log_file_name: str :param size_in_kb: Size of the log file. :type size_in_kb: long - :param created_time: Creation timestamp of the log file. - :type created_time: datetime - :param last_modified_time: Last modified timestamp of the log file. - :type last_modified_time: datetime + :ivar created_time: Creation timestamp of the log file. + :vartype created_time: datetime + :ivar last_modified_time: Last modified timestamp of the log file. + :vartype last_modified_time: datetime :param log_file_type: Type of the log file. :type log_file_type: str :param url: The url to download the log file from. @@ -42,6 +42,8 @@ class LogFile(ProxyResource): 'id': {'readonly': True}, 'name': {'readonly': True}, 'type': {'readonly': True}, + 'created_time': {'readonly': True}, + 'last_modified_time': {'readonly': True}, } _attribute_map = { @@ -56,11 +58,11 @@ class LogFile(ProxyResource): 'url': {'key': 'properties.url', 'type': 'str'}, } - def __init__(self, log_file_name=None, size_in_kb=None, created_time=None, last_modified_time=None, log_file_type=None, url=None): + def __init__(self, log_file_name=None, size_in_kb=None, log_file_type=None, url=None): super(LogFile, self).__init__() self.log_file_name = log_file_name self.size_in_kb = size_in_kb - self.created_time = created_time - self.last_modified_time = last_modified_time + self.created_time = None + self.last_modified_time = None self.log_file_type = log_file_type self.url = url diff --git a/src/rdbms/azext_rdbms/postgresql/models/server_properties_for_create.py b/src/rdbms/azext_rdbms/postgresql/models/server_properties_for_create.py index 8101e6cf31a..28dbe618494 100644 --- a/src/rdbms/azext_rdbms/postgresql/models/server_properties_for_create.py +++ b/src/rdbms/azext_rdbms/postgresql/models/server_properties_for_create.py @@ -17,7 +17,7 @@ class ServerPropertiesForCreate(Model): You probably want to use the sub-classes and not this class directly. Known sub-classes are: ServerPropertiesForDefaultCreate, - ServerPropertiesForRestore, ServerPropertiesForGeoRestore + ServerPropertiesForRestore :param version: Server version. Possible values include: '9.5', '9.6' :type version: str or ~azure.mgmt.rdbms.postgresql.models.ServerVersion @@ -43,7 +43,7 @@ class ServerPropertiesForCreate(Model): } _subtype_map = { - 'create_mode': {'Default': 'ServerPropertiesForDefaultCreate', 'PointInTimeRestore': 'ServerPropertiesForRestore', 'GeoRestore': 'ServerPropertiesForGeoRestore'} + 'create_mode': {'Default': 'ServerPropertiesForDefaultCreate', 'PointInTimeRestore': 'ServerPropertiesForRestore'} } def __init__(self, version=None, ssl_enforcement=None, storage_profile=None): diff --git a/src/rdbms/azext_rdbms/postgresql/models/server_properties_for_geo_restore.py b/src/rdbms/azext_rdbms/postgresql/models/server_properties_for_geo_restore.py deleted file mode 100644 index 1e78faee183..00000000000 --- a/src/rdbms/azext_rdbms/postgresql/models/server_properties_for_geo_restore.py +++ /dev/null @@ -1,48 +0,0 @@ -# coding=utf-8 -# -------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# -# Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. -# -------------------------------------------------------------------------- - -from .server_properties_for_create import ServerPropertiesForCreate - - -class ServerPropertiesForGeoRestore(ServerPropertiesForCreate): - """The properties to a new server by restoring from a geo replicated backup. - - :param version: Server version. Possible values include: '9.5', '9.6' - :type version: str or ~azure.mgmt.rdbms.postgresql.models.ServerVersion - :param ssl_enforcement: Enable ssl enforcement or not when connect to - server. Possible values include: 'Enabled', 'Disabled' - :type ssl_enforcement: str or - ~azure.mgmt.rdbms.postgresql.models.SslEnforcementEnum - :param storage_profile: Storage profile of a server. - :type storage_profile: ~azure.mgmt.rdbms.postgresql.models.StorageProfile - :param create_mode: Constant filled by server. - :type create_mode: str - :param source_server_id: The source server id to restore from. - :type source_server_id: str - """ - - _validation = { - 'create_mode': {'required': True}, - 'source_server_id': {'required': True}, - } - - _attribute_map = { - 'version': {'key': 'version', 'type': 'str'}, - 'ssl_enforcement': {'key': 'sslEnforcement', 'type': 'SslEnforcementEnum'}, - 'storage_profile': {'key': 'storageProfile', 'type': 'StorageProfile'}, - 'create_mode': {'key': 'createMode', 'type': 'str'}, - 'source_server_id': {'key': 'sourceServerId', 'type': 'str'}, - } - - def __init__(self, source_server_id, version=None, ssl_enforcement=None, storage_profile=None): - super(ServerPropertiesForGeoRestore, self).__init__(version=version, ssl_enforcement=ssl_enforcement, storage_profile=storage_profile) - self.source_server_id = source_server_id - self.create_mode = 'GeoRestore' diff --git a/src/rdbms/azext_rdbms/postgresql/operations/check_name_availability_operations.py b/src/rdbms/azext_rdbms/postgresql/operations/check_name_availability_operations.py index 6e5d92c0daf..0063ef2f00b 100644 --- a/src/rdbms/azext_rdbms/postgresql/operations/check_name_availability_operations.py +++ b/src/rdbms/azext_rdbms/postgresql/operations/check_name_availability_operations.py @@ -22,7 +22,7 @@ class CheckNameAvailabilityOperations(object): :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. - :param deserializer: An objec model deserializer. + :param deserializer: An object model deserializer. :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". """ @@ -58,7 +58,7 @@ def execute( name_availability_request = models.NameAvailabilityRequest(name=name, type=type) # Construct URL - url = '/subscriptions/{subscriptionId}/providers/Microsoft.DBforPostgreSQL/checkNameAvailability' + url = self.execute.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') } @@ -101,3 +101,4 @@ def execute( return client_raw_response return deserialized + execute.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.DBforPostgreSQL/checkNameAvailability'} diff --git a/src/rdbms/azext_rdbms/postgresql/operations/configurations_operations.py b/src/rdbms/azext_rdbms/postgresql/operations/configurations_operations.py index d0962a30c0a..3b05def60d9 100644 --- a/src/rdbms/azext_rdbms/postgresql/operations/configurations_operations.py +++ b/src/rdbms/azext_rdbms/postgresql/operations/configurations_operations.py @@ -24,7 +24,7 @@ class ConfigurationsOperations(object): :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. - :param deserializer: An objec model deserializer. + :param deserializer: An object model deserializer. :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". """ @@ -45,7 +45,7 @@ def _create_or_update_initial( parameters = models.Configuration(value=value, source=source) # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/configurations/{configurationName}' + url = self.create_or_update.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -166,6 +166,7 @@ def get_long_running_output(response): return AzureOperationPoller( long_running_send, get_long_running_output, get_long_running_status, long_running_operation_timeout) + create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/configurations/{configurationName}'} def get( self, resource_group_name, server_name, configuration_name, custom_headers=None, raw=False, **operation_config): @@ -190,7 +191,7 @@ def get( :raises: :class:`CloudError` """ # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/configurations/{configurationName}' + url = self.get.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -232,6 +233,7 @@ def get( return client_raw_response return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/configurations/{configurationName}'} def list_by_server( self, resource_group_name, server_name, custom_headers=None, raw=False, **operation_config): @@ -257,7 +259,7 @@ def internal_paging(next_link=None, raw=False): if not next_link: # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/configurations' + url = self.list_by_server.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -304,3 +306,4 @@ def internal_paging(next_link=None, raw=False): return client_raw_response return deserialized + list_by_server.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/configurations'} diff --git a/src/rdbms/azext_rdbms/postgresql/operations/databases_operations.py b/src/rdbms/azext_rdbms/postgresql/operations/databases_operations.py index 46dc7aa3530..dd1a3ed9675 100644 --- a/src/rdbms/azext_rdbms/postgresql/operations/databases_operations.py +++ b/src/rdbms/azext_rdbms/postgresql/operations/databases_operations.py @@ -24,7 +24,7 @@ class DatabasesOperations(object): :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. - :param deserializer: An objec model deserializer. + :param deserializer: An object model deserializer. :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". """ @@ -45,7 +45,7 @@ def _create_or_update_initial( parameters = models.Database(charset=charset, collation=collation) # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/databases/{databaseName}' + url = self.create_or_update.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -168,12 +168,13 @@ def get_long_running_output(response): return AzureOperationPoller( long_running_send, get_long_running_output, get_long_running_status, long_running_operation_timeout) + create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/databases/{databaseName}'} def _delete_initial( self, resource_group_name, server_name, database_name, custom_headers=None, raw=False, **operation_config): # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/databases/{databaseName}' + url = self.delete.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -272,6 +273,7 @@ def get_long_running_output(response): return AzureOperationPoller( long_running_send, get_long_running_output, get_long_running_status, long_running_operation_timeout) + delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/databases/{databaseName}'} def get( self, resource_group_name, server_name, database_name, custom_headers=None, raw=False, **operation_config): @@ -296,7 +298,7 @@ def get( :raises: :class:`CloudError` """ # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/databases/{databaseName}' + url = self.get.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -338,6 +340,7 @@ def get( return client_raw_response return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/databases/{databaseName}'} def list_by_server( self, resource_group_name, server_name, custom_headers=None, raw=False, **operation_config): @@ -363,7 +366,7 @@ def internal_paging(next_link=None, raw=False): if not next_link: # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/databases' + url = self.list_by_server.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -410,3 +413,4 @@ def internal_paging(next_link=None, raw=False): return client_raw_response return deserialized + list_by_server.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/databases'} diff --git a/src/rdbms/azext_rdbms/postgresql/operations/firewall_rules_operations.py b/src/rdbms/azext_rdbms/postgresql/operations/firewall_rules_operations.py index 29dc58ef6d5..07d47bda47e 100644 --- a/src/rdbms/azext_rdbms/postgresql/operations/firewall_rules_operations.py +++ b/src/rdbms/azext_rdbms/postgresql/operations/firewall_rules_operations.py @@ -24,7 +24,7 @@ class FirewallRulesOperations(object): :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. - :param deserializer: An objec model deserializer. + :param deserializer: An object model deserializer. :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". """ @@ -45,7 +45,7 @@ def _create_or_update_initial( parameters = models.FirewallRule(start_ip_address=start_ip_address, end_ip_address=end_ip_address) # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/firewallRules/{firewallRuleName}' + url = self.create_or_update.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -170,12 +170,13 @@ def get_long_running_output(response): return AzureOperationPoller( long_running_send, get_long_running_output, get_long_running_status, long_running_operation_timeout) + create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/firewallRules/{firewallRuleName}'} def _delete_initial( self, resource_group_name, server_name, firewall_rule_name, custom_headers=None, raw=False, **operation_config): # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/firewallRules/{firewallRuleName}' + url = self.delete.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -274,6 +275,7 @@ def get_long_running_output(response): return AzureOperationPoller( long_running_send, get_long_running_output, get_long_running_status, long_running_operation_timeout) + delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/firewallRules/{firewallRuleName}'} def get( self, resource_group_name, server_name, firewall_rule_name, custom_headers=None, raw=False, **operation_config): @@ -298,7 +300,7 @@ def get( :raises: :class:`CloudError` """ # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/firewallRules/{firewallRuleName}' + url = self.get.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -340,6 +342,7 @@ def get( return client_raw_response return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/firewallRules/{firewallRuleName}'} def list_by_server( self, resource_group_name, server_name, custom_headers=None, raw=False, **operation_config): @@ -365,7 +368,7 @@ def internal_paging(next_link=None, raw=False): if not next_link: # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/firewallRules' + url = self.list_by_server.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -412,3 +415,4 @@ def internal_paging(next_link=None, raw=False): return client_raw_response return deserialized + list_by_server.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/firewallRules'} diff --git a/src/rdbms/azext_rdbms/postgresql/operations/location_based_performance_tier_operations.py b/src/rdbms/azext_rdbms/postgresql/operations/location_based_performance_tier_operations.py index de2bfa29e87..939debda4c2 100644 --- a/src/rdbms/azext_rdbms/postgresql/operations/location_based_performance_tier_operations.py +++ b/src/rdbms/azext_rdbms/postgresql/operations/location_based_performance_tier_operations.py @@ -22,7 +22,7 @@ class LocationBasedPerformanceTierOperations(object): :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. - :param deserializer: An objec model deserializer. + :param deserializer: An object model deserializer. :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". """ @@ -58,7 +58,7 @@ def internal_paging(next_link=None, raw=False): if not next_link: # Construct URL - url = '/subscriptions/{subscriptionId}/providers/Microsoft.DBforPostgreSQL/locations/{locationName}/performanceTiers' + url = self.list.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'locationName': self._serialize.url("location_name", location_name, 'str') @@ -104,3 +104,4 @@ def internal_paging(next_link=None, raw=False): return client_raw_response return deserialized + list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.DBforPostgreSQL/locations/{locationName}/performanceTiers'} diff --git a/src/rdbms/azext_rdbms/postgresql/operations/log_files_operations.py b/src/rdbms/azext_rdbms/postgresql/operations/log_files_operations.py index e334db78acd..69dc04d78b0 100644 --- a/src/rdbms/azext_rdbms/postgresql/operations/log_files_operations.py +++ b/src/rdbms/azext_rdbms/postgresql/operations/log_files_operations.py @@ -22,7 +22,7 @@ class LogFilesOperations(object): :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. - :param deserializer: An objec model deserializer. + :param deserializer: An object model deserializer. :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". """ @@ -61,7 +61,7 @@ def internal_paging(next_link=None, raw=False): if not next_link: # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/logFiles' + url = self.list_by_server.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -108,3 +108,4 @@ def internal_paging(next_link=None, raw=False): return client_raw_response return deserialized + list_by_server.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/logFiles'} diff --git a/src/rdbms/azext_rdbms/postgresql/operations/operations.py b/src/rdbms/azext_rdbms/postgresql/operations/operations.py index 05c5652b7f8..35bad449165 100644 --- a/src/rdbms/azext_rdbms/postgresql/operations/operations.py +++ b/src/rdbms/azext_rdbms/postgresql/operations/operations.py @@ -22,7 +22,7 @@ class Operations(object): :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. - :param deserializer: An objec model deserializer. + :param deserializer: An object model deserializer. :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". """ @@ -52,7 +52,7 @@ def list( :raises: :class:`CloudError` """ # Construct URL - url = '/providers/Microsoft.DBforPostgreSQL/operations' + url = self.list.metadata['url'] # Construct parameters query_parameters = {} @@ -87,3 +87,4 @@ def list( return client_raw_response return deserialized + list.metadata = {'url': '/providers/Microsoft.DBforPostgreSQL/operations'} diff --git a/src/rdbms/azext_rdbms/postgresql/operations/servers_operations.py b/src/rdbms/azext_rdbms/postgresql/operations/servers_operations.py index f88a396f279..d16cc5eb2f4 100644 --- a/src/rdbms/azext_rdbms/postgresql/operations/servers_operations.py +++ b/src/rdbms/azext_rdbms/postgresql/operations/servers_operations.py @@ -24,7 +24,7 @@ class ServersOperations(object): :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. - :param deserializer: An objec model deserializer. + :param deserializer: An object model deserializer. :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". """ @@ -43,7 +43,7 @@ def __init__(self, client, config, serializer, deserializer): def _create_initial( self, resource_group_name, server_name, parameters, custom_headers=None, raw=False, **operation_config): # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}' + url = self.create.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -160,12 +160,13 @@ def get_long_running_output(response): return AzureOperationPoller( long_running_send, get_long_running_output, get_long_running_status, long_running_operation_timeout) + create.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}'} def _update_initial( self, resource_group_name, server_name, parameters, custom_headers=None, raw=False, **operation_config): # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}' + url = self.update.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -281,12 +282,13 @@ def get_long_running_output(response): return AzureOperationPoller( long_running_send, get_long_running_output, get_long_running_status, long_running_operation_timeout) + update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}'} def _delete_initial( self, resource_group_name, server_name, custom_headers=None, raw=False, **operation_config): # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}' + url = self.delete.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -381,6 +383,7 @@ def get_long_running_output(response): return AzureOperationPoller( long_running_send, get_long_running_output, get_long_running_status, long_running_operation_timeout) + delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}'} def get( self, resource_group_name, server_name, custom_headers=None, raw=False, **operation_config): @@ -403,7 +406,7 @@ def get( :raises: :class:`CloudError` """ # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}' + url = self.get.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), @@ -444,6 +447,7 @@ def get( return client_raw_response return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}'} def list_by_resource_group( self, resource_group_name, custom_headers=None, raw=False, **operation_config): @@ -467,7 +471,7 @@ def internal_paging(next_link=None, raw=False): if not next_link: # Construct URL - url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers' + url = self.list_by_resource_group.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str') @@ -513,6 +517,7 @@ def internal_paging(next_link=None, raw=False): return client_raw_response return deserialized + list_by_resource_group.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers'} def list( self, custom_headers=None, raw=False, **operation_config): @@ -532,7 +537,7 @@ def internal_paging(next_link=None, raw=False): if not next_link: # Construct URL - url = '/subscriptions/{subscriptionId}/providers/Microsoft.DBforPostgreSQL/servers' + url = self.list.metadata['url'] path_format_arguments = { 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') } @@ -577,3 +582,4 @@ def internal_paging(next_link=None, raw=False): return client_raw_response return deserialized + list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.DBforPostgreSQL/servers'} diff --git a/src/rdbms/azext_rdbms/tests/recordings/test_mysql_proxy_resources_mgmt.yaml b/src/rdbms/azext_rdbms/tests/recordings/test_mysql_proxy_resources_mgmt.yaml index e6a06b1d7cd..f0d9d900fa5 100644 --- a/src/rdbms/azext_rdbms/tests/recordings/test_mysql_proxy_resources_mgmt.yaml +++ b/src/rdbms/azext_rdbms/tests/recordings/test_mysql_proxy_resources_mgmt.yaml @@ -9,8 +9,8 @@ interactions: Content-Length: ['50'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -20,12 +20,12 @@ interactions: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:17:50 GMT'] + date: ['Wed, 28 Feb 2018 19:36:48 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'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: body: '{"sku": {"name": "GP_Gen4_2"}, "properties": {"storageProfile": {}, "createMode": @@ -39,26 +39,26 @@ interactions: Content-Length: ['204'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-22T23:17:51.683Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T19:36:49.467Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/187f1fb0-82eb-48ec-be80-cb14b0f7da52?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1063ddc3-27a2-45ad-a84e-dfd916c3f572?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['74'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:17:52 GMT'] + date: ['Wed, 28 Feb 2018 19:36:49 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/187f1fb0-82eb-48ec-be80-cb14b0f7da52?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/1063ddc3-27a2-45ad-a84e-dfd916c3f572?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -68,17 +68,17 @@ interactions: CommandName: [mysql server create] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/187f1fb0-82eb-48ec-be80-cb14b0f7da52?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1063ddc3-27a2-45ad-a84e-dfd916c3f572?api-version=2017-12-01-preview response: - body: {string: '{"name":"187f1fb0-82eb-48ec-be80-cb14b0f7da52","status":"InProgress","startTime":"2018-02-22T23:17:51.683Z"}'} + body: {string: '{"name":"1063ddc3-27a2-45ad-a84e-dfd916c3f572","status":"InProgress","startTime":"2018-02-28T19:36:49.467Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:18:53 GMT'] + date: ['Wed, 28 Feb 2018 19:37:51 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -95,17 +95,17 @@ interactions: CommandName: [mysql server create] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/187f1fb0-82eb-48ec-be80-cb14b0f7da52?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/1063ddc3-27a2-45ad-a84e-dfd916c3f572?api-version=2017-12-01-preview response: - body: {string: '{"name":"187f1fb0-82eb-48ec-be80-cb14b0f7da52","status":"Succeeded","startTime":"2018-02-22T23:17:51.683Z"}'} + body: {string: '{"name":"1063ddc3-27a2-45ad-a84e-dfd916c3f572","status":"Succeeded","startTime":"2018-02-28T19:36:49.467Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:19:54 GMT'] + date: ['Wed, 28 Feb 2018 19:38:52 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -122,17 +122,17 @@ interactions: CommandName: [mysql server create] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.mysql.database.azure.com","earliestRestoreDate":"2018-02-22T23:27:52.057+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforMySQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.mysql.database.azure.com","earliestRestoreDate":"2018-02-28T19:46:49.813+00:00","replicationRole":"","primaryServerId":""},"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: ['892'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:19:55 GMT'] + date: ['Wed, 28 Feb 2018 19:38:54 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -151,26 +151,26 @@ interactions: Content-Length: ['80'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-22T23:19:58.133Z"}'} + body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-28T19:38:55.6Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/3c311a83-5851-44da-9036-6413f398badf?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/49daec2d-3037-49ca-90b4-3b3770f41ebb?api-version=2017-12-01-preview'] cache-control: [no-cache] - content-length: ['87'] + content-length: ['85'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:19:57 GMT'] + date: ['Wed, 28 Feb 2018 19:38:56 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/3c311a83-5851-44da-9036-6413f398badf?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/49daec2d-3037-49ca-90b4-3b3770f41ebb?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -180,17 +180,17 @@ interactions: CommandName: [mysql server firewall-rule create] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/3c311a83-5851-44da-9036-6413f398badf?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/49daec2d-3037-49ca-90b4-3b3770f41ebb?api-version=2017-12-01-preview response: - body: {string: '{"name":"3c311a83-5851-44da-9036-6413f398badf","status":"Succeeded","startTime":"2018-02-22T23:19:58.133Z"}'} + body: {string: '{"name":"49daec2d-3037-49ca-90b4-3b3770f41ebb","status":"Succeeded","startTime":"2018-02-28T19:38:55.6Z"}'} headers: cache-control: [no-cache] - content-length: ['107'] + content-length: ['105'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:20:14 GMT'] + date: ['Wed, 28 Feb 2018 19:39:12 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -207,8 +207,8 @@ interactions: CommandName: [mysql server firewall-rule create] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: @@ -217,7 +217,7 @@ interactions: cache-control: [no-cache] content-length: ['416'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:20:16 GMT'] + date: ['Wed, 28 Feb 2018 19:39:13 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -235,8 +235,8 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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/firewallRules/rule1?api-version=2017-12-01-preview @@ -246,7 +246,7 @@ interactions: cache-control: [no-cache] content-length: ['416'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:20:19 GMT'] + date: ['Wed, 28 Feb 2018 19:39:15 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -264,8 +264,8 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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/firewallRules/rule1?api-version=2017-12-01-preview @@ -275,7 +275,7 @@ interactions: cache-control: [no-cache] content-length: ['416'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:20:20 GMT'] + date: ['Wed, 28 Feb 2018 19:39:17 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -294,26 +294,26 @@ interactions: Content-Length: ['88'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-22T23:20:22.483Z"}'} + body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-28T19:39:18.753Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/be7ef3b9-6321-448e-9d40-01a72d0c018a?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/5158af10-b3a0-461d-bc90-27781406b66a?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['87'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:20:22 GMT'] + date: ['Wed, 28 Feb 2018 19:39:19 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/be7ef3b9-6321-448e-9d40-01a72d0c018a?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/5158af10-b3a0-461d-bc90-27781406b66a?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 202, message: Accepted} - request: body: null @@ -323,17 +323,17 @@ interactions: CommandName: [mysql server firewall-rule update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/be7ef3b9-6321-448e-9d40-01a72d0c018a?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/5158af10-b3a0-461d-bc90-27781406b66a?api-version=2017-12-01-preview response: - body: {string: '{"name":"be7ef3b9-6321-448e-9d40-01a72d0c018a","status":"Succeeded","startTime":"2018-02-22T23:20:22.483Z"}'} + body: {string: '{"name":"5158af10-b3a0-461d-bc90-27781406b66a","status":"Succeeded","startTime":"2018-02-28T19:39:18.753Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:20:38 GMT'] + date: ['Wed, 28 Feb 2018 19:39:35 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -350,8 +350,8 @@ interactions: CommandName: [mysql server firewall-rule update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: @@ -360,7 +360,7 @@ interactions: cache-control: [no-cache] content-length: ['424'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:20:40 GMT'] + date: ['Wed, 28 Feb 2018 19:39:37 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -378,8 +378,8 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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/firewallRules/rule1?api-version=2017-12-01-preview @@ -389,7 +389,7 @@ interactions: cache-control: [no-cache] content-length: ['424'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:20:41 GMT'] + date: ['Wed, 28 Feb 2018 19:39:39 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -408,26 +408,26 @@ interactions: Content-Length: ['80'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-22T23:20:44.167Z"}'} + body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-28T19:39:41.277Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/51f111f9-8f3a-4be0-91cc-06fb5e6cf907?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/76e5992c-8027-474b-98b9-3f22d5f14591?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['87'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:20:43 GMT'] + date: ['Wed, 28 Feb 2018 19:39:41 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/51f111f9-8f3a-4be0-91cc-06fb5e6cf907?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/76e5992c-8027-474b-98b9-3f22d5f14591?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -437,17 +437,17 @@ interactions: CommandName: [mysql server firewall-rule update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/51f111f9-8f3a-4be0-91cc-06fb5e6cf907?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/76e5992c-8027-474b-98b9-3f22d5f14591?api-version=2017-12-01-preview response: - body: {string: '{"name":"51f111f9-8f3a-4be0-91cc-06fb5e6cf907","status":"Succeeded","startTime":"2018-02-22T23:20:44.167Z"}'} + body: {string: '{"name":"76e5992c-8027-474b-98b9-3f22d5f14591","status":"Succeeded","startTime":"2018-02-28T19:39:41.277Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:21:00 GMT'] + date: ['Wed, 28 Feb 2018 19:39:57 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -464,8 +464,8 @@ interactions: CommandName: [mysql server firewall-rule update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: @@ -474,7 +474,7 @@ interactions: cache-control: [no-cache] content-length: ['416'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:21:02 GMT'] + date: ['Wed, 28 Feb 2018 19:39:59 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -492,8 +492,8 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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/firewallRules/rule1?api-version=2017-12-01-preview @@ -503,7 +503,7 @@ interactions: cache-control: [no-cache] content-length: ['416'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:21:05 GMT'] + date: ['Wed, 28 Feb 2018 19:40:01 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -522,26 +522,26 @@ interactions: Content-Length: ['80'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-22T23:21:06.237Z"}'} + body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-28T19:40:02.913Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/69bff859-b02d-47ee-a5a0-4f0156284376?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/45c9f0cb-0e6e-472c-bc58-c11b29766f95?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['87'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:21:06 GMT'] + date: ['Wed, 28 Feb 2018 19:40:03 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/69bff859-b02d-47ee-a5a0-4f0156284376?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/45c9f0cb-0e6e-472c-bc58-c11b29766f95?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} - request: body: null @@ -551,17 +551,17 @@ interactions: CommandName: [mysql server firewall-rule update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/69bff859-b02d-47ee-a5a0-4f0156284376?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/45c9f0cb-0e6e-472c-bc58-c11b29766f95?api-version=2017-12-01-preview response: - body: {string: '{"name":"69bff859-b02d-47ee-a5a0-4f0156284376","status":"Succeeded","startTime":"2018-02-22T23:21:06.237Z"}'} + body: {string: '{"name":"45c9f0cb-0e6e-472c-bc58-c11b29766f95","status":"Succeeded","startTime":"2018-02-28T19:40:02.913Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:21:22 GMT'] + date: ['Wed, 28 Feb 2018 19:40:19 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -578,8 +578,8 @@ interactions: CommandName: [mysql server firewall-rule update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: @@ -588,7 +588,7 @@ interactions: cache-control: [no-cache] content-length: ['416'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:21:24 GMT'] + date: ['Wed, 28 Feb 2018 19:40:20 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -607,26 +607,26 @@ interactions: Content-Length: ['88'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-22T23:21:26.31Z"}'} + body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-28T19:40:22.81Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/d1f2f3b8-2edd-4047-85a5-13e209ec4cb9?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/aa2e9f31-6700-4a1e-ba8b-43e83a29b481?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['86'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:21:26 GMT'] + date: ['Wed, 28 Feb 2018 19:40:23 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/d1f2f3b8-2edd-4047-85a5-13e209ec4cb9?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/aa2e9f31-6700-4a1e-ba8b-43e83a29b481?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} - request: body: null @@ -636,17 +636,17 @@ interactions: CommandName: [mysql server firewall-rule create] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/d1f2f3b8-2edd-4047-85a5-13e209ec4cb9?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/aa2e9f31-6700-4a1e-ba8b-43e83a29b481?api-version=2017-12-01-preview response: - body: {string: '{"name":"d1f2f3b8-2edd-4047-85a5-13e209ec4cb9","status":"Succeeded","startTime":"2018-02-22T23:21:26.31Z"}'} + body: {string: '{"name":"aa2e9f31-6700-4a1e-ba8b-43e83a29b481","status":"Succeeded","startTime":"2018-02-28T19:40:22.81Z"}'} headers: cache-control: [no-cache] content-length: ['106'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:21:43 GMT'] + date: ['Wed, 28 Feb 2018 19:40:39 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -663,8 +663,8 @@ interactions: CommandName: [mysql server firewall-rule create] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: @@ -673,7 +673,7 @@ interactions: cache-control: [no-cache] content-length: ['424'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:21:44 GMT'] + date: ['Wed, 28 Feb 2018 19:40:45 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -691,8 +691,8 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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/firewallRules?api-version=2017-12-01-preview @@ -702,7 +702,7 @@ interactions: cache-control: [no-cache] content-length: ['853'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:21:45 GMT'] + date: ['Wed, 28 Feb 2018 19:40:49 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -721,21 +721,21 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"DropElasticServerFirewallRule","startTime":"2018-02-22T23:21:47.54Z"}'} + body: {string: '{"operation":"DropElasticServerFirewallRule","startTime":"2018-02-28T19:40:50.147Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e73f6f42-fd39-43c4-af29-92def49de0e6?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/01c65259-5616-4917-a7f8-01a4b570e6cd?api-version=2017-12-01-preview'] cache-control: [no-cache] - content-length: ['83'] + content-length: ['84'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:21:47 GMT'] + date: ['Wed, 28 Feb 2018 19:40:50 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/e73f6f42-fd39-43c4-af29-92def49de0e6?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/01c65259-5616-4917-a7f8-01a4b570e6cd?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -750,17 +750,17 @@ interactions: CommandName: [mysql server firewall-rule delete] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e73f6f42-fd39-43c4-af29-92def49de0e6?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/01c65259-5616-4917-a7f8-01a4b570e6cd?api-version=2017-12-01-preview response: - body: {string: '{"name":"e73f6f42-fd39-43c4-af29-92def49de0e6","status":"Succeeded","startTime":"2018-02-22T23:21:47.54Z"}'} + body: {string: '{"name":"01c65259-5616-4917-a7f8-01a4b570e6cd","status":"Succeeded","startTime":"2018-02-28T19:40:50.147Z"}'} headers: cache-control: [no-cache] - content-length: ['106'] + content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:22:03 GMT'] + date: ['Wed, 28 Feb 2018 19:41:06 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -778,8 +778,8 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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/firewallRules?api-version=2017-12-01-preview @@ -789,7 +789,7 @@ interactions: cache-control: [no-cache] content-length: ['436'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:22:06 GMT'] + date: ['Wed, 28 Feb 2018 19:41:09 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -808,26 +808,26 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"DropElasticServerFirewallRule","startTime":"2018-02-22T23:22:07.607Z"}'} + body: {string: '{"operation":"DropElasticServerFirewallRule","startTime":"2018-02-28T19:41:10.413Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e2526200-9a1a-400a-8c9f-1832fc9464b9?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/17339501-1322-4872-86ed-c51944553c0e?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['84'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:22:07 GMT'] + date: ['Wed, 28 Feb 2018 19:41:11 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/e2526200-9a1a-400a-8c9f-1832fc9464b9?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/17339501-1322-4872-86ed-c51944553c0e?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -837,17 +837,17 @@ interactions: CommandName: [mysql server firewall-rule delete] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e2526200-9a1a-400a-8c9f-1832fc9464b9?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/17339501-1322-4872-86ed-c51944553c0e?api-version=2017-12-01-preview response: - body: {string: '{"name":"e2526200-9a1a-400a-8c9f-1832fc9464b9","status":"Succeeded","startTime":"2018-02-22T23:22:07.607Z"}'} + body: {string: '{"name":"17339501-1322-4872-86ed-c51944553c0e","status":"Succeeded","startTime":"2018-02-28T19:41:10.413Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:22:24 GMT'] + date: ['Wed, 28 Feb 2018 19:41:27 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -865,8 +865,8 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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/firewallRules?api-version=2017-12-01-preview @@ -876,7 +876,7 @@ interactions: cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:22:26 GMT'] + date: ['Wed, 28 Feb 2018 19:41:29 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -894,18 +894,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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/databases?api-version=2017-12-01-preview response: - body: {string: '{"value":[{"properties":{"charset":"utf8","collation":"utf8_general_ci"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/databases/information_schema","name":"information_schema","type":"Microsoft.DBforMySQL/servers/databases"},{"properties":{"charset":"latin1","collation":"latin1_swedish_ci"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/databases/mysql","name":"mysql","type":"Microsoft.DBforMySQL/servers/databases"},{"properties":{"charset":"utf8","collation":"utf8_general_ci"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/databases/performance_schema","name":"performance_schema","type":"Microsoft.DBforMySQL/servers/databases"}]}'} + body: {string: '{"value":[{"properties":{"charset":"utf8","collation":"utf8_general_ci"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/databases/information_schema","name":"information_schema","type":"Microsoft.DBforMySQL/servers/databases"},{"properties":{"charset":"latin1","collation":"latin1_swedish_ci"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/databases/mysql","name":"mysql","type":"Microsoft.DBforMySQL/servers/databases"},{"properties":{"charset":"utf8","collation":"utf8_general_ci"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/databases/performance_schema","name":"performance_schema","type":"Microsoft.DBforMySQL/servers/databases"},{"properties":{"charset":"utf8","collation":"utf8_general_ci"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/databases/sys","name":"sys","type":"Microsoft.DBforMySQL/servers/databases"}]}'} headers: cache-control: [no-cache] - content-length: ['1255'] + content-length: ['1647'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:22:27 GMT'] + date: ['Wed, 28 Feb 2018 19:41:32 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -923,8 +923,8 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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/configurations/log_slow_admin_statements?api-version=2017-12-01-preview @@ -935,7 +935,7 @@ interactions: cache-control: [no-cache] content-length: ['613'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:22:30 GMT'] + date: ['Wed, 28 Feb 2018 19:41:35 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -954,26 +954,26 @@ interactions: Content-Length: ['31'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpdateElasticServerConfig","startTime":"2018-02-22T23:22:32.09Z"}'} + body: {string: '{"operation":"UpdateElasticServerConfig","startTime":"2018-02-28T19:41:36.893Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/4360bf63-0004-4a74-a22b-066b7749ce4d?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/846d94d1-1cd0-436b-8701-5c722f1b0955?api-version=2017-12-01-preview'] cache-control: [no-cache] - content-length: ['79'] + content-length: ['80'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:22:32 GMT'] + date: ['Wed, 28 Feb 2018 19:41:37 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/4360bf63-0004-4a74-a22b-066b7749ce4d?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/846d94d1-1cd0-436b-8701-5c722f1b0955?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -983,17 +983,17 @@ interactions: CommandName: [mysql server configuration set] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/4360bf63-0004-4a74-a22b-066b7749ce4d?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/846d94d1-1cd0-436b-8701-5c722f1b0955?api-version=2017-12-01-preview response: - body: {string: '{"name":"4360bf63-0004-4a74-a22b-066b7749ce4d","status":"Succeeded","startTime":"2018-02-22T23:22:32.09Z"}'} + body: {string: '{"name":"846d94d1-1cd0-436b-8701-5c722f1b0955","status":"Succeeded","startTime":"2018-02-28T19:41:36.893Z"}'} headers: cache-control: [no-cache] - content-length: ['106'] + content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:22:48 GMT'] + date: ['Wed, 28 Feb 2018 19:41:53 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1010,8 +1010,8 @@ interactions: CommandName: [mysql server configuration set] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: @@ -1021,7 +1021,7 @@ interactions: cache-control: [no-cache] content-length: ['611'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:22:49 GMT'] + date: ['Wed, 28 Feb 2018 19:41:55 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1040,26 +1040,26 @@ interactions: Content-Length: ['44'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpdateElasticServerConfig","startTime":"2018-02-22T23:22:53.09Z"}'} + body: {string: '{"operation":"UpdateElasticServerConfig","startTime":"2018-02-28T19:41:56.89Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/59e0bea2-9f7f-4ae0-bf61-73429791c620?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/480ee636-accd-4794-815d-3dc9c3fe800c?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['79'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:22:53 GMT'] + date: ['Wed, 28 Feb 2018 19:41:56 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/59e0bea2-9f7f-4ae0-bf61-73429791c620?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/480ee636-accd-4794-815d-3dc9c3fe800c?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} - request: body: null @@ -1069,17 +1069,17 @@ interactions: CommandName: [mysql server configuration set] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/59e0bea2-9f7f-4ae0-bf61-73429791c620?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/480ee636-accd-4794-815d-3dc9c3fe800c?api-version=2017-12-01-preview response: - body: {string: '{"name":"59e0bea2-9f7f-4ae0-bf61-73429791c620","status":"Succeeded","startTime":"2018-02-22T23:22:53.09Z"}'} + body: {string: '{"name":"480ee636-accd-4794-815d-3dc9c3fe800c","status":"Succeeded","startTime":"2018-02-28T19:41:56.89Z"}'} headers: cache-control: [no-cache] content-length: ['106'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:23:09 GMT'] + date: ['Wed, 28 Feb 2018 19:42:13 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1096,8 +1096,8 @@ interactions: CommandName: [mysql server configuration set] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: @@ -1107,7 +1107,7 @@ interactions: cache-control: [no-cache] content-length: ['613'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:23:11 GMT'] + date: ['Wed, 28 Feb 2018 19:42:15 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1125,8 +1125,8 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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/configurations?api-version=2017-12-01-preview @@ -1161,13 +1161,17 @@ interactions: number of seconds the server waits for network reading action, especially for LOAD DATA LOCAL FILE.","defaultValue":"120","dataType":"Integer","allowedValues":"10-3600","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/net_read_timeout","name":"net_read_timeout","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"240","description":"The number of seconds the server waits for network writing action, especially - for LOAD DATA LOCAL FILE.","defaultValue":"240","dataType":"Integer","allowedValues":"10-3600","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/net_write_timeout","name":"net_write_timeout","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"1315879898","description":"The + for LOAD DATA LOCAL FILE.","defaultValue":"240","dataType":"Integer","allowedValues":"10-3600","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/net_write_timeout","name":"net_write_timeout","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"544730783","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"},"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":"536870912","description":"The maximum size of one packet or any generated/intermediate string, or any parameter sent by the mysql_stmt_send_long_data() C API function.","defaultValue":"536870912","dataType":"Integer","allowedValues":"1024-1073741824","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/max_allowed_packet","name":"max_allowed_packet","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"60","description":"The number of seconds to wait for more data from the master before the slave considers the connection broken, aborts the read, and tries to reconnect.","defaultValue":"60","dataType":"Integer","allowedValues":"30-3600","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/slave_net_timeout","name":"slave_net_timeout","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"SYSTEM","description":"The - server time zone","defaultValue":"SYSTEM","dataType":"String","allowedValues":"[+|-][0]{0,1}[0-9]:[0-5][0-9]|[+|-][1][0-2]:[0-5][0-9]|SYSTEM","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/time_zone","name":"time_zone","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"latin1","description":"Use + server time zone","defaultValue":"SYSTEM","dataType":"String","allowedValues":"[+|-][0]{0,1}[0-9]:[0-5][0-9]|[+|-][1][0-2]:[0-5][0-9]|SYSTEM","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/time_zone","name":"time_zone","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"1000","description":"Controls + how many microseconds the binary log commit waits before synchronizing the + binary log file to disk.","defaultValue":"1000","dataType":"Integer","allowedValues":"0,11-1000000","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/binlog_group_commit_sync_delay","name":"binlog_group_commit_sync_delay","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"0","description":"The + maximum number of transactions to wait for before aborting the current delay + as specified by binlog-group-commit-sync-delay.","defaultValue":"0","dataType":"Integer","allowedValues":"0-1000000","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/binlog_group_commit_sync_no_delay_count","name":"binlog_group_commit_sync_no_delay_count","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"latin1","description":"Use charset_name as the default server character set.","defaultValue":"latin1","dataType":"Enumeration","allowedValues":"BIG5,DEC8,CP850,HP8,KOI8R,LATIN1,LATIN2,SWE7,ASCII,UJIS,SJIS,HEBREW,TIS620,EUCKR,KOI8U,GB2312,GREEK,CP1250,GBK,LATIN5,ARMSCII8,UTF8,UCS2,CP866,KEYBCS2,MACCE,MACROMAN,CP852,LATIN7,UTF8MB4,CP1251,UTF16,CP1256,CP1257,UTF32,BINARY,GEOSTD8,CP932,EUCJPMS","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/character_set_server","name":"character_set_server","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"262144","description":"The minimum size of the buffer that is used for plain index scans, range index scans, and joins that do not use indexes and thus perform full table scans.","defaultValue":"262144","dataType":"Integer","allowedValues":"128-2097152","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/join_buffer_size","name":"join_buffer_size","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"2000","description":"The @@ -1184,16 +1188,15 @@ interactions: number of I/O threads for read operations in InnoDB.","defaultValue":"4","dataType":"Integer","allowedValues":"1-64","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/innodb_read_io_threads","name":"innodb_read_io_threads","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"0","description":"InnoDB tries to keep the number of operating system threads concurrently inside InnoDB less than or equal to the limit given by this variable.","defaultValue":"0","dataType":"Integer","allowedValues":"0-1000","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/innodb_thread_concurrency","name":"innodb_thread_concurrency","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"4","description":"The - number of I/O threads for write operations in InnoDB.","defaultValue":"4","dataType":"Integer","allowedValues":"1-64","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/innodb_write_io_threads","name":"innodb_write_io_threads","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"8388608","description":"he - size in bytes of a memory pool InnoDB uses to store data dictionary information - and other internal data structures.","defaultValue":"8388608","dataType":"Integer","allowedValues":"5242880-52428800","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/innodb_additional_mem_pool_size","name":"innodb_additional_mem_pool_size","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"134217728","description":"Specifies + number of I/O threads for write operations in InnoDB.","defaultValue":"4","dataType":"Integer","allowedValues":"1-64","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/innodb_write_io_threads","name":"innodb_write_io_threads","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"4","description":"The + number of page cleaner threads that flush dirty pages from buffer pool instances.","defaultValue":"4","dataType":"Integer","allowedValues":"1-64","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/innodb_page_cleaners","name":"innodb_page_cleaners","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"134217728","description":"Specifies an upper limit on the size of the temporary log files used during online DDL operations for InnoDB tables.","defaultValue":"134217728","dataType":"Integer","allowedValues":"65536-2147483648","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/innodb_online_alter_log_max_size","name":"innodb_online_alter_log_max_size","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"","description":"A string to be executed by the server for each client that connects.","defaultValue":"","dataType":"String","allowedValues":"","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/init_connect","name":"init_connect","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"REPEATABLE-READ","description":"The - default transaction isolation level.","defaultValue":"REPEATABLE-READ","dataType":"Enumeration","allowedValues":"READ-UNCOMMITTED,READ-COMMITTED,REPEATABLE-READ,SERIALIZABLE","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/tx_isolation","name":"tx_isolation","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"10","description":"This + default transaction isolation level.","defaultValue":"REPEATABLE-READ","dataType":"Enumeration","allowedValues":"READ-UNCOMMITTED,READ-COMMITTED,REPEATABLE-READ,SERIALIZABLE","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/tx_isolation","name":"tx_isolation","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"200","description":"This variable indicates the number of equality ranges in an equality comparison condition when the optimizer should switch from using index dives to index - statistics in estimating the number of qualifying rows.","defaultValue":"10","dataType":"Integer","allowedValues":"0-4294967295","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/eq_range_index_dive_limit","name":"eq_range_index_dive_limit","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"37","description":"Specifies + statistics in estimating the number of qualifying rows.","defaultValue":"200","dataType":"Integer","allowedValues":"0-4294967295","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/eq_range_index_dive_limit","name":"eq_range_index_dive_limit","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"37","description":"Specifies the approximate percentage of the InnoDB buffer pool used for the old block sublist.","defaultValue":"37","dataType":"Integer","allowedValues":"5-95","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/innodb_old_blocks_pct","name":"innodb_old_blocks_pct","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"1000","description":"Non-zero values protect against the buffer pool being filled by data that is referenced @@ -1205,13 +1208,13 @@ interactions: more than this many successive connection requests from a host are interrupted without a successful connection, the server blocks that host from further connections.","defaultValue":"100","dataType":"Integer","allowedValues":"1-18446744073709551615","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/max_connect_errors","name":"max_connect_errors","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"10000","description":"Defines - how long InnoDB threads sleep before joining the InnoDB queue, in microseconds.","defaultValue":"10000","dataType":"Integer","allowedValues":"0-1000000","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/innodb_thread_sleep_delay","name":"innodb_thread_sleep_delay","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"Antelope","description":"Indicates - the InnoDB file format for file-per-table tablespaces.","defaultValue":"Antelope","dataType":"Enumeration","allowedValues":"Antelope,Barracuda","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/innodb_file_format","name":"innodb_file_format","type":"Microsoft.DBforMySQL/servers/configurations"}]}'} + how long InnoDB threads sleep before joining the InnoDB queue, in microseconds.","defaultValue":"10000","dataType":"Integer","allowedValues":"0-1000000","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/innodb_thread_sleep_delay","name":"innodb_thread_sleep_delay","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"Barracuda","description":"Indicates + the InnoDB file format for file-per-table tablespaces.","defaultValue":"Barracuda","dataType":"Enumeration","allowedValues":"Antelope,Barracuda","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/innodb_file_format","name":"innodb_file_format","type":"Microsoft.DBforMySQL/servers/configurations"}]}'} headers: cache-control: [no-cache] - content-length: ['27950'] + content-length: ['29201'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:23:12 GMT'] + date: ['Wed, 28 Feb 2018 19:42:16 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1230,26 +1233,26 @@ interactions: Content-Length: ['31'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpdateElasticServerConfig","startTime":"2018-02-22T23:23:14.567Z"}'} + body: {string: '{"operation":"UpdateElasticServerConfig","startTime":"2018-02-28T19:42:19.003Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/2646dec5-0a69-4e14-a0b5-2cc032179a73?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/8b80a1b8-879e-48c2-a916-322a873b882d?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['80'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:23:14 GMT'] + date: ['Wed, 28 Feb 2018 19:42:19 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/2646dec5-0a69-4e14-a0b5-2cc032179a73?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/8b80a1b8-879e-48c2-a916-322a873b882d?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -1259,17 +1262,17 @@ interactions: CommandName: [mysql server configuration set] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/2646dec5-0a69-4e14-a0b5-2cc032179a73?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/8b80a1b8-879e-48c2-a916-322a873b882d?api-version=2017-12-01-preview response: - body: {string: '{"name":"2646dec5-0a69-4e14-a0b5-2cc032179a73","status":"Succeeded","startTime":"2018-02-22T23:23:14.567Z"}'} + body: {string: '{"name":"8b80a1b8-879e-48c2-a916-322a873b882d","status":"Succeeded","startTime":"2018-02-28T19:42:19.003Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:23:30 GMT'] + date: ['Wed, 28 Feb 2018 19:42:36 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1286,8 +1289,8 @@ interactions: CommandName: [mysql server configuration set] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: @@ -1297,7 +1300,7 @@ interactions: cache-control: [no-cache] content-length: ['538'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:23:32 GMT'] + date: ['Wed, 28 Feb 2018 19:42:36 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1315,18 +1318,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"value":[{"properties":{"name":"mysql-slow-azuredbclitest000002-2018022223.log","sizeInKB":1,"createdTime":"0001-01-01T00:00:00+00:00","lastModifiedTime":"2018-02-22T23:23:15+00:00","type":"slowlog","url":"https://wasd2prodbrso1fse48.file.core.windows.net/80fd0fc4eb474f9db94ad45e981e85b3/serverlogs/mysql-slow-azuredbclitest000002-2018022223.log?sv=2015-04-05&sr=f&sig=%2BJpxdXYijLWkpGb1hk94AzzirLqlegm5i6lO1p7LjYQ%3D&se=2018-02-23T00%3A23%3A34Z&sp=r"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/logFiles/mysql-slow-azuredbclitest000002-2018022223.log","name":"mysql-slow-azuredbclitest000002-2018022223.log","type":"Microsoft.DBforMySQL/servers/logFiles"}]}'} + body: {string: '{"value":[{"properties":{"name":"mysql-slow-azuredbclitest000002-2018022819.log","sizeInKB":1,"createdTime":"0001-01-01T00:00:00+00:00","lastModifiedTime":"2018-02-28T19:42:20+00:00","type":"slowlog","url":"https://wasd2prodbrso1fse40.file.core.windows.net/e8353959c815474b8c2b261245a90600/serverlogs/mysql-slow-azuredbclitest000002-2018022819.log?sv=2015-04-05&sr=f&sig=u3z01uubupeee2jfHWqR%2FZ80cDIkKgkKQzGxIa%2FaYtA%3D&se=2018-02-28T20%3A42%3A38Z&sp=r"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/logFiles/mysql-slow-azuredbclitest000002-2018022819.log","name":"mysql-slow-azuredbclitest000002-2018022819.log","type":"Microsoft.DBforMySQL/servers/logFiles"}]}'} headers: cache-control: [no-cache] - content-length: ['1041'] + content-length: ['1043'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:23:34 GMT'] + date: ['Wed, 28 Feb 2018 19:42:38 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1345,8 +1348,8 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.29] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -1355,12 +1358,12 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Thu, 22 Feb 2018 23:23:36 GMT'] + date: ['Wed, 28 Feb 2018 19:42:39 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdNS09aSE5WM1I2U1dJTU1RM0xJNjQ3NjNIQzJJTldRWjM3Rnw5MUFBNjJFQTdDNzQ3RDVGLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdCUVhDSlJOTElCRDZMN0xRV05EVUJRNktXMzNLT1RUQUdBQnw1OUIwMjI3MzdBMDZFNDgxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/rdbms/azext_rdbms/tests/recordings/test_mysql_server_mgmt.yaml b/src/rdbms/azext_rdbms/tests/recordings/test_mysql_server_mgmt.yaml index dc145c8c5f9..3c3b72cc598 100644 --- a/src/rdbms/azext_rdbms/tests/recordings/test_mysql_server_mgmt.yaml +++ b/src/rdbms/azext_rdbms/tests/recordings/test_mysql_server_mgmt.yaml @@ -9,8 +9,8 @@ interactions: Content-Length: ['50'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -20,12 +20,12 @@ interactions: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:29:02 GMT'] + date: ['Wed, 28 Feb 2018 19:48:04 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 201, message: Created} - request: body: '{"location": "westus", "tags": {"use": "az-test"}}' @@ -37,8 +37,8 @@ interactions: Content-Length: ['50'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000002?api-version=2017-05-10 @@ -48,12 +48,12 @@ interactions: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:29:03 GMT'] + date: ['Wed, 28 Feb 2018 19:48:06 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'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 201, message: Created} - request: body: '{"sku": {"name": "GP_Gen4_2"}, "properties": {"storageProfile": {}, "createMode": @@ -67,26 +67,26 @@ interactions: Content-Length: ['226'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-22T23:29:05.177Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T19:48:07.973Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/07e8125d-bb25-492c-8527-a0074bc04d39?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/7997bef5-2cd4-475e-a9f8-54597d5269ee?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['74'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:29:05 GMT'] + date: ['Wed, 28 Feb 2018 19:48:08 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/07e8125d-bb25-492c-8527-a0074bc04d39?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/7997bef5-2cd4-475e-a9f8-54597d5269ee?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -96,17 +96,17 @@ interactions: CommandName: [mysql server create] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/07e8125d-bb25-492c-8527-a0074bc04d39?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/7997bef5-2cd4-475e-a9f8-54597d5269ee?api-version=2017-12-01-preview response: - body: {string: '{"name":"07e8125d-bb25-492c-8527-a0074bc04d39","status":"InProgress","startTime":"2018-02-22T23:29:05.177Z"}'} + body: {string: '{"name":"7997bef5-2cd4-475e-a9f8-54597d5269ee","status":"InProgress","startTime":"2018-02-28T19:48:07.973Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:30:06 GMT'] + date: ['Wed, 28 Feb 2018 19:49:09 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -123,17 +123,17 @@ interactions: CommandName: [mysql server create] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/07e8125d-bb25-492c-8527-a0074bc04d39?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/7997bef5-2cd4-475e-a9f8-54597d5269ee?api-version=2017-12-01-preview response: - body: {string: '{"name":"07e8125d-bb25-492c-8527-a0074bc04d39","status":"Succeeded","startTime":"2018-02-22T23:29:05.177Z"}'} + body: {string: '{"name":"7997bef5-2cd4-475e-a9f8-54597d5269ee","status":"Succeeded","startTime":"2018-02-28T19:48:07.973Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:31:07 GMT'] + date: ['Wed, 28 Feb 2018 19:50:10 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -150,17 +150,17 @@ interactions: CommandName: [mysql server create] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-22T23:39:05.55+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-28T19:58:08.333+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","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: ['910'] + content-length: ['911'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:31:09 GMT'] + date: ['Wed, 28 Feb 2018 19:50:11 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -178,18 +178,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-22T23:39:05.55+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-28T19:58:08.333+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","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: ['910'] + content-length: ['911'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:31:11 GMT'] + date: ['Wed, 28 Feb 2018 19:50:14 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -207,18 +207,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-22T23:39:05.55+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-28T19:58:08.333+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","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: ['910'] + content-length: ['911'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:31:11 GMT'] + date: ['Wed, 28 Feb 2018 19:50:15 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -239,26 +239,26 @@ interactions: Content-Length: ['218'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-22T23:31:14.807Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T19:50:18.477Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/73def2e0-4236-4c46-aaec-6420b930a413?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/deb71585-b6a1-4fea-ae00-a592e35eb84f?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['74'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:31:14 GMT'] + date: ['Wed, 28 Feb 2018 19:50:19 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/73def2e0-4236-4c46-aaec-6420b930a413?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/deb71585-b6a1-4fea-ae00-a592e35eb84f?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1194'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} - request: body: null @@ -268,17 +268,17 @@ interactions: CommandName: [mysql server update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/73def2e0-4236-4c46-aaec-6420b930a413?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/deb71585-b6a1-4fea-ae00-a592e35eb84f?api-version=2017-12-01-preview response: - body: {string: '{"name":"73def2e0-4236-4c46-aaec-6420b930a413","status":"Succeeded","startTime":"2018-02-22T23:31:14.807Z"}'} + body: {string: '{"name":"deb71585-b6a1-4fea-ae00-a592e35eb84f","status":"Succeeded","startTime":"2018-02-28T19:50:18.477Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:32:16 GMT'] + date: ['Wed, 28 Feb 2018 19:51:20 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -295,17 +295,17 @@ interactions: CommandName: [mysql server update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-22T23:39:05.55+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-28T19:58:08.333+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","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: ['911'] + content-length: ['912'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:32:17 GMT'] + date: ['Wed, 28 Feb 2018 19:51:21 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -323,18 +323,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-22T23:39:05.55+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-28T19:58:08.333+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","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: ['911'] + content-length: ['912'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:32:19 GMT'] + date: ['Wed, 28 Feb 2018 19:51:22 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -355,26 +355,26 @@ interactions: Content-Length: ['204'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-22T23:32:22.527Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T19:51:25.24Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/7d2fea53-2635-404e-8d14-b268445da15b?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/89b33dce-afe7-4ae2-a9bd-2da265138e54?api-version=2017-12-01-preview'] cache-control: [no-cache] - content-length: ['74'] + content-length: ['73'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:32:22 GMT'] + date: ['Wed, 28 Feb 2018 19:51:24 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/7d2fea53-2635-404e-8d14-b268445da15b?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/89b33dce-afe7-4ae2-a9bd-2da265138e54?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1192'] status: {code: 202, message: Accepted} - request: body: null @@ -384,17 +384,17 @@ interactions: CommandName: [mysql server update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/7d2fea53-2635-404e-8d14-b268445da15b?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/89b33dce-afe7-4ae2-a9bd-2da265138e54?api-version=2017-12-01-preview response: - body: {string: '{"name":"7d2fea53-2635-404e-8d14-b268445da15b","status":"Succeeded","startTime":"2018-02-22T23:32:22.527Z"}'} + body: {string: '{"name":"89b33dce-afe7-4ae2-a9bd-2da265138e54","status":"Succeeded","startTime":"2018-02-28T19:51:25.24Z"}'} headers: cache-control: [no-cache] - content-length: ['107'] + content-length: ['106'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:33:23 GMT'] + date: ['Wed, 28 Feb 2018 19:52:26 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -411,17 +411,17 @@ interactions: CommandName: [mysql server update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_4","tier":"GeneralPurpose","family":"Gen4","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-22T23:39:05.55+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_4","tier":"GeneralPurpose","family":"Gen4","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-28T19:58:08.333+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","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: ['911'] + content-length: ['912'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:33:25 GMT'] + date: ['Wed, 28 Feb 2018 19:52:28 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -439,18 +439,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_4","tier":"GeneralPurpose","family":"Gen4","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-22T23:39:05.55+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_4","tier":"GeneralPurpose","family":"Gen4","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-28T19:58:08.333+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","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: ['911'] + content-length: ['912'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:33:27 GMT'] + date: ['Wed, 28 Feb 2018 19:52:30 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -468,18 +468,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_4","tier":"GeneralPurpose","family":"Gen4","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-22T23:39:05.55+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_4","tier":"GeneralPurpose","family":"Gen4","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-28T19:58:08.333+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","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: ['911'] + content-length: ['912'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:33:28 GMT'] + date: ['Wed, 28 Feb 2018 19:52:31 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -500,21 +500,21 @@ interactions: Content-Length: ['204'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-22T23:33:31.613Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T19:52:33.857Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/c9f94362-cb26-4264-9a1b-141e6e1a40db?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/310bb9c0-2f54-4d7f-81a1-45e616be62d4?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['74'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:33:31 GMT'] + date: ['Wed, 28 Feb 2018 19:52:34 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/c9f94362-cb26-4264-9a1b-141e6e1a40db?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/310bb9c0-2f54-4d7f-81a1-45e616be62d4?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -529,17 +529,17 @@ interactions: CommandName: [mysql server update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/c9f94362-cb26-4264-9a1b-141e6e1a40db?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/310bb9c0-2f54-4d7f-81a1-45e616be62d4?api-version=2017-12-01-preview response: - body: {string: '{"name":"c9f94362-cb26-4264-9a1b-141e6e1a40db","status":"InProgress","startTime":"2018-02-22T23:33:31.613Z"}'} + body: {string: '{"name":"310bb9c0-2f54-4d7f-81a1-45e616be62d4","status":"InProgress","startTime":"2018-02-28T19:52:33.857Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:34:32 GMT'] + date: ['Wed, 28 Feb 2018 19:53:35 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -556,17 +556,44 @@ interactions: CommandName: [mysql server update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/c9f94362-cb26-4264-9a1b-141e6e1a40db?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/310bb9c0-2f54-4d7f-81a1-45e616be62d4?api-version=2017-12-01-preview response: - body: {string: '{"name":"c9f94362-cb26-4264-9a1b-141e6e1a40db","status":"Succeeded","startTime":"2018-02-22T23:33:31.613Z"}'} + body: {string: '{"name":"310bb9c0-2f54-4d7f-81a1-45e616be62d4","status":"InProgress","startTime":"2018-02-28T19:52:33.857Z"}'} + headers: + cache-control: [no-cache] + content-length: ['108'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 28 Feb 2018 19:54: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 update] + Connection: [keep-alive] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/310bb9c0-2f54-4d7f-81a1-45e616be62d4?api-version=2017-12-01-preview + response: + body: {string: '{"name":"310bb9c0-2f54-4d7f-81a1-45e616be62d4","status":"Succeeded","startTime":"2018-02-28T19:52:33.857Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:35:34 GMT'] + date: ['Wed, 28 Feb 2018 19:55:38 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -583,17 +610,17 @@ interactions: CommandName: [mysql server update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-22T23:39:05.55+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-28T19:58:08.333+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","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: ['911'] + content-length: ['912'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:35:35 GMT'] + date: ['Wed, 28 Feb 2018 19:55:39 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -611,18 +638,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-22T23:39:05.55+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.7","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-28T19:58:08.333+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","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: ['911'] + content-length: ['912'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:35:37 GMT'] + date: ['Wed, 28 Feb 2018 19:55:42 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -642,26 +669,26 @@ interactions: Content-Length: ['144'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-22T23:35:39.04Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T19:55:44.33Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/b0bdc62a-5315-4de3-9df7-0fa113f1c8c2?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/bb31e426-913f-4cb3-ab06-4c70003e7dbe?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['73'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:35:38 GMT'] + date: ['Wed, 28 Feb 2018 19:55:44 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/b0bdc62a-5315-4de3-9df7-0fa113f1c8c2?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/bb31e426-913f-4cb3-ab06-4c70003e7dbe?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 202, message: Accepted} - request: body: null @@ -671,17 +698,17 @@ interactions: CommandName: [mysql server update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/b0bdc62a-5315-4de3-9df7-0fa113f1c8c2?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/bb31e426-913f-4cb3-ab06-4c70003e7dbe?api-version=2017-12-01-preview response: - body: {string: '{"name":"b0bdc62a-5315-4de3-9df7-0fa113f1c8c2","status":"Succeeded","startTime":"2018-02-22T23:35:39.04Z"}'} + body: {string: '{"name":"bb31e426-913f-4cb3-ab06-4c70003e7dbe","status":"Succeeded","startTime":"2018-02-28T19:55:44.33Z"}'} headers: cache-control: [no-cache] content-length: ['106'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:36:40 GMT'] + date: ['Wed, 28 Feb 2018 19:56:45 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -698,17 +725,17 @@ interactions: CommandName: [mysql server update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-22T23:39:05.55+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-28T19:58:08.333+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","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: ['910'] + content-length: ['911'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:36:42 GMT'] + date: ['Wed, 28 Feb 2018 19:56:47 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -726,18 +753,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-22T23:39:05.55+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-28T19:58:08.333+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","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: ['910'] + content-length: ['911'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:36:43 GMT'] + date: ['Wed, 28 Feb 2018 19:56:49 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -757,26 +784,26 @@ interactions: Content-Length: ['137'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-22T23:36:46.683Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T19:56:51.807Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/015123ca-4447-475c-9651-b930aeabed45?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/65af2834-9f84-4b01-a257-a22608870ebc?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['74'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:36:46 GMT'] + date: ['Wed, 28 Feb 2018 19:56:52 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/015123ca-4447-475c-9651-b930aeabed45?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/65af2834-9f84-4b01-a257-a22608870ebc?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 202, message: Accepted} - request: body: null @@ -786,17 +813,17 @@ interactions: CommandName: [mysql server update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/015123ca-4447-475c-9651-b930aeabed45?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/65af2834-9f84-4b01-a257-a22608870ebc?api-version=2017-12-01-preview response: - body: {string: '{"name":"015123ca-4447-475c-9651-b930aeabed45","status":"Succeeded","startTime":"2018-02-22T23:36:46.683Z"}'} + body: {string: '{"name":"65af2834-9f84-4b01-a257-a22608870ebc","status":"Succeeded","startTime":"2018-02-28T19:56:51.807Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:37:48 GMT'] + date: ['Wed, 28 Feb 2018 19:57:53 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -813,17 +840,17 @@ interactions: CommandName: [mysql server update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-22T23:39:05.55+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-28T19:58:08.333+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","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: ['910'] + content-length: ['911'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:37:48 GMT'] + date: ['Wed, 28 Feb 2018 19:57:54 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -841,18 +868,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-22T23:39:05.55+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforMySQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-28T19:58:08.333+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","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: ['910'] + content-length: ['911'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:42:51 GMT'] + date: ['Wed, 28 Feb 2018 20:02:56 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -864,7 +891,7 @@ interactions: - request: body: 'b''b\''{"properties": {"createMode": "PointInTimeRestore", "sourceServerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003", - "restorePointInTime": "2018-02-22T23:42:50.617254Z"}, "location": "brazilsouth"}\''''' + "restorePointInTime": "2018-02-28T20:02:55.434581Z"}, "location": "brazilsouth"}\''''' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -873,26 +900,26 @@ interactions: Content-Length: ['399'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"RestoreElasticServer","startTime":"2018-02-22T23:42:53.403Z"}'} + body: {string: '{"operation":"RestoreElasticServer","startTime":"2018-02-28T20:02:58.073Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e4c8f164-fdba-4b23-99a2-c921536e0322?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/10ff1f57-362a-40aa-b89a-eeb0b1824bd6?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['75'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:42:53 GMT'] + date: ['Wed, 28 Feb 2018 20:02:58 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/e4c8f164-fdba-4b23-99a2-c921536e0322?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/10ff1f57-362a-40aa-b89a-eeb0b1824bd6?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -902,17 +929,44 @@ interactions: CommandName: [mysql server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/10ff1f57-362a-40aa-b89a-eeb0b1824bd6?api-version=2017-12-01-preview + response: + body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + headers: + cache-control: [no-cache] + content-length: ['108'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 28 Feb 2018 20:03: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 restore] + Connection: [keep-alive] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e4c8f164-fdba-4b23-99a2-c921536e0322?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/10ff1f57-362a-40aa-b89a-eeb0b1824bd6?api-version=2017-12-01-preview response: - body: {string: '{"name":"e4c8f164-fdba-4b23-99a2-c921536e0322","status":"InProgress","startTime":"2018-02-22T23:42:53.403Z"}'} + body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:43:05 GMT'] + date: ['Wed, 28 Feb 2018 20:03:20 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -929,17 +983,17 @@ interactions: CommandName: [mysql server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e4c8f164-fdba-4b23-99a2-c921536e0322?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/10ff1f57-362a-40aa-b89a-eeb0b1824bd6?api-version=2017-12-01-preview response: - body: {string: '{"name":"e4c8f164-fdba-4b23-99a2-c921536e0322","status":"InProgress","startTime":"2018-02-22T23:42:53.403Z"}'} + body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:43:16 GMT'] + date: ['Wed, 28 Feb 2018 20:03:32 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -956,17 +1010,17 @@ interactions: CommandName: [mysql server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e4c8f164-fdba-4b23-99a2-c921536e0322?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/10ff1f57-362a-40aa-b89a-eeb0b1824bd6?api-version=2017-12-01-preview response: - body: {string: '{"name":"e4c8f164-fdba-4b23-99a2-c921536e0322","status":"InProgress","startTime":"2018-02-22T23:42:53.403Z"}'} + body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:43:28 GMT'] + date: ['Wed, 28 Feb 2018 20:03:43 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -983,17 +1037,17 @@ interactions: CommandName: [mysql server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e4c8f164-fdba-4b23-99a2-c921536e0322?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/10ff1f57-362a-40aa-b89a-eeb0b1824bd6?api-version=2017-12-01-preview response: - body: {string: '{"name":"e4c8f164-fdba-4b23-99a2-c921536e0322","status":"InProgress","startTime":"2018-02-22T23:42:53.403Z"}'} + body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:43:38 GMT'] + date: ['Wed, 28 Feb 2018 20:03:55 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1010,17 +1064,17 @@ interactions: CommandName: [mysql server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e4c8f164-fdba-4b23-99a2-c921536e0322?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/10ff1f57-362a-40aa-b89a-eeb0b1824bd6?api-version=2017-12-01-preview response: - body: {string: '{"name":"e4c8f164-fdba-4b23-99a2-c921536e0322","status":"InProgress","startTime":"2018-02-22T23:42:53.403Z"}'} + body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:43:50 GMT'] + date: ['Wed, 28 Feb 2018 20:04:06 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1037,17 +1091,17 @@ interactions: CommandName: [mysql server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e4c8f164-fdba-4b23-99a2-c921536e0322?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/10ff1f57-362a-40aa-b89a-eeb0b1824bd6?api-version=2017-12-01-preview response: - body: {string: '{"name":"e4c8f164-fdba-4b23-99a2-c921536e0322","status":"InProgress","startTime":"2018-02-22T23:42:53.403Z"}'} + body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:44:01 GMT'] + date: ['Wed, 28 Feb 2018 20:04:17 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1064,17 +1118,17 @@ interactions: CommandName: [mysql server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e4c8f164-fdba-4b23-99a2-c921536e0322?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/10ff1f57-362a-40aa-b89a-eeb0b1824bd6?api-version=2017-12-01-preview response: - body: {string: '{"name":"e4c8f164-fdba-4b23-99a2-c921536e0322","status":"InProgress","startTime":"2018-02-22T23:42:53.403Z"}'} + body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:44:12 GMT'] + date: ['Wed, 28 Feb 2018 20:04:29 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1091,17 +1145,17 @@ interactions: CommandName: [mysql server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e4c8f164-fdba-4b23-99a2-c921536e0322?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/10ff1f57-362a-40aa-b89a-eeb0b1824bd6?api-version=2017-12-01-preview response: - body: {string: '{"name":"e4c8f164-fdba-4b23-99a2-c921536e0322","status":"InProgress","startTime":"2018-02-22T23:42:53.403Z"}'} + body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:44:24 GMT'] + date: ['Wed, 28 Feb 2018 20:04:40 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1118,17 +1172,17 @@ interactions: CommandName: [mysql server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e4c8f164-fdba-4b23-99a2-c921536e0322?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/10ff1f57-362a-40aa-b89a-eeb0b1824bd6?api-version=2017-12-01-preview response: - body: {string: '{"name":"e4c8f164-fdba-4b23-99a2-c921536e0322","status":"InProgress","startTime":"2018-02-22T23:42:53.403Z"}'} + body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:44:35 GMT'] + date: ['Wed, 28 Feb 2018 20:04:51 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1145,17 +1199,17 @@ interactions: CommandName: [mysql server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e4c8f164-fdba-4b23-99a2-c921536e0322?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/10ff1f57-362a-40aa-b89a-eeb0b1824bd6?api-version=2017-12-01-preview response: - body: {string: '{"name":"e4c8f164-fdba-4b23-99a2-c921536e0322","status":"InProgress","startTime":"2018-02-22T23:42:53.403Z"}'} + body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:44:47 GMT'] + date: ['Wed, 28 Feb 2018 20:05:02 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1172,17 +1226,17 @@ interactions: CommandName: [mysql server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e4c8f164-fdba-4b23-99a2-c921536e0322?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/10ff1f57-362a-40aa-b89a-eeb0b1824bd6?api-version=2017-12-01-preview response: - body: {string: '{"name":"e4c8f164-fdba-4b23-99a2-c921536e0322","status":"InProgress","startTime":"2018-02-22T23:42:53.403Z"}'} + body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:44:58 GMT'] + date: ['Wed, 28 Feb 2018 20:05:14 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1199,17 +1253,17 @@ interactions: CommandName: [mysql server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e4c8f164-fdba-4b23-99a2-c921536e0322?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/10ff1f57-362a-40aa-b89a-eeb0b1824bd6?api-version=2017-12-01-preview response: - body: {string: '{"name":"e4c8f164-fdba-4b23-99a2-c921536e0322","status":"InProgress","startTime":"2018-02-22T23:42:53.403Z"}'} + body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:45:09 GMT'] + date: ['Wed, 28 Feb 2018 20:05:25 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1226,17 +1280,17 @@ interactions: CommandName: [mysql server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e4c8f164-fdba-4b23-99a2-c921536e0322?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/10ff1f57-362a-40aa-b89a-eeb0b1824bd6?api-version=2017-12-01-preview response: - body: {string: '{"name":"e4c8f164-fdba-4b23-99a2-c921536e0322","status":"InProgress","startTime":"2018-02-22T23:42:53.403Z"}'} + body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:45:20 GMT'] + date: ['Wed, 28 Feb 2018 20:05:37 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1253,17 +1307,17 @@ interactions: CommandName: [mysql server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e4c8f164-fdba-4b23-99a2-c921536e0322?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/10ff1f57-362a-40aa-b89a-eeb0b1824bd6?api-version=2017-12-01-preview response: - body: {string: '{"name":"e4c8f164-fdba-4b23-99a2-c921536e0322","status":"InProgress","startTime":"2018-02-22T23:42:53.403Z"}'} + body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:45:32 GMT'] + date: ['Wed, 28 Feb 2018 20:05:48 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1280,17 +1334,17 @@ interactions: CommandName: [mysql server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e4c8f164-fdba-4b23-99a2-c921536e0322?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/10ff1f57-362a-40aa-b89a-eeb0b1824bd6?api-version=2017-12-01-preview response: - body: {string: '{"name":"e4c8f164-fdba-4b23-99a2-c921536e0322","status":"InProgress","startTime":"2018-02-22T23:42:53.403Z"}'} + body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:45:43 GMT'] + date: ['Wed, 28 Feb 2018 20:05:59 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1307,17 +1361,17 @@ interactions: CommandName: [mysql server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e4c8f164-fdba-4b23-99a2-c921536e0322?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/10ff1f57-362a-40aa-b89a-eeb0b1824bd6?api-version=2017-12-01-preview response: - body: {string: '{"name":"e4c8f164-fdba-4b23-99a2-c921536e0322","status":"InProgress","startTime":"2018-02-22T23:42:53.403Z"}'} + body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:45:54 GMT'] + date: ['Wed, 28 Feb 2018 20:06:11 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1334,17 +1388,98 @@ interactions: CommandName: [mysql server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e4c8f164-fdba-4b23-99a2-c921536e0322?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/10ff1f57-362a-40aa-b89a-eeb0b1824bd6?api-version=2017-12-01-preview response: - body: {string: '{"name":"e4c8f164-fdba-4b23-99a2-c921536e0322","status":"Succeeded","startTime":"2018-02-22T23:42:53.403Z"}'} + body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + headers: + cache-control: [no-cache] + content-length: ['108'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 28 Feb 2018 20:06: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 restore] + Connection: [keep-alive] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/10ff1f57-362a-40aa-b89a-eeb0b1824bd6?api-version=2017-12-01-preview + response: + body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + headers: + cache-control: [no-cache] + content-length: ['108'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 28 Feb 2018 20:06: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 restore] + Connection: [keep-alive] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/10ff1f57-362a-40aa-b89a-eeb0b1824bd6?api-version=2017-12-01-preview + response: + body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + headers: + cache-control: [no-cache] + content-length: ['108'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 28 Feb 2018 20:06:48 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [mysql server restore] + Connection: [keep-alive] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/10ff1f57-362a-40aa-b89a-eeb0b1824bd6?api-version=2017-12-01-preview + response: + body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"Succeeded","startTime":"2018-02-28T20:02:58.073Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:46:06 GMT'] + date: ['Wed, 28 Feb 2018 20:06:59 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1361,17 +1496,17 @@ interactions: CommandName: [mysql server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.mysql.database.azure.com","earliestRestoreDate":"2018-02-22T23:52:53.763+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMySQL/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforMySQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.mysql.database.azure.com","earliestRestoreDate":"2018-02-28T20:12:58.43+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","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: ['892'] + content-length: ['891'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:46:07 GMT'] + date: ['Wed, 28 Feb 2018 20:07:00 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1389,18 +1524,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"value":[{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.mysql.database.azure.com","earliestRestoreDate":"2018-02-22T23:52:53.763+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMySQL/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforMySQL/servers"}]}'} + body: {string: '{"value":[{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.mysql.database.azure.com","earliestRestoreDate":"2018-02-28T20:12:58.43+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","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: ['904'] + content-length: ['903'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:46:10 GMT'] + date: ['Wed, 28 Feb 2018 20:07:02 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1418,25 +1553,24 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"value":[{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-22T23:39:05.55+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","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_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.mysql.database.azure.com","earliestRestoreDate":"2018-02-22T23:52:53.763+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMySQL/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforMySQL/servers"}]}'} + body: {string: '{"value":[{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"rohit","storageProfile":{"storageMB":10240,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"testservergen5.mysql.database.azure.com","earliestRestoreDate":"2018-02-27T00:16:25.65+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OrcasGATesting/providers/Microsoft.DBforMySQL/servers/testservergen5","name":"testservergen5","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"rohit","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"rohit1dbcreate.mysql.database.azure.com","earliestRestoreDate":"2018-02-27T22:19:56.673+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OrcasGATesting/providers/Microsoft.DBforMySQL/servers/rohit1dbcreate","name":"rohit1dbcreate","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.mysql.database.azure.com","earliestRestoreDate":"2018-02-28T19:58:08.333+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","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_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.mysql.database.azure.com","earliestRestoreDate":"2018-02-28T20:12:58.43+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMySQL/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforMySQL/servers"},{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"testadmin","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"mysqlgen5test2.mysql.database.azure.com","earliestRestoreDate":"2018-02-28T19:28:32.563+00:00","replicationRole":"","primaryServerId":""},"location":"canadacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GAGen5Testing/providers/Microsoft.DBforMySQL/servers/mysqlgen5test2","name":"mysqlgen5test2","type":"Microsoft.DBforMySQL/servers"}]}'} headers: cache-control: [no-cache] - content-length: ['1815'] + content-length: ['3869'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:46:11 GMT'] + date: ['Wed, 28 Feb 2018 20:07: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] + x-ms-original-request-ids: [748149b9-e2d3-4633-8467-332cd8360c0a, e42f3e4b-0fcf-46fc-8ad2-21d5eabff992] status: {code: 200, message: OK} - request: body: null @@ -1448,21 +1582,21 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"DropElasticServer","startTime":"2018-02-22T23:46:12.957Z"}'} + body: {string: '{"operation":"DropElasticServer","startTime":"2018-02-28T20:07:05.273Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/5e1bfb42-0b0f-49bc-b0dd-8b6f1110b58a?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/8cc3bc51-1a58-46fb-91ff-dde97896d9da?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['72'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:46:12 GMT'] + date: ['Wed, 28 Feb 2018 20:07:05 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/5e1bfb42-0b0f-49bc-b0dd-8b6f1110b58a?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/8cc3bc51-1a58-46fb-91ff-dde97896d9da?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1477,17 +1611,17 @@ interactions: CommandName: [mysql server delete] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/5e1bfb42-0b0f-49bc-b0dd-8b6f1110b58a?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/8cc3bc51-1a58-46fb-91ff-dde97896d9da?api-version=2017-12-01-preview response: - body: {string: '{"name":"5e1bfb42-0b0f-49bc-b0dd-8b6f1110b58a","status":"Succeeded","startTime":"2018-02-22T23:46:12.957Z"}'} + body: {string: '{"name":"8cc3bc51-1a58-46fb-91ff-dde97896d9da","status":"Succeeded","startTime":"2018-02-28T20:07:05.273Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:46:29 GMT'] + date: ['Wed, 28 Feb 2018 20:07:21 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1506,26 +1640,26 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"DropElasticServer","startTime":"2018-02-22T23:46:31.997Z"}'} + body: {string: '{"operation":"DropElasticServer","startTime":"2018-02-28T20:07:23.767Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/09a75ed5-fc64-4f20-ae3b-ec0555b64aea?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/3d74ede3-1600-4d80-a403-b4adcc8b19fd?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['72'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:46:32 GMT'] + date: ['Wed, 28 Feb 2018 20:07:24 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/09a75ed5-fc64-4f20-ae3b-ec0555b64aea?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/3d74ede3-1600-4d80-a403-b4adcc8b19fd?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 202, message: Accepted} - request: body: null @@ -1535,17 +1669,17 @@ interactions: CommandName: [mysql server delete] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/09a75ed5-fc64-4f20-ae3b-ec0555b64aea?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/3d74ede3-1600-4d80-a403-b4adcc8b19fd?api-version=2017-12-01-preview response: - body: {string: '{"name":"09a75ed5-fc64-4f20-ae3b-ec0555b64aea","status":"Succeeded","startTime":"2018-02-22T23:46:31.997Z"}'} + body: {string: '{"name":"3d74ede3-1600-4d80-a403-b4adcc8b19fd","status":"Succeeded","startTime":"2018-02-28T20:07:23.767Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:46:48 GMT'] + date: ['Wed, 28 Feb 2018 20:07:40 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1563,8 +1697,8 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers?api-version=2017-12-01-preview @@ -1574,12 +1708,10 @@ interactions: cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:46:50 GMT'] + date: ['Wed, 28 Feb 2018 20:07: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} @@ -1593,8 +1725,8 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.29] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000002?api-version=2017-05-10 @@ -1603,9 +1735,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Thu, 22 Feb 2018 23:46:51 GMT'] + date: ['Wed, 28 Feb 2018 20:07:42 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdCT0tKU1NNWlNaVDZPN1paVkpPNTZNUFJaTEI2WlpQVzNIVXxEQjFDRjkwNTRFNEJFRjczLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdaRFZBNjJMSkw0UURTU1hNQTNESTVZSkc3VVJIRkZGRFhINnw2MUM1QUY2MUI2OUJEMDNBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] @@ -1621,8 +1753,8 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.29] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -1631,9 +1763,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Thu, 22 Feb 2018 23:46:52 GMT'] + date: ['Wed, 28 Feb 2018 20:07:42 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc1S0U0VEhIR0NNNlNaVkRYNUFCUUtLR1lMRFQ2WFlBR1pCT3w2MDBBN0RBRTcwQkU4RjA0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdWWkNGSTZET0tGSDdRRTVOV0NTTEhGUkJERVBCSEFOVlNUTXxDQzZDMjg2RkJFOEEyOTQ3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/rdbms/azext_rdbms/tests/recordings/test_postgres_proxy_resources_mgmt.yaml b/src/rdbms/azext_rdbms/tests/recordings/test_postgres_proxy_resources_mgmt.yaml index b5b6c5f6f92..60ff08120eb 100644 --- a/src/rdbms/azext_rdbms/tests/recordings/test_postgres_proxy_resources_mgmt.yaml +++ b/src/rdbms/azext_rdbms/tests/recordings/test_postgres_proxy_resources_mgmt.yaml @@ -9,8 +9,8 @@ interactions: Content-Length: ['50'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -20,12 +20,12 @@ interactions: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:23:37 GMT'] + date: ['Wed, 28 Feb 2018 19:42:41 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'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 201, message: Created} - request: body: '{"sku": {"name": "GP_Gen4_2"}, "properties": {"storageProfile": {}, "createMode": @@ -39,26 +39,26 @@ interactions: Content-Length: ['204'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-22T23:23:39.097Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T19:42:42.86Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/abbabc6d-112e-47e4-81b4-692401ef7c48?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/da028df8-5d69-4954-b681-c0fd4d82f7ce?api-version=2017-12-01-preview'] cache-control: [no-cache] - content-length: ['74'] + content-length: ['73'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:23:39 GMT'] + date: ['Wed, 28 Feb 2018 19:42:43 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/abbabc6d-112e-47e4-81b4-692401ef7c48?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/da028df8-5d69-4954-b681-c0fd4d82f7ce?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -68,17 +68,17 @@ interactions: CommandName: [postgres server create] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/abbabc6d-112e-47e4-81b4-692401ef7c48?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/da028df8-5d69-4954-b681-c0fd4d82f7ce?api-version=2017-12-01-preview response: - body: {string: '{"name":"abbabc6d-112e-47e4-81b4-692401ef7c48","status":"InProgress","startTime":"2018-02-22T23:23:39.097Z"}'} + body: {string: '{"name":"da028df8-5d69-4954-b681-c0fd4d82f7ce","status":"InProgress","startTime":"2018-02-28T19:42:42.86Z"}'} headers: cache-control: [no-cache] - content-length: ['108'] + content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:24:40 GMT'] + date: ['Wed, 28 Feb 2018 19:43:44 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -95,17 +95,17 @@ interactions: CommandName: [postgres server create] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/abbabc6d-112e-47e4-81b4-692401ef7c48?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/da028df8-5d69-4954-b681-c0fd4d82f7ce?api-version=2017-12-01-preview response: - body: {string: '{"name":"abbabc6d-112e-47e4-81b4-692401ef7c48","status":"Succeeded","startTime":"2018-02-22T23:23:39.097Z"}'} + body: {string: '{"name":"da028df8-5d69-4954-b681-c0fd4d82f7ce","status":"Succeeded","startTime":"2018-02-28T19:42:42.86Z"}'} headers: cache-control: [no-cache] - content-length: ['107'] + content-length: ['106'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:25:42 GMT'] + date: ['Wed, 28 Feb 2018 19:44:45 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -122,17 +122,17 @@ interactions: CommandName: [postgres server create] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.5","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.postgres.database.azure.com","earliestRestoreDate":"2018-02-22T23:33:39.443+00:00"},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforPostgreSQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000002.postgres.database.azure.com","earliestRestoreDate":"2018-02-28T19:52:43.707+00:00"},"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: ['863'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:25:43 GMT'] + date: ['Wed, 28 Feb 2018 19:44:47 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -151,26 +151,26 @@ interactions: Content-Length: ['80'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-22T23:25:45.143Z"}'} + body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-28T19:44:49.46Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/66c74832-4c71-431d-88d7-5d2e9611a3d7?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/a059d2f5-9aec-4bb2-914b-9acc60ab56d8?api-version=2017-12-01-preview'] cache-control: [no-cache] - content-length: ['87'] + content-length: ['86'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:25:45 GMT'] + date: ['Wed, 28 Feb 2018 19:44:49 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/66c74832-4c71-431d-88d7-5d2e9611a3d7?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/a059d2f5-9aec-4bb2-914b-9acc60ab56d8?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -180,17 +180,17 @@ interactions: CommandName: [postgres server firewall-rule create] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/66c74832-4c71-431d-88d7-5d2e9611a3d7?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/a059d2f5-9aec-4bb2-914b-9acc60ab56d8?api-version=2017-12-01-preview response: - body: {string: '{"name":"66c74832-4c71-431d-88d7-5d2e9611a3d7","status":"Succeeded","startTime":"2018-02-22T23:25:45.143Z"}'} + body: {string: '{"name":"a059d2f5-9aec-4bb2-914b-9acc60ab56d8","status":"Succeeded","startTime":"2018-02-28T19:44:49.46Z"}'} headers: cache-control: [no-cache] - content-length: ['107'] + content-length: ['106'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:26:02 GMT'] + date: ['Wed, 28 Feb 2018 19:45:06 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -207,8 +207,8 @@ interactions: CommandName: [postgres server firewall-rule create] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: @@ -217,7 +217,7 @@ interactions: cache-control: [no-cache] content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:26:02 GMT'] + date: ['Wed, 28 Feb 2018 19:45:07 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -235,8 +235,8 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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/firewallRules/rule1?api-version=2017-12-01-preview @@ -246,7 +246,7 @@ interactions: cache-control: [no-cache] content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:26:05 GMT'] + date: ['Wed, 28 Feb 2018 19:45:09 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -264,8 +264,8 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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/firewallRules/rule1?api-version=2017-12-01-preview @@ -275,7 +275,7 @@ interactions: cache-control: [no-cache] content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:26:06 GMT'] + date: ['Wed, 28 Feb 2018 19:45:11 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -294,26 +294,26 @@ interactions: Content-Length: ['88'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-22T23:26:08.39Z"}'} + body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-28T19:45:12.57Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/1f10c4e0-0124-41cb-a9a5-e568530ef3cc?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/906c5700-1cb5-4660-8118-58842b4e9529?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['86'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:26:08 GMT'] + date: ['Wed, 28 Feb 2018 19:45:13 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/1f10c4e0-0124-41cb-a9a5-e568530ef3cc?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/906c5700-1cb5-4660-8118-58842b4e9529?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} - request: body: null @@ -323,17 +323,17 @@ interactions: CommandName: [postgres server firewall-rule update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/1f10c4e0-0124-41cb-a9a5-e568530ef3cc?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/906c5700-1cb5-4660-8118-58842b4e9529?api-version=2017-12-01-preview response: - body: {string: '{"name":"1f10c4e0-0124-41cb-a9a5-e568530ef3cc","status":"Succeeded","startTime":"2018-02-22T23:26:08.39Z"}'} + body: {string: '{"name":"906c5700-1cb5-4660-8118-58842b4e9529","status":"Succeeded","startTime":"2018-02-28T19:45:12.57Z"}'} headers: cache-control: [no-cache] content-length: ['106'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:26:24 GMT'] + date: ['Wed, 28 Feb 2018 19:45:28 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -350,8 +350,8 @@ interactions: CommandName: [postgres server firewall-rule update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: @@ -360,7 +360,7 @@ interactions: cache-control: [no-cache] content-length: ['434'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:26:26 GMT'] + date: ['Wed, 28 Feb 2018 19:45:30 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -378,8 +378,8 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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/firewallRules/rule1?api-version=2017-12-01-preview @@ -389,7 +389,7 @@ interactions: cache-control: [no-cache] content-length: ['434'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:26:28 GMT'] + date: ['Wed, 28 Feb 2018 19:45:32 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -408,26 +408,26 @@ interactions: Content-Length: ['80'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-22T23:26:29.78Z"}'} + body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-28T19:45:34.363Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/cc471940-085f-4a5a-bff9-1963be5ca654?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/4546e85c-60f0-4e39-9485-d2be08d25030?api-version=2017-12-01-preview'] cache-control: [no-cache] - content-length: ['86'] + content-length: ['87'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:26:30 GMT'] + date: ['Wed, 28 Feb 2018 19:45:33 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/cc471940-085f-4a5a-bff9-1963be5ca654?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/4546e85c-60f0-4e39-9485-d2be08d25030?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -437,17 +437,17 @@ interactions: CommandName: [postgres server firewall-rule update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/cc471940-085f-4a5a-bff9-1963be5ca654?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/4546e85c-60f0-4e39-9485-d2be08d25030?api-version=2017-12-01-preview response: - body: {string: '{"name":"cc471940-085f-4a5a-bff9-1963be5ca654","status":"Succeeded","startTime":"2018-02-22T23:26:29.78Z"}'} + body: {string: '{"name":"4546e85c-60f0-4e39-9485-d2be08d25030","status":"Succeeded","startTime":"2018-02-28T19:45:34.363Z"}'} headers: cache-control: [no-cache] - content-length: ['106'] + content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:26:46 GMT'] + date: ['Wed, 28 Feb 2018 19:45:50 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -464,8 +464,8 @@ interactions: CommandName: [postgres server firewall-rule update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: @@ -474,7 +474,7 @@ interactions: cache-control: [no-cache] content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:26:48 GMT'] + date: ['Wed, 28 Feb 2018 19:45:52 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -492,8 +492,8 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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/firewallRules/rule1?api-version=2017-12-01-preview @@ -503,7 +503,7 @@ interactions: cache-control: [no-cache] content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:26:48 GMT'] + date: ['Wed, 28 Feb 2018 19:45:54 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -522,26 +522,26 @@ interactions: Content-Length: ['80'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-22T23:26:51.16Z"}'} + body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-28T19:45:55.75Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/19fac9d8-9052-40c2-b93e-e3e19be716cd?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/ca9d2050-8273-4cb9-a4c2-ad599a4fe3a5?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['86'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:26:51 GMT'] + date: ['Wed, 28 Feb 2018 19:45:55 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/19fac9d8-9052-40c2-b93e-e3e19be716cd?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/ca9d2050-8273-4cb9-a4c2-ad599a4fe3a5?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} - request: body: null @@ -551,17 +551,17 @@ interactions: CommandName: [postgres server firewall-rule update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/19fac9d8-9052-40c2-b93e-e3e19be716cd?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/ca9d2050-8273-4cb9-a4c2-ad599a4fe3a5?api-version=2017-12-01-preview response: - body: {string: '{"name":"19fac9d8-9052-40c2-b93e-e3e19be716cd","status":"Succeeded","startTime":"2018-02-22T23:26:51.16Z"}'} + body: {string: '{"name":"ca9d2050-8273-4cb9-a4c2-ad599a4fe3a5","status":"Succeeded","startTime":"2018-02-28T19:45:55.75Z"}'} headers: cache-control: [no-cache] content-length: ['106'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:27:07 GMT'] + date: ['Wed, 28 Feb 2018 19:46:12 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -578,8 +578,8 @@ interactions: CommandName: [postgres server firewall-rule update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: @@ -588,7 +588,7 @@ interactions: cache-control: [no-cache] content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:27:09 GMT'] + date: ['Wed, 28 Feb 2018 19:46:13 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -607,26 +607,26 @@ interactions: Content-Length: ['88'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-22T23:27:11.197Z"}'} + body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-28T19:46:15.29Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/2bab70e5-8aea-4c96-a816-96714fda8465?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/7b6fabbd-9b4d-469c-82d3-7467f55d1900?api-version=2017-12-01-preview'] cache-control: [no-cache] - content-length: ['87'] + content-length: ['86'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:27:11 GMT'] + date: ['Wed, 28 Feb 2018 19:46:15 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/2bab70e5-8aea-4c96-a816-96714fda8465?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/7b6fabbd-9b4d-469c-82d3-7467f55d1900?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -636,17 +636,17 @@ interactions: CommandName: [postgres server firewall-rule create] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/2bab70e5-8aea-4c96-a816-96714fda8465?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/7b6fabbd-9b4d-469c-82d3-7467f55d1900?api-version=2017-12-01-preview response: - body: {string: '{"name":"2bab70e5-8aea-4c96-a816-96714fda8465","status":"Succeeded","startTime":"2018-02-22T23:27:11.197Z"}'} + body: {string: '{"name":"7b6fabbd-9b4d-469c-82d3-7467f55d1900","status":"Succeeded","startTime":"2018-02-28T19:46:15.29Z"}'} headers: cache-control: [no-cache] - content-length: ['107'] + content-length: ['106'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:27:27 GMT'] + date: ['Wed, 28 Feb 2018 19:46:32 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -663,8 +663,8 @@ interactions: CommandName: [postgres server firewall-rule create] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: @@ -673,7 +673,7 @@ interactions: cache-control: [no-cache] content-length: ['434'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:27:29 GMT'] + date: ['Wed, 28 Feb 2018 19:46:33 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -691,8 +691,8 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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/firewallRules?api-version=2017-12-01-preview @@ -702,7 +702,7 @@ interactions: cache-control: [no-cache] content-length: ['873'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:27:31 GMT'] + date: ['Wed, 28 Feb 2018 19:46:35 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -721,21 +721,21 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"DropElasticServerFirewallRule","startTime":"2018-02-22T23:27:32.687Z"}'} + body: {string: '{"operation":"DropElasticServerFirewallRule","startTime":"2018-02-28T19:46:37.27Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/3006a441-7c57-4082-a96d-375a70cd6fc5?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/7e98e08b-80cb-498b-ab0c-f7ff42b66caa?api-version=2017-12-01-preview'] cache-control: [no-cache] - content-length: ['84'] + content-length: ['83'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:27:32 GMT'] + date: ['Wed, 28 Feb 2018 19:46:37 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/3006a441-7c57-4082-a96d-375a70cd6fc5?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/7e98e08b-80cb-498b-ab0c-f7ff42b66caa?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -750,17 +750,17 @@ interactions: CommandName: [postgres server firewall-rule delete] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/3006a441-7c57-4082-a96d-375a70cd6fc5?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/7e98e08b-80cb-498b-ab0c-f7ff42b66caa?api-version=2017-12-01-preview response: - body: {string: '{"name":"3006a441-7c57-4082-a96d-375a70cd6fc5","status":"Succeeded","startTime":"2018-02-22T23:27:32.687Z"}'} + body: {string: '{"name":"7e98e08b-80cb-498b-ab0c-f7ff42b66caa","status":"Succeeded","startTime":"2018-02-28T19:46:37.27Z"}'} headers: cache-control: [no-cache] - content-length: ['107'] + content-length: ['106'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:27:48 GMT'] + date: ['Wed, 28 Feb 2018 19:46:53 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -778,8 +778,8 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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/firewallRules?api-version=2017-12-01-preview @@ -789,7 +789,7 @@ interactions: cache-control: [no-cache] content-length: ['446'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:27:51 GMT'] + date: ['Wed, 28 Feb 2018 19:46:55 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -808,26 +808,26 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"DropElasticServerFirewallRule","startTime":"2018-02-22T23:27:53.29Z"}'} + body: {string: '{"operation":"DropElasticServerFirewallRule","startTime":"2018-02-28T19:46:57.587Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/7e39c5c5-1509-48f7-b071-37820b18a1b3?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/0b6d48d6-7544-4465-848e-4e91a4a4cf0b?api-version=2017-12-01-preview'] cache-control: [no-cache] - content-length: ['83'] + content-length: ['84'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:27:52 GMT'] + date: ['Wed, 28 Feb 2018 19:46:57 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/7e39c5c5-1509-48f7-b071-37820b18a1b3?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/0b6d48d6-7544-4465-848e-4e91a4a4cf0b?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -837,17 +837,17 @@ interactions: CommandName: [postgres server firewall-rule delete] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/7e39c5c5-1509-48f7-b071-37820b18a1b3?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/0b6d48d6-7544-4465-848e-4e91a4a4cf0b?api-version=2017-12-01-preview response: - body: {string: '{"name":"7e39c5c5-1509-48f7-b071-37820b18a1b3","status":"Succeeded","startTime":"2018-02-22T23:27:53.29Z"}'} + body: {string: '{"name":"0b6d48d6-7544-4465-848e-4e91a4a4cf0b","status":"Succeeded","startTime":"2018-02-28T19:46:57.587Z"}'} headers: cache-control: [no-cache] - content-length: ['106'] + content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:28:09 GMT'] + date: ['Wed, 28 Feb 2018 19:47:14 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -865,8 +865,8 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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/firewallRules?api-version=2017-12-01-preview @@ -876,7 +876,7 @@ interactions: cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:28:11 GMT'] + date: ['Wed, 28 Feb 2018 19:47:16 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -894,8 +894,8 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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/databases?api-version=2017-12-01-preview @@ -906,7 +906,7 @@ interactions: cache-control: [no-cache] content-length: ['434'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:28:13 GMT'] + date: ['Wed, 28 Feb 2018 19:47:17 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -924,8 +924,8 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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/configurations/array_nulls?api-version=2017-12-01-preview @@ -936,7 +936,7 @@ interactions: cache-control: [no-cache] content-length: ['542'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:28:14 GMT'] + date: ['Wed, 28 Feb 2018 19:47:19 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -955,21 +955,21 @@ interactions: Content-Length: ['32'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpdateElasticServerConfig","startTime":"2018-02-22T23:28:16.813Z"}'} + body: {string: '{"operation":"UpdateElasticServerConfig","startTime":"2018-02-28T19:47:21.523Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/5df1ed4f-6b97-44d9-a3b0-4e2aeec5c6cf?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/d6ae9ca3-1c58-4aed-9eac-db15063d516a?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['80'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:28:16 GMT'] + date: ['Wed, 28 Feb 2018 19:47:21 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/5df1ed4f-6b97-44d9-a3b0-4e2aeec5c6cf?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/d6ae9ca3-1c58-4aed-9eac-db15063d516a?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -984,17 +984,17 @@ interactions: CommandName: [postgres server configuration set] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/5df1ed4f-6b97-44d9-a3b0-4e2aeec5c6cf?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/d6ae9ca3-1c58-4aed-9eac-db15063d516a?api-version=2017-12-01-preview response: - body: {string: '{"name":"5df1ed4f-6b97-44d9-a3b0-4e2aeec5c6cf","status":"Succeeded","startTime":"2018-02-22T23:28:16.813Z"}'} + body: {string: '{"name":"d6ae9ca3-1c58-4aed-9eac-db15063d516a","status":"Succeeded","startTime":"2018-02-28T19:47:21.523Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:28:32 GMT'] + date: ['Wed, 28 Feb 2018 19:47:38 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1011,8 +1011,8 @@ interactions: CommandName: [postgres server configuration set] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: @@ -1022,7 +1022,7 @@ interactions: cache-control: [no-cache] content-length: ['542'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:28:35 GMT'] + date: ['Wed, 28 Feb 2018 19:47:39 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1041,21 +1041,21 @@ interactions: Content-Length: ['44'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpdateElasticServerConfig","startTime":"2018-02-22T23:28:37.143Z"}'} + body: {string: '{"operation":"UpdateElasticServerConfig","startTime":"2018-02-28T19:47:40.947Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/a58356fb-ba5e-46d0-9529-370bc438ad11?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/d4c763a7-f68f-418f-adb2-08a035a1bcaf?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['80'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:28:37 GMT'] + date: ['Wed, 28 Feb 2018 19:47:41 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/a58356fb-ba5e-46d0-9529-370bc438ad11?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/d4c763a7-f68f-418f-adb2-08a035a1bcaf?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1070,17 +1070,17 @@ interactions: CommandName: [postgres server configuration set] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/a58356fb-ba5e-46d0-9529-370bc438ad11?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/d4c763a7-f68f-418f-adb2-08a035a1bcaf?api-version=2017-12-01-preview response: - body: {string: '{"name":"a58356fb-ba5e-46d0-9529-370bc438ad11","status":"Succeeded","startTime":"2018-02-22T23:28:37.143Z"}'} + body: {string: '{"name":"d4c763a7-f68f-418f-adb2-08a035a1bcaf","status":"Succeeded","startTime":"2018-02-28T19:47:40.947Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:28:54 GMT'] + date: ['Wed, 28 Feb 2018 19:47:57 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1097,8 +1097,8 @@ interactions: CommandName: [postgres server configuration set] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: @@ -1108,7 +1108,7 @@ interactions: cache-control: [no-cache] content-length: ['542'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:28:55 GMT'] + date: ['Wed, 28 Feb 2018 19:47:58 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1126,8 +1126,8 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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/configurations?api-version=2017-12-01-preview @@ -1202,7 +1202,7 @@ interactions: generating SQL fragments, quote all identifiers.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/quote_all_identifiers","name":"quote_all_identifiers","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"4.0","description":"Sets the planner''s estimate of the cost of a nonsequentially fetched disk page.","defaultValue":"4.0","dataType":"Numeric","allowedValues":"0-1.79769e+308","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/random_page_cost","name":"random_page_cost","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"\"$user\", public","description":"Sets the schema search order for names that are not - schema-qualified.","defaultValue":"\"$user\", public","dataType":"String","allowedValues":"[A-Za-z0-9.\"$, + schema-qualified.","defaultValue":"\"$user\", public","dataType":"String","allowedValues":"[A-Za-z.\"$, ]+","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/search_path","name":"search_path","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"1.0","description":"Sets the planner''s estimate of the cost of a sequentially fetched disk page.","defaultValue":"1.0","dataType":"Numeric","allowedValues":"0-1.79769e+308","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/seq_page_cost","name":"seq_page_cost","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"on","description":"Causes subtables to be included by default in various commands.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/sql_inheritance","name":"sql_inheritance","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"on","description":"Causes @@ -1214,16 +1214,24 @@ interactions: \"expr=NULL\" as \"expr IS NULL\".","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/transform_null_equals","name":"transform_null_equals","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"base64","description":"Sets how binary values are to be encoded in XML.","defaultValue":"base64","dataType":"Enumeration","allowedValues":"base64,hex","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/xmlbinary","name":"xmlbinary","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"content","description":"Sets whether XML data in implicit parsing and serialization operations is to be - considered as documents or content fragments.","defaultValue":"content","dataType":"Enumeration","allowedValues":"content,document","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/xmloption","name":"xmloption","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"8096","description":"Sets + considered as documents or content fragments.","defaultValue":"content","dataType":"Enumeration","allowedValues":"content,document","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/xmloption","name":"xmloption","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"off","description":"Forces + use of parallel query facilities.","defaultValue":"off","dataType":"Enumeration","allowedValues":"off,on,regress","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/force_parallel_mode","name":"force_parallel_mode","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"0","description":"Sets + the maximum allowed duration of any idling transaction.","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/idle_in_transaction_session_timeout","name":"idle_in_transaction_session_timeout","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"0","description":"Sets + the maximum number of parallel processes per executor node.","defaultValue":"0","dataType":"Integer","allowedValues":"0-1024","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/max_parallel_workers_per_gather","name":"max_parallel_workers_per_gather","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"8388608","description":"Sets + the minimum size of relations to be considered for parallel scan.","defaultValue":"8388608","dataType":"Integer","allowedValues":"0-715827882","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/min_parallel_relation_size","name":"min_parallel_relation_size","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"1000","description":"Sets + the planner''s estimate of the cost of starting up worker processes for parallel + query.","defaultValue":"1000","dataType":"Numeric","allowedValues":"0-1.79769e+308","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/parallel_setup_cost","name":"parallel_setup_cost","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"0.1","description":"Sets + the planner''s estimate of the cost of passing each tuple (row) from worker + to master backend.","defaultValue":"0.1","dataType":"Numeric","allowedValues":"0-1.79769e+308","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/parallel_tuple_cost","name":"parallel_tuple_cost","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"8096","description":"Sets the amount of memory to be used by internal sort operations and hash tables before writing to temporary disk files.","defaultValue":"8096","dataType":"Integer","allowedValues":"8096-2097151","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/work_mem","name":"work_mem","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"8096","description":"Sets the maximum number of temporary buffers used by each database session.","defaultValue":"8096","dataType":"Integer","allowedValues":"8096-16384","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/temp_buffers","name":"temp_buffers","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"3","description":"Sets how many days a log file is saved for.","defaultValue":"3","dataType":"Integer","allowedValues":"1-7","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/log_retention_days","name":"log_retention_days","type":"Microsoft.DBforPostgreSQL/servers/configurations"}]}'} headers: cache-control: [no-cache] - content-length: ['42755'] + content-length: ['46412'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:28:56 GMT'] + date: ['Wed, 28 Feb 2018 19:48:01 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1241,18 +1249,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"value":[{"properties":{"name":"postgresql-2018-02-22_232502.log","sizeInKB":2,"createdTime":"0001-01-01T00:00:00+00:00","lastModifiedTime":"2018-02-22T23:28:38+00:00","type":"text","url":"https://wasd2prodbrso1fse34.file.core.windows.net/c6c000dd51f84a4f891be911cb1bbbd4/pg_log/postgresql-2018-02-22_232502.log?sv=2015-04-05&sr=f&sig=CzjH1ASc9fXAICUeRv%2BrehDBeQ2CWHTbgvEN7X0LEt0%3D&se=2018-02-23T00%3A29%3A00Z&sp=r"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/logFiles/postgresql-2018-02-22_232502.log","name":"postgresql-2018-02-22_232502.log","type":"Microsoft.DBforPostgreSQL/servers/logFiles"}]}'} + body: {string: '{"value":[{"properties":{"name":"postgresql-2018-02-28_194353.log","sizeInKB":3,"createdTime":"0001-01-01T00:00:00+00:00","lastModifiedTime":"2018-02-28T19:47:42+00:00","type":"text","url":"https://wasd2prodbrso1fse47.file.core.windows.net/67e445dbe0414efdae9ec50e7cbe40fe/pg_log/postgresql-2018-02-28_194353.log?sv=2015-04-05&sr=f&sig=NgIMNICd%2FyD2fRnIxoY15mZ7d9aBxa00uMRzG8g%2BiTk%3D&se=2018-02-28T20%3A48%3A03Z&sp=r"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/logFiles/postgresql-2018-02-28_194353.log","name":"postgresql-2018-02-28_194353.log","type":"Microsoft.DBforPostgreSQL/servers/logFiles"}]}'} headers: cache-control: [no-cache] - content-length: ['816'] + content-length: ['818'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:29:00 GMT'] + date: ['Wed, 28 Feb 2018 19:48:02 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1271,8 +1279,8 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.29] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -1281,12 +1289,12 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Thu, 22 Feb 2018 23:29:01 GMT'] + date: ['Wed, 28 Feb 2018 19:48:03 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdUVE9BVDRKNllZVVdNVVFJUU5CNUJTTVZLSEZRWVVTTFRTNXxFQUVDMjZFNzFBM0RGOTFFLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdMQ1ZKVEI3SU1CRUJRUVM0RVZYRDZVREM3QVVRQkQ1M1paSHw3MTAzRTQwMzM1RDREOTg1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/rdbms/azext_rdbms/tests/recordings/test_postgres_server_mgmt.yaml b/src/rdbms/azext_rdbms/tests/recordings/test_postgres_server_mgmt.yaml index 10cf2d81374..c702e016a0c 100644 --- a/src/rdbms/azext_rdbms/tests/recordings/test_postgres_server_mgmt.yaml +++ b/src/rdbms/azext_rdbms/tests/recordings/test_postgres_server_mgmt.yaml @@ -9,8 +9,8 @@ interactions: Content-Length: ['50'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -20,12 +20,12 @@ interactions: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:46:53 GMT'] + date: ['Wed, 28 Feb 2018 20:07:44 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'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: body: '{"location": "westus", "tags": {"use": "az-test"}}' @@ -37,8 +37,8 @@ interactions: Content-Length: ['50'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.29] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000002?api-version=2017-05-10 @@ -48,12 +48,12 @@ interactions: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:46:54 GMT'] + date: ['Wed, 28 Feb 2018 20:07:46 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'] + x-ms-ratelimit-remaining-subscription-writes: ['1181'] status: {code: 201, message: Created} - request: body: '{"sku": {"name": "GP_Gen4_2"}, "properties": {"storageProfile": {}, "createMode": @@ -67,26 +67,26 @@ interactions: Content-Length: ['226'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-22T23:46:56.773Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T20:07:47.923Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/7a6e90d1-0bfd-480d-a7a2-8e022e090e7b?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8d65e9c8-4fe1-4b3f-bf1b-6be409d8587f?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['74'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:46:56 GMT'] + date: ['Wed, 28 Feb 2018 20:07:47 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/7a6e90d1-0bfd-480d-a7a2-8e022e090e7b?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/8d65e9c8-4fe1-4b3f-bf1b-6be409d8587f?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} - request: body: null @@ -96,17 +96,17 @@ interactions: CommandName: [postgres server create] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/7a6e90d1-0bfd-480d-a7a2-8e022e090e7b?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8d65e9c8-4fe1-4b3f-bf1b-6be409d8587f?api-version=2017-12-01-preview response: - body: {string: '{"name":"7a6e90d1-0bfd-480d-a7a2-8e022e090e7b","status":"InProgress","startTime":"2018-02-22T23:46:56.773Z"}'} + body: {string: '{"name":"8d65e9c8-4fe1-4b3f-bf1b-6be409d8587f","status":"InProgress","startTime":"2018-02-28T20:07:47.923Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:47:58 GMT'] + date: ['Wed, 28 Feb 2018 20:08:50 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -123,17 +123,17 @@ interactions: CommandName: [postgres server create] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/7a6e90d1-0bfd-480d-a7a2-8e022e090e7b?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8d65e9c8-4fe1-4b3f-bf1b-6be409d8587f?api-version=2017-12-01-preview response: - body: {string: '{"name":"7a6e90d1-0bfd-480d-a7a2-8e022e090e7b","status":"Succeeded","startTime":"2018-02-22T23:46:56.773Z"}'} + body: {string: '{"name":"8d65e9c8-4fe1-4b3f-bf1b-6be409d8587f","status":"Succeeded","startTime":"2018-02-28T20:07:47.923Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:48:59 GMT'] + date: ['Wed, 28 Feb 2018 20:09:51 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -150,17 +150,17 @@ interactions: CommandName: [postgres server create] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.5","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-22T23:56:57.15+00:00"},"location":"brazilsouth","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-28T20:17:48.377+00:00"},"location":"brazilsouth","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: ['881'] + content-length: ['882'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:49:00 GMT'] + date: ['Wed, 28 Feb 2018 20:09:52 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -178,18 +178,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.5","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-22T23:56:57.15+00:00"},"location":"brazilsouth","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-28T20:17:48.377+00:00"},"location":"brazilsouth","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: ['881'] + content-length: ['882'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:49:02 GMT'] + date: ['Wed, 28 Feb 2018 20:09:53 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -207,18 +207,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.5","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-22T23:56:57.15+00:00"},"location":"brazilsouth","tags":{"key":"1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-28T20:17:48.377+00:00"},"location":"brazilsouth","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: ['881'] + content-length: ['882'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:49:03 GMT'] + date: ['Wed, 28 Feb 2018 20:09:55 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -239,21 +239,21 @@ interactions: Content-Length: ['218'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-22T23:49:06.663Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T20:09:57.983Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/77decf68-b340-45e4-9405-54016914c3e8?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/9824a617-7aa6-4820-a66a-fa9cc3d6b444?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['74'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:49:06 GMT'] + date: ['Wed, 28 Feb 2018 20:09:58 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/77decf68-b340-45e4-9405-54016914c3e8?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/9824a617-7aa6-4820-a66a-fa9cc3d6b444?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -268,17 +268,17 @@ interactions: CommandName: [postgres server update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/77decf68-b340-45e4-9405-54016914c3e8?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/9824a617-7aa6-4820-a66a-fa9cc3d6b444?api-version=2017-12-01-preview response: - body: {string: '{"name":"77decf68-b340-45e4-9405-54016914c3e8","status":"Succeeded","startTime":"2018-02-22T23:49:06.663Z"}'} + body: {string: '{"name":"9824a617-7aa6-4820-a66a-fa9cc3d6b444","status":"Succeeded","startTime":"2018-02-28T20:09:57.983Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:50:07 GMT'] + date: ['Wed, 28 Feb 2018 20:10:59 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -295,17 +295,17 @@ interactions: CommandName: [postgres server update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.5","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-22T23:56:57.15+00:00"},"location":"brazilsouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-28T20:17:48.377+00:00"},"location":"brazilsouth","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: ['882'] + content-length: ['883'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:50:09 GMT'] + date: ['Wed, 28 Feb 2018 20:11:00 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -323,18 +323,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.5","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-22T23:56:57.15+00:00"},"location":"brazilsouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-28T20:17:48.377+00:00"},"location":"brazilsouth","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: ['882'] + content-length: ['883'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:50:11 GMT'] + date: ['Wed, 28 Feb 2018 20:11:03 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -355,26 +355,26 @@ interactions: Content-Length: ['204'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-22T23:50:14.197Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T20:11:05.623Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/1686cb8e-8e04-4969-89d8-4851504fdbe4?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/f88e7cb6-df37-41b2-b6cb-118310f1afc9?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['74'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:50:14 GMT'] + date: ['Wed, 28 Feb 2018 20:11:05 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/1686cb8e-8e04-4969-89d8-4851504fdbe4?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/f88e7cb6-df37-41b2-b6cb-118310f1afc9?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -384,17 +384,17 @@ interactions: CommandName: [postgres server update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/1686cb8e-8e04-4969-89d8-4851504fdbe4?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/f88e7cb6-df37-41b2-b6cb-118310f1afc9?api-version=2017-12-01-preview response: - body: {string: '{"name":"1686cb8e-8e04-4969-89d8-4851504fdbe4","status":"Succeeded","startTime":"2018-02-22T23:50:14.197Z"}'} + body: {string: '{"name":"f88e7cb6-df37-41b2-b6cb-118310f1afc9","status":"Succeeded","startTime":"2018-02-28T20:11:05.623Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:51:15 GMT'] + date: ['Wed, 28 Feb 2018 20:12:07 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -411,17 +411,17 @@ interactions: CommandName: [postgres server update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_4","tier":"GeneralPurpose","family":"Gen4","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.5","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-22T23:56:57.15+00:00"},"location":"brazilsouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_4","tier":"GeneralPurpose","family":"Gen4","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-28T20:17:48.377+00:00"},"location":"brazilsouth","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: ['882'] + content-length: ['883'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:51:17 GMT'] + date: ['Wed, 28 Feb 2018 20:12:08 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -439,18 +439,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_4","tier":"GeneralPurpose","family":"Gen4","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.5","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-22T23:56:57.15+00:00"},"location":"brazilsouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_4","tier":"GeneralPurpose","family":"Gen4","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-28T20:17:48.377+00:00"},"location":"brazilsouth","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: ['882'] + content-length: ['883'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:51:19 GMT'] + date: ['Wed, 28 Feb 2018 20:12:10 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -468,18 +468,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_4","tier":"GeneralPurpose","family":"Gen4","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.5","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-22T23:56:57.15+00:00"},"location":"brazilsouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_4","tier":"GeneralPurpose","family":"Gen4","capacity":4},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-28T20:17:48.377+00:00"},"location":"brazilsouth","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: ['882'] + content-length: ['883'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:51:20 GMT'] + date: ['Wed, 28 Feb 2018 20:12:11 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -500,26 +500,26 @@ interactions: Content-Length: ['204'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-22T23:51:23.163Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T20:12:14.373Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/c4f603f2-3dda-4ea0-b90f-18a24a9f0c8c?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/4b990c85-2c52-4360-bed0-61af98635f38?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['74'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:51:23 GMT'] + date: ['Wed, 28 Feb 2018 20:12:14 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/c4f603f2-3dda-4ea0-b90f-18a24a9f0c8c?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/4b990c85-2c52-4360-bed0-61af98635f38?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 202, message: Accepted} - request: body: null @@ -529,44 +529,17 @@ interactions: CommandName: [postgres server update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/c4f603f2-3dda-4ea0-b90f-18a24a9f0c8c?api-version=2017-12-01-preview - response: - body: {string: '{"name":"c4f603f2-3dda-4ea0-b90f-18a24a9f0c8c","status":"InProgress","startTime":"2018-02-22T23:51:23.163Z"}'} - headers: - cache-control: [no-cache] - content-length: ['108'] - content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:52:23 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-HTTPAPI/2.0] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [postgres server update] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/c4f603f2-3dda-4ea0-b90f-18a24a9f0c8c?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/4b990c85-2c52-4360-bed0-61af98635f38?api-version=2017-12-01-preview response: - body: {string: '{"name":"c4f603f2-3dda-4ea0-b90f-18a24a9f0c8c","status":"Succeeded","startTime":"2018-02-22T23:51:23.163Z"}'} + body: {string: '{"name":"4b990c85-2c52-4360-bed0-61af98635f38","status":"Succeeded","startTime":"2018-02-28T20:12:14.373Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:53:26 GMT'] + date: ['Wed, 28 Feb 2018 20:13:16 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -583,17 +556,17 @@ interactions: CommandName: [postgres server update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.5","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-22T23:56:57.15+00:00"},"location":"brazilsouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-28T20:17:48.377+00:00"},"location":"brazilsouth","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: ['882'] + content-length: ['883'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:53:28 GMT'] + date: ['Wed, 28 Feb 2018 20:13:17 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -611,18 +584,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.5","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-22T23:56:57.15+00:00"},"location":"brazilsouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.6","sslEnforcement":"Disabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-28T20:17:48.377+00:00"},"location":"brazilsouth","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: ['882'] + content-length: ['883'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:53:32 GMT'] + date: ['Wed, 28 Feb 2018 20:13:19 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -642,26 +615,26 @@ interactions: Content-Length: ['144'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-22T23:53:36.727Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T20:13:21.65Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/a932260b-7543-47d2-ba38-d0dd28842235?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/72582a43-10dd-49e0-b5d4-ef315b464e79?api-version=2017-12-01-preview'] cache-control: [no-cache] - content-length: ['74'] + content-length: ['73'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:53:36 GMT'] + date: ['Wed, 28 Feb 2018 20:13:22 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/a932260b-7543-47d2-ba38-d0dd28842235?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/72582a43-10dd-49e0-b5d4-ef315b464e79?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} - request: body: null @@ -671,17 +644,17 @@ interactions: CommandName: [postgres server update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/a932260b-7543-47d2-ba38-d0dd28842235?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/72582a43-10dd-49e0-b5d4-ef315b464e79?api-version=2017-12-01-preview response: - body: {string: '{"name":"a932260b-7543-47d2-ba38-d0dd28842235","status":"Succeeded","startTime":"2018-02-22T23:53:36.727Z"}'} + body: {string: '{"name":"72582a43-10dd-49e0-b5d4-ef315b464e79","status":"Succeeded","startTime":"2018-02-28T20:13:21.65Z"}'} headers: cache-control: [no-cache] - content-length: ['107'] + content-length: ['106'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:54:37 GMT'] + date: ['Wed, 28 Feb 2018 20:14:25 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -698,17 +671,17 @@ interactions: CommandName: [postgres server update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.5","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-22T23:56:57.15+00:00"},"location":"brazilsouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-28T20:17:48.377+00:00"},"location":"brazilsouth","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: ['881'] + content-length: ['882'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:54:39 GMT'] + date: ['Wed, 28 Feb 2018 20:14:27 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -726,18 +699,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.5","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-22T23:56:57.15+00:00"},"location":"brazilsouth","tags":{"key":"2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-28T20:17:48.377+00:00"},"location":"brazilsouth","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: ['881'] + content-length: ['882'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:54:43 GMT'] + date: ['Wed, 28 Feb 2018 20:14:30 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -757,26 +730,26 @@ interactions: Content-Length: ['137'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-22T23:54:47.973Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T20:14:35.21Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/4978380b-0931-404b-b960-f9bbcee18215?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/28f8022d-0971-493b-a853-819cb8dba7b7?api-version=2017-12-01-preview'] cache-control: [no-cache] - content-length: ['74'] + content-length: ['73'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:54:48 GMT'] + date: ['Wed, 28 Feb 2018 20:14:35 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/4978380b-0931-404b-b960-f9bbcee18215?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/28f8022d-0971-493b-a853-819cb8dba7b7?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} - request: body: null @@ -786,17 +759,17 @@ interactions: CommandName: [postgres server update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/4978380b-0931-404b-b960-f9bbcee18215?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/28f8022d-0971-493b-a853-819cb8dba7b7?api-version=2017-12-01-preview response: - body: {string: '{"name":"4978380b-0931-404b-b960-f9bbcee18215","status":"Succeeded","startTime":"2018-02-22T23:54:47.973Z"}'} + body: {string: '{"name":"28f8022d-0971-493b-a853-819cb8dba7b7","status":"Succeeded","startTime":"2018-02-28T20:14:35.21Z"}'} headers: cache-control: [no-cache] - content-length: ['107'] + content-length: ['106'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:55:49 GMT'] + date: ['Wed, 28 Feb 2018 20:15:36 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -813,17 +786,17 @@ interactions: CommandName: [postgres server update] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.5","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-22T23:56:57.15+00:00"},"location":"brazilsouth","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-28T20:17:48.377+00:00"},"location":"brazilsouth","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: ['881'] + content-length: ['882'] content-type: [application/json; charset=utf-8] - date: ['Thu, 22 Feb 2018 23:55:51 GMT'] + date: ['Wed, 28 Feb 2018 20:15:38 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -841,18 +814,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.5","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-22T23:56:57.15+00:00"},"location":"brazilsouth","tags":{"key":"3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003","name":"azuredbclitest000003","type":"Microsoft.DBforPostgreSQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-28T20:17:48.377+00:00"},"location":"brazilsouth","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: ['881'] + content-length: ['882'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:00:54 GMT'] + date: ['Wed, 28 Feb 2018 20:20:41 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -864,7 +837,7 @@ interactions: - request: body: 'b''b\''{"properties": {"createMode": "PointInTimeRestore", "sourceServerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003", - "restorePointInTime": "2018-02-23T00:00:52.11467999999999999Z"}, "location": + "restorePointInTime": "2018-02-28T20:20:39.16227999999999998Z"}, "location": "brazilsouth"}\''''' headers: Accept: [application/json] @@ -874,21 +847,21 @@ interactions: Content-Length: ['415'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"RestoreElasticServer","startTime":"2018-02-23T00:00:56.583Z"}'} + body: {string: '{"operation":"RestoreElasticServer","startTime":"2018-02-28T20:20:44.307Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6b573941-b173-44f6-8aa5-4bf9147ca37f?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['75'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:00:56 GMT'] + date: ['Wed, 28 Feb 2018 20:20:44 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/6b573941-b173-44f6-8aa5-4bf9147ca37f?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -903,17 +876,71 @@ interactions: CommandName: [postgres server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview + response: + body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + headers: + cache-control: [no-cache] + content-length: ['108'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 28 Feb 2018 20:20:56 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [postgres server restore] + Connection: [keep-alive] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview + response: + body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + headers: + cache-control: [no-cache] + content-length: ['108'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 28 Feb 2018 20:21: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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6b573941-b173-44f6-8aa5-4bf9147ca37f?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview response: - body: {string: '{"name":"6b573941-b173-44f6-8aa5-4bf9147ca37f","status":"InProgress","startTime":"2018-02-23T00:00:56.583Z"}'} + body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:01:08 GMT'] + date: ['Wed, 28 Feb 2018 20:21:19 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -930,17 +957,17 @@ interactions: CommandName: [postgres server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6b573941-b173-44f6-8aa5-4bf9147ca37f?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview response: - body: {string: '{"name":"6b573941-b173-44f6-8aa5-4bf9147ca37f","status":"InProgress","startTime":"2018-02-23T00:00:56.583Z"}'} + body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:01:19 GMT'] + date: ['Wed, 28 Feb 2018 20:21:29 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -957,17 +984,17 @@ interactions: CommandName: [postgres server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6b573941-b173-44f6-8aa5-4bf9147ca37f?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview response: - body: {string: '{"name":"6b573941-b173-44f6-8aa5-4bf9147ca37f","status":"InProgress","startTime":"2018-02-23T00:00:56.583Z"}'} + body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:01:31 GMT'] + date: ['Wed, 28 Feb 2018 20:21:41 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -984,17 +1011,17 @@ interactions: CommandName: [postgres server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6b573941-b173-44f6-8aa5-4bf9147ca37f?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview response: - body: {string: '{"name":"6b573941-b173-44f6-8aa5-4bf9147ca37f","status":"InProgress","startTime":"2018-02-23T00:00:56.583Z"}'} + body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:01:42 GMT'] + date: ['Wed, 28 Feb 2018 20:21:52 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1011,17 +1038,17 @@ interactions: CommandName: [postgres server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6b573941-b173-44f6-8aa5-4bf9147ca37f?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview response: - body: {string: '{"name":"6b573941-b173-44f6-8aa5-4bf9147ca37f","status":"InProgress","startTime":"2018-02-23T00:00:56.583Z"}'} + body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:01:53 GMT'] + date: ['Wed, 28 Feb 2018 20:22:03 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1038,17 +1065,17 @@ interactions: CommandName: [postgres server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6b573941-b173-44f6-8aa5-4bf9147ca37f?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview response: - body: {string: '{"name":"6b573941-b173-44f6-8aa5-4bf9147ca37f","status":"InProgress","startTime":"2018-02-23T00:00:56.583Z"}'} + body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:02:05 GMT'] + date: ['Wed, 28 Feb 2018 20:22:15 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1065,17 +1092,17 @@ interactions: CommandName: [postgres server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6b573941-b173-44f6-8aa5-4bf9147ca37f?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview response: - body: {string: '{"name":"6b573941-b173-44f6-8aa5-4bf9147ca37f","status":"InProgress","startTime":"2018-02-23T00:00:56.583Z"}'} + body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:02:16 GMT'] + date: ['Wed, 28 Feb 2018 20:22:26 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1092,17 +1119,17 @@ interactions: CommandName: [postgres server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6b573941-b173-44f6-8aa5-4bf9147ca37f?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview response: - body: {string: '{"name":"6b573941-b173-44f6-8aa5-4bf9147ca37f","status":"InProgress","startTime":"2018-02-23T00:00:56.583Z"}'} + body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:02:27 GMT'] + date: ['Wed, 28 Feb 2018 20:22:38 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1119,17 +1146,17 @@ interactions: CommandName: [postgres server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6b573941-b173-44f6-8aa5-4bf9147ca37f?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview response: - body: {string: '{"name":"6b573941-b173-44f6-8aa5-4bf9147ca37f","status":"InProgress","startTime":"2018-02-23T00:00:56.583Z"}'} + body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:02:39 GMT'] + date: ['Wed, 28 Feb 2018 20:22:49 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1146,17 +1173,17 @@ interactions: CommandName: [postgres server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6b573941-b173-44f6-8aa5-4bf9147ca37f?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview response: - body: {string: '{"name":"6b573941-b173-44f6-8aa5-4bf9147ca37f","status":"InProgress","startTime":"2018-02-23T00:00:56.583Z"}'} + body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:02:50 GMT'] + date: ['Wed, 28 Feb 2018 20:23:01 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1173,17 +1200,17 @@ interactions: CommandName: [postgres server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6b573941-b173-44f6-8aa5-4bf9147ca37f?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview response: - body: {string: '{"name":"6b573941-b173-44f6-8aa5-4bf9147ca37f","status":"InProgress","startTime":"2018-02-23T00:00:56.583Z"}'} + body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:03:02 GMT'] + date: ['Wed, 28 Feb 2018 20:23:13 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1200,17 +1227,17 @@ interactions: CommandName: [postgres server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6b573941-b173-44f6-8aa5-4bf9147ca37f?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview response: - body: {string: '{"name":"6b573941-b173-44f6-8aa5-4bf9147ca37f","status":"InProgress","startTime":"2018-02-23T00:00:56.583Z"}'} + body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:03:13 GMT'] + date: ['Wed, 28 Feb 2018 20:23:23 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1227,17 +1254,17 @@ interactions: CommandName: [postgres server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6b573941-b173-44f6-8aa5-4bf9147ca37f?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview response: - body: {string: '{"name":"6b573941-b173-44f6-8aa5-4bf9147ca37f","status":"InProgress","startTime":"2018-02-23T00:00:56.583Z"}'} + body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:03:24 GMT'] + date: ['Wed, 28 Feb 2018 20:23:35 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1254,17 +1281,17 @@ interactions: CommandName: [postgres server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6b573941-b173-44f6-8aa5-4bf9147ca37f?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview response: - body: {string: '{"name":"6b573941-b173-44f6-8aa5-4bf9147ca37f","status":"InProgress","startTime":"2018-02-23T00:00:56.583Z"}'} + body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:03:36 GMT'] + date: ['Wed, 28 Feb 2018 20:23:46 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1281,17 +1308,17 @@ interactions: CommandName: [postgres server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6b573941-b173-44f6-8aa5-4bf9147ca37f?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview response: - body: {string: '{"name":"6b573941-b173-44f6-8aa5-4bf9147ca37f","status":"InProgress","startTime":"2018-02-23T00:00:56.583Z"}'} + body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:03:48 GMT'] + date: ['Wed, 28 Feb 2018 20:23:57 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1308,17 +1335,152 @@ interactions: CommandName: [postgres server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6b573941-b173-44f6-8aa5-4bf9147ca37f?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview response: - body: {string: '{"name":"6b573941-b173-44f6-8aa5-4bf9147ca37f","status":"Succeeded","startTime":"2018-02-23T00:00:56.583Z"}'} + body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + headers: + cache-control: [no-cache] + content-length: ['108'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 28 Feb 2018 20:24:09 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [postgres server restore] + Connection: [keep-alive] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview + response: + body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + headers: + cache-control: [no-cache] + content-length: ['108'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 28 Feb 2018 20:24:20 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [postgres server restore] + Connection: [keep-alive] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview + response: + body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + headers: + cache-control: [no-cache] + content-length: ['108'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 28 Feb 2018 20:24: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 restore] + Connection: [keep-alive] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview + response: + body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + headers: + cache-control: [no-cache] + content-length: ['108'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 28 Feb 2018 20:24:43 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [postgres server restore] + Connection: [keep-alive] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview + response: + body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + headers: + cache-control: [no-cache] + content-length: ['108'] + content-type: [application/json; charset=utf-8] + date: ['Wed, 28 Feb 2018 20:24: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 restore] + Connection: [keep-alive] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/92d57301-c006-4b87-a245-c3c2f0ddd3aa?api-version=2017-12-01-preview + response: + body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"Succeeded","startTime":"2018-02-28T20:20:44.307Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:03:59 GMT'] + date: ['Wed, 28 Feb 2018 20:25:05 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1335,17 +1497,17 @@ interactions: CommandName: [postgres server restore] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.5","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.postgres.database.azure.com","earliestRestoreDate":"2018-02-23T00:10:56.927+00:00"},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforPostgreSQL/servers"}'} + body: {string: '{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.postgres.database.azure.com","earliestRestoreDate":"2018-02-28T20:30:44.68+00:00"},"location":"brazilsouth","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: ['863'] + content-length: ['862'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:04:00 GMT'] + date: ['Wed, 28 Feb 2018 20:25:07 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1363,18 +1525,18 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"value":[{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.5","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.postgres.database.azure.com","earliestRestoreDate":"2018-02-23T00:10:56.927+00:00"},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforPostgreSQL/servers"}]}'} + body: {string: '{"value":[{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.postgres.database.azure.com","earliestRestoreDate":"2018-02-28T20:30:44.68+00:00"},"location":"brazilsouth","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: ['875'] + content-length: ['874'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:04:05 GMT'] + date: ['Wed, 28 Feb 2018 20:25:10 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1392,25 +1554,24 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"value":[{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.5","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-22T23:56:57.15+00:00"},"location":"brazilsouth","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_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.5","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.postgres.database.azure.com","earliestRestoreDate":"2018-02-23T00:10:56.927+00:00"},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforPostgreSQL/servers"}]}'} + body: {string: '{"value":[{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"rohit","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"rohit2dbcreate.postgres.database.azure.com","earliestRestoreDate":"2018-02-27T22:55:38.073+00:00"},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OrcasGATesting/providers/Microsoft.DBforPostgreSQL/servers/rohit2dbcreate","name":"rohit2dbcreate","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"GP_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclitest000003.postgres.database.azure.com","earliestRestoreDate":"2018-02-28T20:17:48.377+00:00"},"location":"brazilsouth","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_Gen4_2","tier":"GeneralPurpose","family":"Gen4","capacity":2},"properties":{"administratorLogin":"cloudsa","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"azuredbclirestore000004.postgres.database.azure.com","earliestRestoreDate":"2018-02-28T20:30:44.68+00:00"},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirestore000004","name":"azuredbclirestore000004","type":"Microsoft.DBforPostgreSQL/servers"},{"sku":{"name":"B_Gen4_1","tier":"Basic","family":"Gen4","capacity":1},"properties":{"administratorLogin":"deaadmin","storageProfile":{"storageMB":51200,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"9.6","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"dataexperimentation.postgres.database.azure.com","earliestRestoreDate":"2018-02-21T20:25:13.1796999+00:00"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/postgresstest/providers/Microsoft.DBforPostgreSQL/servers/dataexperimentation","name":"dataexperimentation","type":"Microsoft.DBforPostgreSQL/servers"}]}'} headers: cache-control: [no-cache] - content-length: ['1757'] + content-length: ['3073'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:04:07 GMT'] + date: ['Wed, 28 Feb 2018 20:25:14 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] + x-ms-original-request-ids: [85d4cfb6-74fa-463d-979a-efb5bfd23019, e377c326-05f3-4d41-947c-6f29e1360d67] status: {code: 200, message: OK} - request: body: null @@ -1422,21 +1583,21 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"DropElasticServer","startTime":"2018-02-23T00:04:12.083Z"}'} + body: {string: '{"operation":"DropElasticServer","startTime":"2018-02-28T20:25:17.867Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/34229148-6b2b-455c-9fc2-ffb751cf99ac?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/96534d71-609f-4a62-a8d0-6094b31f9540?api-version=2017-12-01-preview'] cache-control: [no-cache] content-length: ['72'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:04:12 GMT'] + date: ['Wed, 28 Feb 2018 20:25:17 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/34229148-6b2b-455c-9fc2-ffb751cf99ac?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/96534d71-609f-4a62-a8d0-6094b31f9540?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1451,17 +1612,17 @@ interactions: CommandName: [postgres server delete] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/34229148-6b2b-455c-9fc2-ffb751cf99ac?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/96534d71-609f-4a62-a8d0-6094b31f9540?api-version=2017-12-01-preview response: - body: {string: '{"name":"34229148-6b2b-455c-9fc2-ffb751cf99ac","status":"Succeeded","startTime":"2018-02-23T00:04:12.083Z"}'} + body: {string: '{"name":"96534d71-609f-4a62-a8d0-6094b31f9540","status":"Succeeded","startTime":"2018-02-28T20:25:17.867Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:04:28 GMT'] + date: ['Wed, 28 Feb 2018 20:25:34 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1480,26 +1641,26 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] 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-preview response: - body: {string: '{"operation":"DropElasticServer","startTime":"2018-02-23T00:04:32.613Z"}'} + body: {string: '{"operation":"DropElasticServer","startTime":"2018-02-28T20:25:38.54Z"}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/2641eb3c-d00e-477b-8a3f-f1637b832054?api-version=2017-12-01-preview'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8300c2a6-32b4-4474-bf0e-e8f8c3feeca5?api-version=2017-12-01-preview'] cache-control: [no-cache] - content-length: ['72'] + content-length: ['71'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:04:33 GMT'] + date: ['Wed, 28 Feb 2018 20:25:38 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/2641eb3c-d00e-477b-8a3f-f1637b832054?api-version=2017-12-01-preview'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/8300c2a6-32b4-4474-bf0e-e8f8c3feeca5?api-version=2017-12-01-preview'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1194'] status: {code: 202, message: Accepted} - request: body: null @@ -1509,17 +1670,17 @@ interactions: CommandName: [postgres server delete] Connection: [keep-alive] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/2641eb3c-d00e-477b-8a3f-f1637b832054?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/8300c2a6-32b4-4474-bf0e-e8f8c3feeca5?api-version=2017-12-01-preview response: - body: {string: '{"name":"2641eb3c-d00e-477b-8a3f-f1637b832054","status":"Succeeded","startTime":"2018-02-23T00:04:32.613Z"}'} + body: {string: '{"name":"8300c2a6-32b4-4474-bf0e-e8f8c3feeca5","status":"Succeeded","startTime":"2018-02-28T20:25:38.54Z"}'} headers: cache-control: [no-cache] - content-length: ['107'] + content-length: ['106'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:04:49 GMT'] + date: ['Wed, 28 Feb 2018 20:25:54 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1537,8 +1698,8 @@ interactions: Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python + AZURECLI/2.0.29] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers?api-version=2017-12-01-preview @@ -1548,12 +1709,10 @@ interactions: cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Fri, 23 Feb 2018 00:04:52 GMT'] + date: ['Wed, 28 Feb 2018 20:25: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} @@ -1567,8 +1726,8 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.29] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000002?api-version=2017-05-10 @@ -1577,13 +1736,13 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Fri, 23 Feb 2018 00:04:56 GMT'] + date: ['Wed, 28 Feb 2018 20:26:01 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc1UkxBSlJMN1I2QTJONjVNMkM0VkRETzVVTFBWT0k2QUJBQ3w4OTZENkFCNTYyNkQ2MkFGLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdFN0FRUko0QjU3UFIyWkRVUlY1UlZGVVRaSjJJSjVBUFEyR3xBMTlFODZENjNGQjk3QzBBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -1595,8 +1754,8 @@ interactions: Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.28] + msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.29] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -1605,12 +1764,12 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Fri, 23 Feb 2018 00:04:59 GMT'] + date: ['Wed, 28 Feb 2018 20:26:04 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdIMlE3VjdBU0ZKWFRKVTZDTEpLT1pGS0laQ1ZSWVhSSkJMN3w5MjMzRkExNjNERDcwMjc1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdPVU5FNVdPM1dTMlZOMjQyNEtXN0cyTE83WFlaSEU0NFNWWnxBQzc2NzQxNTU5NEJCODIyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/rdbms/setup.py b/src/rdbms/setup.py index b8eeebf0078..36f9e614e5f 100644 --- a/src/rdbms/setup.py +++ b/src/rdbms/setup.py @@ -8,7 +8,7 @@ from codecs import open from setuptools import setup, find_packages -VERSION = "0.0.2" +VERSION = "0.0.3" CLASSIFIERS = [ 'Development Status :: 4 - Beta',