diff --git a/src/index.json b/src/index.json index 318fb88361f..ee936f88efb 100644 --- a/src/index.json +++ b/src/index.json @@ -415,9 +415,9 @@ ], "rdbms": [ { - "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", + "filename": "rdbms-0.0.4-py2.py3-none-any.whl", + "sha256Digest": "6e0f6d39c98c3a39c9664ed54576b2e0f1cd23b412b137f19815a276e7510350", + "downloadUrl": "https://prodrdbmsclipackages.blob.core.windows.net/cliextensions/rdbms-0.0.4-py2.py3-none-any.whl", "metadata": { "classifiers": [ "Development Status :: 4 - Beta", @@ -454,7 +454,7 @@ "metadata_version": "2.0", "name": "rdbms", "summary": "An Azure CLI Extension to manage Azure MySQL and Azure PostgreSQL resources", - "version": "0.0.3" + "version": "0.0.4" } } ], diff --git a/src/rdbms/azext_rdbms/mysql/models/log_file.py b/src/rdbms/azext_rdbms/mysql/models/log_file.py index 7ca4f91fe2a..56ba143dae2 100644 --- a/src/rdbms/azext_rdbms/mysql/models/log_file.py +++ b/src/rdbms/azext_rdbms/mysql/models/log_file.py @@ -24,8 +24,6 @@ class LogFile(ProxyResource): :vartype name: str :ivar type: Resource type. :vartype type: str - :param log_file_name: Log file name. - :type log_file_name: str :param size_in_kb: Size of the log file. :type size_in_kb: long :ivar created_time: Creation timestamp of the log file. @@ -50,7 +48,6 @@ class LogFile(ProxyResource): 'id': {'key': 'id', 'type': 'str'}, 'name': {'key': 'name', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, - 'log_file_name': {'key': 'properties.name', 'type': 'str'}, 'size_in_kb': {'key': 'properties.sizeInKB', 'type': 'long'}, 'created_time': {'key': 'properties.createdTime', 'type': 'iso-8601'}, 'last_modified_time': {'key': 'properties.lastModifiedTime', 'type': 'iso-8601'}, @@ -58,9 +55,8 @@ class LogFile(ProxyResource): 'url': {'key': 'properties.url', 'type': 'str'}, } - def __init__(self, log_file_name=None, size_in_kb=None, log_file_type=None, url=None): + def __init__(self, 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 = None self.last_modified_time = None diff --git a/src/rdbms/azext_rdbms/mysql/models/performance_tier_properties.py b/src/rdbms/azext_rdbms/mysql/models/performance_tier_properties.py index 36a99895f4c..dd50ed653f8 100644 --- a/src/rdbms/azext_rdbms/mysql/models/performance_tier_properties.py +++ b/src/rdbms/azext_rdbms/mysql/models/performance_tier_properties.py @@ -17,16 +17,6 @@ class PerformanceTierProperties(Model): :param id: ID of the performance tier. :type id: str - :param max_backup_retention_days: Maximum Backup retention in days for the - performance tier edition - :type max_backup_retention_days: int - :param min_backup_retention_days: Minimum Backup retention in days for the - performance tier edition - :type min_backup_retention_days: int - :param max_storage_mb: Max storage allowed for a server. - :type max_storage_mb: int - :param min_storage_mb: Max storage allowed for a server. - :type min_storage_mb: int :param service_level_objectives: Service level objectives associated with the performance tier :type service_level_objectives: @@ -35,18 +25,10 @@ class PerformanceTierProperties(Model): _attribute_map = { 'id': {'key': 'id', 'type': 'str'}, - 'max_backup_retention_days': {'key': 'maxBackupRetentionDays', 'type': 'int'}, - 'min_backup_retention_days': {'key': 'minBackupRetentionDays', 'type': 'int'}, - 'max_storage_mb': {'key': 'maxStorageMB', 'type': 'int'}, - 'min_storage_mb': {'key': 'minStorageMB', 'type': 'int'}, 'service_level_objectives': {'key': 'serviceLevelObjectives', 'type': '[PerformanceTierServiceLevelObjectives]'}, } - def __init__(self, id=None, max_backup_retention_days=None, min_backup_retention_days=None, max_storage_mb=None, min_storage_mb=None, service_level_objectives=None): + def __init__(self, id=None, service_level_objectives=None): super(PerformanceTierProperties, self).__init__() self.id = id - self.max_backup_retention_days = max_backup_retention_days - self.min_backup_retention_days = min_backup_retention_days - self.max_storage_mb = max_storage_mb - self.min_storage_mb = min_storage_mb self.service_level_objectives = service_level_objectives diff --git a/src/rdbms/azext_rdbms/mysql/models/performance_tier_service_level_objectives.py b/src/rdbms/azext_rdbms/mysql/models/performance_tier_service_level_objectives.py index 96ba9e7c889..08541b20c60 100644 --- a/src/rdbms/azext_rdbms/mysql/models/performance_tier_service_level_objectives.py +++ b/src/rdbms/azext_rdbms/mysql/models/performance_tier_service_level_objectives.py @@ -24,6 +24,16 @@ class PerformanceTierServiceLevelObjectives(Model): :param hardware_generation: Hardware generation associated with the service level objective :type hardware_generation: str + :param max_backup_retention_days: Maximum Backup retention in days for the + performance tier edition + :type max_backup_retention_days: int + :param min_backup_retention_days: Minimum Backup retention in days for the + performance tier edition + :type min_backup_retention_days: int + :param max_storage_mb: Max storage allowed for a server. + :type max_storage_mb: int + :param min_storage_mb: Max storage allowed for a server. + :type min_storage_mb: int """ _attribute_map = { @@ -31,11 +41,19 @@ class PerformanceTierServiceLevelObjectives(Model): 'edition': {'key': 'edition', 'type': 'str'}, 'v_core': {'key': 'vCore', 'type': 'int'}, 'hardware_generation': {'key': 'hardwareGeneration', 'type': 'str'}, + 'max_backup_retention_days': {'key': 'maxBackupRetentionDays', 'type': 'int'}, + 'min_backup_retention_days': {'key': 'minBackupRetentionDays', 'type': 'int'}, + 'max_storage_mb': {'key': 'maxStorageMB', 'type': 'int'}, + 'min_storage_mb': {'key': 'minStorageMB', 'type': 'int'}, } - def __init__(self, id=None, edition=None, v_core=None, hardware_generation=None): + def __init__(self, id=None, edition=None, v_core=None, hardware_generation=None, max_backup_retention_days=None, min_backup_retention_days=None, max_storage_mb=None, min_storage_mb=None): super(PerformanceTierServiceLevelObjectives, self).__init__() self.id = id self.edition = edition self.v_core = v_core self.hardware_generation = hardware_generation + self.max_backup_retention_days = max_backup_retention_days + self.min_backup_retention_days = min_backup_retention_days + self.max_storage_mb = max_storage_mb + self.min_storage_mb = min_storage_mb diff --git a/src/rdbms/azext_rdbms/mysql/my_sql_management_client.py b/src/rdbms/azext_rdbms/mysql/my_sql_management_client.py index 36dbfea74df..789f4fd8984 100644 --- a/src/rdbms/azext_rdbms/mysql/my_sql_management_client.py +++ b/src/rdbms/azext_rdbms/mysql/my_sql_management_client.py @@ -96,7 +96,7 @@ def __init__( self._client = ServiceClient(self.config.credentials, self.config) client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} - self.api_version = '2017-12-01-preview' + self.api_version = '2017-12-01' self._serialize = Serializer(client_models) self._deserialize = Deserializer(client_models) 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 3f80b148cc6..d7212d29648 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 @@ -23,7 +23,7 @@ class CheckNameAvailabilityOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". + :ivar api_version: The API version to use for the request. Constant value: "2017-12-01". """ models = models @@ -33,7 +33,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2017-12-01-preview" + self.api_version = "2017-12-01" self.config = config diff --git a/src/rdbms/azext_rdbms/mysql/operations/configurations_operations.py b/src/rdbms/azext_rdbms/mysql/operations/configurations_operations.py index 6e7eb565a59..7dfdb70fc1d 100644 --- a/src/rdbms/azext_rdbms/mysql/operations/configurations_operations.py +++ b/src/rdbms/azext_rdbms/mysql/operations/configurations_operations.py @@ -25,7 +25,7 @@ class ConfigurationsOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". + :ivar api_version: The API version to use for the request. Constant value: "2017-12-01". """ models = models @@ -35,7 +35,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2017-12-01-preview" + self.api_version = "2017-12-01" self.config = config diff --git a/src/rdbms/azext_rdbms/mysql/operations/databases_operations.py b/src/rdbms/azext_rdbms/mysql/operations/databases_operations.py index 0b34de11fff..5d294b9de38 100644 --- a/src/rdbms/azext_rdbms/mysql/operations/databases_operations.py +++ b/src/rdbms/azext_rdbms/mysql/operations/databases_operations.py @@ -25,7 +25,7 @@ class DatabasesOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". + :ivar api_version: The API version to use for the request. Constant value: "2017-12-01". """ models = models @@ -35,7 +35,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2017-12-01-preview" + self.api_version = "2017-12-01" self.config = config 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 4429b21fa9e..3d8aa4f4e2f 100644 --- a/src/rdbms/azext_rdbms/mysql/operations/firewall_rules_operations.py +++ b/src/rdbms/azext_rdbms/mysql/operations/firewall_rules_operations.py @@ -25,7 +25,7 @@ class FirewallRulesOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". + :ivar api_version: The API version to use for the request. Constant value: "2017-12-01". """ models = models @@ -35,7 +35,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2017-12-01-preview" + self.api_version = "2017-12-01" self.config = config 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 95e2415c7ac..ad72ff2e518 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 @@ -23,7 +23,7 @@ class LocationBasedPerformanceTierOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". + :ivar api_version: The API version to use for the request. Constant value: "2017-12-01". """ models = models @@ -33,7 +33,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2017-12-01-preview" + self.api_version = "2017-12-01" self.config = config 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 cd215197c74..113a981bc87 100644 --- a/src/rdbms/azext_rdbms/mysql/operations/log_files_operations.py +++ b/src/rdbms/azext_rdbms/mysql/operations/log_files_operations.py @@ -23,7 +23,7 @@ class LogFilesOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". + :ivar api_version: The API version to use for the request. Constant value: "2017-12-01". """ models = models @@ -33,7 +33,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2017-12-01-preview" + self.api_version = "2017-12-01" self.config = config diff --git a/src/rdbms/azext_rdbms/mysql/operations/operations.py b/src/rdbms/azext_rdbms/mysql/operations/operations.py index 0da8f005aab..3e99cc4f817 100644 --- a/src/rdbms/azext_rdbms/mysql/operations/operations.py +++ b/src/rdbms/azext_rdbms/mysql/operations/operations.py @@ -23,7 +23,7 @@ class Operations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". + :ivar api_version: The API version to use for the request. Constant value: "2017-12-01". """ models = models @@ -33,7 +33,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2017-12-01-preview" + self.api_version = "2017-12-01" self.config = config diff --git a/src/rdbms/azext_rdbms/mysql/operations/servers_operations.py b/src/rdbms/azext_rdbms/mysql/operations/servers_operations.py index 068a8483a14..6679e48634d 100644 --- a/src/rdbms/azext_rdbms/mysql/operations/servers_operations.py +++ b/src/rdbms/azext_rdbms/mysql/operations/servers_operations.py @@ -25,7 +25,7 @@ class ServersOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". + :ivar api_version: The API version to use for the request. Constant value: "2017-12-01". """ models = models @@ -35,7 +35,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2017-12-01-preview" + self.api_version = "2017-12-01" self.config = config diff --git a/src/rdbms/azext_rdbms/mysql/version.py b/src/rdbms/azext_rdbms/mysql/version.py index 1fbac86a92f..fb0159ed93d 100644 --- a/src/rdbms/azext_rdbms/mysql/version.py +++ b/src/rdbms/azext_rdbms/mysql/version.py @@ -9,4 +9,4 @@ # regenerated. # -------------------------------------------------------------------------- -VERSION = "2017-12-01-preview" +VERSION = "0.1.0" diff --git a/src/rdbms/azext_rdbms/postgresql/models/log_file.py b/src/rdbms/azext_rdbms/postgresql/models/log_file.py index 7ca4f91fe2a..56ba143dae2 100644 --- a/src/rdbms/azext_rdbms/postgresql/models/log_file.py +++ b/src/rdbms/azext_rdbms/postgresql/models/log_file.py @@ -24,8 +24,6 @@ class LogFile(ProxyResource): :vartype name: str :ivar type: Resource type. :vartype type: str - :param log_file_name: Log file name. - :type log_file_name: str :param size_in_kb: Size of the log file. :type size_in_kb: long :ivar created_time: Creation timestamp of the log file. @@ -50,7 +48,6 @@ class LogFile(ProxyResource): 'id': {'key': 'id', 'type': 'str'}, 'name': {'key': 'name', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, - 'log_file_name': {'key': 'properties.name', 'type': 'str'}, 'size_in_kb': {'key': 'properties.sizeInKB', 'type': 'long'}, 'created_time': {'key': 'properties.createdTime', 'type': 'iso-8601'}, 'last_modified_time': {'key': 'properties.lastModifiedTime', 'type': 'iso-8601'}, @@ -58,9 +55,8 @@ class LogFile(ProxyResource): 'url': {'key': 'properties.url', 'type': 'str'}, } - def __init__(self, log_file_name=None, size_in_kb=None, log_file_type=None, url=None): + def __init__(self, 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 = None self.last_modified_time = None diff --git a/src/rdbms/azext_rdbms/postgresql/models/performance_tier_properties.py b/src/rdbms/azext_rdbms/postgresql/models/performance_tier_properties.py index f9cab7e5fbe..cb1c8d45112 100644 --- a/src/rdbms/azext_rdbms/postgresql/models/performance_tier_properties.py +++ b/src/rdbms/azext_rdbms/postgresql/models/performance_tier_properties.py @@ -17,16 +17,6 @@ class PerformanceTierProperties(Model): :param id: ID of the performance tier. :type id: str - :param max_backup_retention_days: Maximum Backup retention in days for the - performance tier edition - :type max_backup_retention_days: int - :param min_backup_retention_days: Minimum Backup retention in days for the - performance tier edition - :type min_backup_retention_days: int - :param max_storage_mb: Max storage allowed for a server. - :type max_storage_mb: int - :param min_storage_mb: Max storage allowed for a server. - :type min_storage_mb: int :param service_level_objectives: Service level objectives associated with the performance tier :type service_level_objectives: @@ -35,18 +25,10 @@ class PerformanceTierProperties(Model): _attribute_map = { 'id': {'key': 'id', 'type': 'str'}, - 'max_backup_retention_days': {'key': 'maxBackupRetentionDays', 'type': 'int'}, - 'min_backup_retention_days': {'key': 'minBackupRetentionDays', 'type': 'int'}, - 'max_storage_mb': {'key': 'maxStorageMB', 'type': 'int'}, - 'min_storage_mb': {'key': 'minStorageMB', 'type': 'int'}, 'service_level_objectives': {'key': 'serviceLevelObjectives', 'type': '[PerformanceTierServiceLevelObjectives]'}, } - def __init__(self, id=None, max_backup_retention_days=None, min_backup_retention_days=None, max_storage_mb=None, min_storage_mb=None, service_level_objectives=None): + def __init__(self, id=None, service_level_objectives=None): super(PerformanceTierProperties, self).__init__() self.id = id - self.max_backup_retention_days = max_backup_retention_days - self.min_backup_retention_days = min_backup_retention_days - self.max_storage_mb = max_storage_mb - self.min_storage_mb = min_storage_mb self.service_level_objectives = service_level_objectives diff --git a/src/rdbms/azext_rdbms/postgresql/models/performance_tier_service_level_objectives.py b/src/rdbms/azext_rdbms/postgresql/models/performance_tier_service_level_objectives.py index 96ba9e7c889..08541b20c60 100644 --- a/src/rdbms/azext_rdbms/postgresql/models/performance_tier_service_level_objectives.py +++ b/src/rdbms/azext_rdbms/postgresql/models/performance_tier_service_level_objectives.py @@ -24,6 +24,16 @@ class PerformanceTierServiceLevelObjectives(Model): :param hardware_generation: Hardware generation associated with the service level objective :type hardware_generation: str + :param max_backup_retention_days: Maximum Backup retention in days for the + performance tier edition + :type max_backup_retention_days: int + :param min_backup_retention_days: Minimum Backup retention in days for the + performance tier edition + :type min_backup_retention_days: int + :param max_storage_mb: Max storage allowed for a server. + :type max_storage_mb: int + :param min_storage_mb: Max storage allowed for a server. + :type min_storage_mb: int """ _attribute_map = { @@ -31,11 +41,19 @@ class PerformanceTierServiceLevelObjectives(Model): 'edition': {'key': 'edition', 'type': 'str'}, 'v_core': {'key': 'vCore', 'type': 'int'}, 'hardware_generation': {'key': 'hardwareGeneration', 'type': 'str'}, + 'max_backup_retention_days': {'key': 'maxBackupRetentionDays', 'type': 'int'}, + 'min_backup_retention_days': {'key': 'minBackupRetentionDays', 'type': 'int'}, + 'max_storage_mb': {'key': 'maxStorageMB', 'type': 'int'}, + 'min_storage_mb': {'key': 'minStorageMB', 'type': 'int'}, } - def __init__(self, id=None, edition=None, v_core=None, hardware_generation=None): + def __init__(self, id=None, edition=None, v_core=None, hardware_generation=None, max_backup_retention_days=None, min_backup_retention_days=None, max_storage_mb=None, min_storage_mb=None): super(PerformanceTierServiceLevelObjectives, self).__init__() self.id = id self.edition = edition self.v_core = v_core self.hardware_generation = hardware_generation + self.max_backup_retention_days = max_backup_retention_days + self.min_backup_retention_days = min_backup_retention_days + self.max_storage_mb = max_storage_mb + self.min_storage_mb = min_storage_mb diff --git a/src/rdbms/azext_rdbms/postgresql/models/postgre_sql_management_client_enums.py b/src/rdbms/azext_rdbms/postgresql/models/postgre_sql_management_client_enums.py index ccaa28a4dda..c58d5ac929d 100644 --- a/src/rdbms/azext_rdbms/postgresql/models/postgre_sql_management_client_enums.py +++ b/src/rdbms/azext_rdbms/postgresql/models/postgre_sql_management_client_enums.py @@ -40,7 +40,8 @@ class GeoRedundantBackup(Enum): class SkuTier(Enum): basic = "Basic" - standard = "Standard" + general_purpose = "GeneralPurpose" + memory_optimized = "MemoryOptimized" class OperationOrigin(Enum): diff --git a/src/rdbms/azext_rdbms/postgresql/models/sku.py b/src/rdbms/azext_rdbms/postgresql/models/sku.py index 77d15a740b3..fb973426b82 100644 --- a/src/rdbms/azext_rdbms/postgresql/models/sku.py +++ b/src/rdbms/azext_rdbms/postgresql/models/sku.py @@ -19,7 +19,7 @@ class Sku(Model): B_Gen4_1, GP_Gen5_8. :type name: str :param tier: The tier of the particular SKU, e.g. Basic. Possible values - include: 'Basic', 'Standard' + include: 'Basic', 'GeneralPurpose', 'MemoryOptimized' :type tier: str or ~azure.mgmt.rdbms.postgresql.models.SkuTier :param capacity: The scale up/out capacity, representing server's compute units. 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 0063ef2f00b..18904a3d002 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 @@ -23,7 +23,7 @@ class CheckNameAvailabilityOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". + :ivar api_version: The API version to use for the request. Constant value: "2017-12-01". """ models = models @@ -33,7 +33,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2017-12-01-preview" + self.api_version = "2017-12-01" self.config = config diff --git a/src/rdbms/azext_rdbms/postgresql/operations/configurations_operations.py b/src/rdbms/azext_rdbms/postgresql/operations/configurations_operations.py index 3b05def60d9..64b9d83210c 100644 --- a/src/rdbms/azext_rdbms/postgresql/operations/configurations_operations.py +++ b/src/rdbms/azext_rdbms/postgresql/operations/configurations_operations.py @@ -25,7 +25,7 @@ class ConfigurationsOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". + :ivar api_version: The API version to use for the request. Constant value: "2017-12-01". """ models = models @@ -35,7 +35,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2017-12-01-preview" + self.api_version = "2017-12-01" self.config = config diff --git a/src/rdbms/azext_rdbms/postgresql/operations/databases_operations.py b/src/rdbms/azext_rdbms/postgresql/operations/databases_operations.py index dd1a3ed9675..cfd4ee7ae05 100644 --- a/src/rdbms/azext_rdbms/postgresql/operations/databases_operations.py +++ b/src/rdbms/azext_rdbms/postgresql/operations/databases_operations.py @@ -25,7 +25,7 @@ class DatabasesOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". + :ivar api_version: The API version to use for the request. Constant value: "2017-12-01". """ models = models @@ -35,7 +35,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2017-12-01-preview" + self.api_version = "2017-12-01" self.config = config 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 07d47bda47e..82410f3d1d9 100644 --- a/src/rdbms/azext_rdbms/postgresql/operations/firewall_rules_operations.py +++ b/src/rdbms/azext_rdbms/postgresql/operations/firewall_rules_operations.py @@ -25,7 +25,7 @@ class FirewallRulesOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". + :ivar api_version: The API version to use for the request. Constant value: "2017-12-01". """ models = models @@ -35,7 +35,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2017-12-01-preview" + self.api_version = "2017-12-01" self.config = config 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 939debda4c2..6ec7e16a894 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 @@ -23,7 +23,7 @@ class LocationBasedPerformanceTierOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". + :ivar api_version: The API version to use for the request. Constant value: "2017-12-01". """ models = models @@ -33,7 +33,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2017-12-01-preview" + self.api_version = "2017-12-01" self.config = config 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 69dc04d78b0..b1eb3b583f8 100644 --- a/src/rdbms/azext_rdbms/postgresql/operations/log_files_operations.py +++ b/src/rdbms/azext_rdbms/postgresql/operations/log_files_operations.py @@ -23,7 +23,7 @@ class LogFilesOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". + :ivar api_version: The API version to use for the request. Constant value: "2017-12-01". """ models = models @@ -33,7 +33,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2017-12-01-preview" + self.api_version = "2017-12-01" self.config = config diff --git a/src/rdbms/azext_rdbms/postgresql/operations/operations.py b/src/rdbms/azext_rdbms/postgresql/operations/operations.py index 35bad449165..0f99df04b8b 100644 --- a/src/rdbms/azext_rdbms/postgresql/operations/operations.py +++ b/src/rdbms/azext_rdbms/postgresql/operations/operations.py @@ -23,7 +23,7 @@ class Operations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". + :ivar api_version: The API version to use for the request. Constant value: "2017-12-01". """ models = models @@ -33,7 +33,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2017-12-01-preview" + self.api_version = "2017-12-01" self.config = config diff --git a/src/rdbms/azext_rdbms/postgresql/operations/servers_operations.py b/src/rdbms/azext_rdbms/postgresql/operations/servers_operations.py index d16cc5eb2f4..c6944576af8 100644 --- a/src/rdbms/azext_rdbms/postgresql/operations/servers_operations.py +++ b/src/rdbms/azext_rdbms/postgresql/operations/servers_operations.py @@ -25,7 +25,7 @@ class ServersOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2017-12-01-preview". + :ivar api_version: The API version to use for the request. Constant value: "2017-12-01". """ models = models @@ -35,7 +35,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2017-12-01-preview" + self.api_version = "2017-12-01" self.config = config diff --git a/src/rdbms/azext_rdbms/postgresql/postgre_sql_management_client.py b/src/rdbms/azext_rdbms/postgresql/postgre_sql_management_client.py index 183c1a955f8..205e43afb3b 100644 --- a/src/rdbms/azext_rdbms/postgresql/postgre_sql_management_client.py +++ b/src/rdbms/azext_rdbms/postgresql/postgre_sql_management_client.py @@ -96,7 +96,7 @@ def __init__( self._client = ServiceClient(self.config.credentials, self.config) client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} - self.api_version = '2017-12-01-preview' + self.api_version = '2017-12-01' self._serialize = Serializer(client_models) self._deserialize = Deserializer(client_models) diff --git a/src/rdbms/azext_rdbms/postgresql/version.py b/src/rdbms/azext_rdbms/postgresql/version.py index 1fbac86a92f..fb0159ed93d 100644 --- a/src/rdbms/azext_rdbms/postgresql/version.py +++ b/src/rdbms/azext_rdbms/postgresql/version.py @@ -9,4 +9,4 @@ # regenerated. # -------------------------------------------------------------------------- -VERSION = "2017-12-01-preview" +VERSION = "0.1.0" 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 f0d9d900fa5..1319b7e5756 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 @@ -8,9 +8,9 @@ interactions: Connection: [keep-alive] 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 + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.29] + AZURECLI/2.0.30] 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,7 +20,7 @@ interactions: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:36:48 GMT'] + date: ['Mon, 19 Mar 2018 23:42:29 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -38,22 +38,21 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002?api-version=2017-12-01 response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T19:36:49.467Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-03-19T23:42:31.587Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/6657b7af-9738-4815-b082-38a0a96407c2?api-version=2017-12-01'] cache-control: [no-cache] content-length: ['74'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:36:49 GMT'] + date: ['Mon, 19 Mar 2018 23:42:31 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/6657b7af-9738-4815-b082-38a0a96407c2?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -67,18 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/6657b7af-9738-4815-b082-38a0a96407c2?api-version=2017-12-01 response: - body: {string: '{"name":"1063ddc3-27a2-45ad-a84e-dfd916c3f572","status":"InProgress","startTime":"2018-02-28T19:36:49.467Z"}'} + body: {string: '{"name":"6657b7af-9738-4815-b082-38a0a96407c2","status":"InProgress","startTime":"2018-03-19T23:42:31.587Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:37:51 GMT'] + date: ['Mon, 19 Mar 2018 23:43:32 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -94,18 +92,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/6657b7af-9738-4815-b082-38a0a96407c2?api-version=2017-12-01 response: - body: {string: '{"name":"1063ddc3-27a2-45ad-a84e-dfd916c3f572","status":"Succeeded","startTime":"2018-02-28T19:36:49.467Z"}'} + body: {string: '{"name":"6657b7af-9738-4815-b082-38a0a96407c2","status":"Succeeded","startTime":"2018-03-19T23:42:31.587Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:38:52 GMT'] + date: ['Mon, 19 Mar 2018 23:44:33 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -121,18 +118,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-19T23:52:31.947+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforMySQL/servers"}'} headers: cache-control: [no-cache] - content-length: ['892'] + content-length: ['916'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:38:54 GMT'] + date: ['Mon, 19 Mar 2018 23:44:35 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -150,22 +146,21 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: - body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-28T19:38:55.6Z"}'} + body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-03-19T23:44:37.807Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e610f4df-f04f-4bd2-841f-a943b74dc426?api-version=2017-12-01'] cache-control: [no-cache] - content-length: ['85'] + content-length: ['87'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:38:56 GMT'] + date: ['Mon, 19 Mar 2018 23:44:37 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/e610f4df-f04f-4bd2-841f-a943b74dc426?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -179,18 +174,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e610f4df-f04f-4bd2-841f-a943b74dc426?api-version=2017-12-01 response: - body: {string: '{"name":"49daec2d-3037-49ca-90b4-3b3770f41ebb","status":"Succeeded","startTime":"2018-02-28T19:38:55.6Z"}'} + body: {string: '{"name":"e610f4df-f04f-4bd2-841f-a943b74dc426","status":"Succeeded","startTime":"2018-03-19T23:44:37.807Z"}'} headers: cache-control: [no-cache] - content-length: ['105'] + content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:39:12 GMT'] + date: ['Mon, 19 Mar 2018 23:44:53 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -206,18 +200,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: {string: '{"properties":{"startIpAddress":"0.0.0.0","endIpAddress":"255.255.255.255"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1","name":"rule1","type":"Microsoft.DBforMySQL/servers/firewallRules"}'} headers: cache-control: [no-cache] content-length: ['416'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:39:13 GMT'] + date: ['Mon, 19 Mar 2018 23:44:55 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -234,19 +227,18 @@ interactions: CommandName: [mysql server firewall-rule show] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: {string: '{"properties":{"startIpAddress":"0.0.0.0","endIpAddress":"255.255.255.255"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1","name":"rule1","type":"Microsoft.DBforMySQL/servers/firewallRules"}'} headers: cache-control: [no-cache] content-length: ['416'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:39:15 GMT'] + date: ['Mon, 19 Mar 2018 23:44:56 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -263,19 +255,18 @@ interactions: CommandName: [mysql server firewall-rule update] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: {string: '{"properties":{"startIpAddress":"0.0.0.0","endIpAddress":"255.255.255.255"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1","name":"rule1","type":"Microsoft.DBforMySQL/servers/firewallRules"}'} headers: cache-control: [no-cache] content-length: ['416'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:39:17 GMT'] + date: ['Mon, 19 Mar 2018 23:44:58 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -293,27 +284,26 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: - body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-28T19:39:18.753Z"}'} + body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-03-19T23:45:00.72Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/d7db5cd1-980f-446c-968f-7bb69d3019e5?api-version=2017-12-01'] cache-control: [no-cache] - content-length: ['87'] + content-length: ['86'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:39:19 GMT'] + date: ['Mon, 19 Mar 2018 23:44:59 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/d7db5cd1-980f-446c-968f-7bb69d3019e5?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -322,18 +312,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/d7db5cd1-980f-446c-968f-7bb69d3019e5?api-version=2017-12-01 response: - body: {string: '{"name":"5158af10-b3a0-461d-bc90-27781406b66a","status":"Succeeded","startTime":"2018-02-28T19:39:18.753Z"}'} + body: {string: '{"name":"d7db5cd1-980f-446c-968f-7bb69d3019e5","status":"Succeeded","startTime":"2018-03-19T23:45:00.72Z"}'} headers: cache-control: [no-cache] - content-length: ['107'] + content-length: ['106'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:39:35 GMT'] + date: ['Mon, 19 Mar 2018 23:45:17 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -349,18 +338,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: {string: '{"properties":{"startIpAddress":"123.123.123.123","endIpAddress":"123.123.123.124"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1","name":"rule1","type":"Microsoft.DBforMySQL/servers/firewallRules"}'} headers: cache-control: [no-cache] content-length: ['424'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:39:37 GMT'] + date: ['Mon, 19 Mar 2018 23:45:17 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -377,19 +365,18 @@ interactions: CommandName: [mysql server firewall-rule update] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: {string: '{"properties":{"startIpAddress":"123.123.123.123","endIpAddress":"123.123.123.124"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1","name":"rule1","type":"Microsoft.DBforMySQL/servers/firewallRules"}'} headers: cache-control: [no-cache] content-length: ['424'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:39:39 GMT'] + date: ['Mon, 19 Mar 2018 23:45:20 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -407,22 +394,21 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: - body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-28T19:39:41.277Z"}'} + body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-03-19T23:45:22.237Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/a845a557-214f-4a99-b6c1-f388a5d8054d?api-version=2017-12-01'] cache-control: [no-cache] content-length: ['87'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:39:41 GMT'] + date: ['Mon, 19 Mar 2018 23:45:21 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/a845a557-214f-4a99-b6c1-f388a5d8054d?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -436,18 +422,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/a845a557-214f-4a99-b6c1-f388a5d8054d?api-version=2017-12-01 response: - body: {string: '{"name":"76e5992c-8027-474b-98b9-3f22d5f14591","status":"Succeeded","startTime":"2018-02-28T19:39:41.277Z"}'} + body: {string: '{"name":"a845a557-214f-4a99-b6c1-f388a5d8054d","status":"Succeeded","startTime":"2018-03-19T23:45:22.237Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:39:57 GMT'] + date: ['Mon, 19 Mar 2018 23:45:38 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -463,18 +448,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: {string: '{"properties":{"startIpAddress":"0.0.0.0","endIpAddress":"123.123.123.124"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1","name":"rule1","type":"Microsoft.DBforMySQL/servers/firewallRules"}'} headers: cache-control: [no-cache] content-length: ['416'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:39:59 GMT'] + date: ['Mon, 19 Mar 2018 23:45:39 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -491,19 +475,18 @@ interactions: CommandName: [mysql server firewall-rule update] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: {string: '{"properties":{"startIpAddress":"0.0.0.0","endIpAddress":"123.123.123.124"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1","name":"rule1","type":"Microsoft.DBforMySQL/servers/firewallRules"}'} headers: cache-control: [no-cache] content-length: ['416'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:40:01 GMT'] + date: ['Mon, 19 Mar 2018 23:45:41 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -521,27 +504,26 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: - body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-28T19:40:02.913Z"}'} + body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-03-19T23:45:43.633Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/8937cb3a-1e70-438f-ba3b-bbb889c8ab13?api-version=2017-12-01'] cache-control: [no-cache] content-length: ['87'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:40:03 GMT'] + date: ['Mon, 19 Mar 2018 23:45:42 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/8937cb3a-1e70-438f-ba3b-bbb889c8ab13?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -550,18 +532,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/8937cb3a-1e70-438f-ba3b-bbb889c8ab13?api-version=2017-12-01 response: - body: {string: '{"name":"45c9f0cb-0e6e-472c-bc58-c11b29766f95","status":"Succeeded","startTime":"2018-02-28T19:40:02.913Z"}'} + body: {string: '{"name":"8937cb3a-1e70-438f-ba3b-bbb889c8ab13","status":"Succeeded","startTime":"2018-03-19T23:45:43.633Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:40:19 GMT'] + date: ['Mon, 19 Mar 2018 23:45:59 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -577,18 +558,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: {string: '{"properties":{"startIpAddress":"0.0.0.0","endIpAddress":"255.255.255.255"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1","name":"rule1","type":"Microsoft.DBforMySQL/servers/firewallRules"}'} headers: cache-control: [no-cache] content-length: ['416'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:40:20 GMT'] + date: ['Mon, 19 Mar 2018 23:46:00 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -606,27 +586,26 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule2?api-version=2017-12-01 response: - body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-28T19:40:22.81Z"}'} + body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-03-19T23:46:03.56Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/0af8db9e-06a5-460b-8433-ceada1474309?api-version=2017-12-01'] cache-control: [no-cache] content-length: ['86'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:40:23 GMT'] + date: ['Mon, 19 Mar 2018 23:46:02 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/0af8db9e-06a5-460b-8433-ceada1474309?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -635,18 +614,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/0af8db9e-06a5-460b-8433-ceada1474309?api-version=2017-12-01 response: - body: {string: '{"name":"aa2e9f31-6700-4a1e-ba8b-43e83a29b481","status":"Succeeded","startTime":"2018-02-28T19:40:22.81Z"}'} + body: {string: '{"name":"0af8db9e-06a5-460b-8433-ceada1474309","status":"Succeeded","startTime":"2018-03-19T23:46:03.56Z"}'} headers: cache-control: [no-cache] content-length: ['106'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:40:39 GMT'] + date: ['Mon, 19 Mar 2018 23:46:19 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -662,18 +640,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule2?api-version=2017-12-01 response: body: {string: '{"properties":{"startIpAddress":"123.123.123.123","endIpAddress":"123.123.123.124"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule2","name":"rule2","type":"Microsoft.DBforMySQL/servers/firewallRules"}'} headers: cache-control: [no-cache] content-length: ['424'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:40:45 GMT'] + date: ['Mon, 19 Mar 2018 23:46:20 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -690,19 +667,18 @@ interactions: CommandName: [mysql server firewall-rule list] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + 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 response: body: {string: '{"value":[{"properties":{"startIpAddress":"0.0.0.0","endIpAddress":"255.255.255.255"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1","name":"rule1","type":"Microsoft.DBforMySQL/servers/firewallRules"},{"properties":{"startIpAddress":"123.123.123.123","endIpAddress":"123.123.123.124"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule2","name":"rule2","type":"Microsoft.DBforMySQL/servers/firewallRules"}]}'} headers: cache-control: [no-cache] content-length: ['853'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:40:49 GMT'] + date: ['Mon, 19 Mar 2018 23:46:23 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -720,27 +696,26 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: - body: {string: '{"operation":"DropElasticServerFirewallRule","startTime":"2018-02-28T19:40:50.147Z"}'} + body: {string: '{"operation":"DropElasticServerFirewallRule","startTime":"2018-03-19T23:46:24.89Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/8162e448-041d-4269-83a9-22134dfa09a3?api-version=2017-12-01'] cache-control: [no-cache] - content-length: ['84'] + content-length: ['83'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:40:50 GMT'] + date: ['Mon, 19 Mar 2018 23:46:24 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/8162e448-041d-4269-83a9-22134dfa09a3?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -749,18 +724,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/8162e448-041d-4269-83a9-22134dfa09a3?api-version=2017-12-01 response: - body: {string: '{"name":"01c65259-5616-4917-a7f8-01a4b570e6cd","status":"Succeeded","startTime":"2018-02-28T19:40:50.147Z"}'} + body: {string: '{"name":"8162e448-041d-4269-83a9-22134dfa09a3","status":"Succeeded","startTime":"2018-03-19T23:46:24.89Z"}'} headers: cache-control: [no-cache] - content-length: ['107'] + content-length: ['106'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:41:06 GMT'] + date: ['Mon, 19 Mar 2018 23:46:40 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -777,19 +751,18 @@ interactions: CommandName: [mysql server firewall-rule list] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + 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 response: body: {string: '{"value":[{"properties":{"startIpAddress":"123.123.123.123","endIpAddress":"123.123.123.124"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule2","name":"rule2","type":"Microsoft.DBforMySQL/servers/firewallRules"}]}'} headers: cache-control: [no-cache] content-length: ['436'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:41:09 GMT'] + date: ['Mon, 19 Mar 2018 23:46:42 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -807,22 +780,21 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/firewallRules/rule2?api-version=2017-12-01 response: - body: {string: '{"operation":"DropElasticServerFirewallRule","startTime":"2018-02-28T19:41:10.413Z"}'} + body: {string: '{"operation":"DropElasticServerFirewallRule","startTime":"2018-03-19T23:46:45.493Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/0941fcfe-3dcb-4b93-b28b-576c1a0b26af?api-version=2017-12-01'] cache-control: [no-cache] content-length: ['84'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:41:11 GMT'] + date: ['Mon, 19 Mar 2018 23:46:45 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/0941fcfe-3dcb-4b93-b28b-576c1a0b26af?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -836,18 +808,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/0941fcfe-3dcb-4b93-b28b-576c1a0b26af?api-version=2017-12-01 response: - body: {string: '{"name":"17339501-1322-4872-86ed-c51944553c0e","status":"Succeeded","startTime":"2018-02-28T19:41:10.413Z"}'} + body: {string: '{"name":"0941fcfe-3dcb-4b93-b28b-576c1a0b26af","status":"Succeeded","startTime":"2018-03-19T23:46:45.493Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:41:27 GMT'] + date: ['Mon, 19 Mar 2018 23:47:01 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -864,19 +835,18 @@ interactions: CommandName: [mysql server firewall-rule list] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + 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 response: body: {string: '{"value":[]}'} headers: cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:41:29 GMT'] + date: ['Mon, 19 Mar 2018 23:47:03 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -893,19 +863,18 @@ interactions: CommandName: [mysql db list] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + 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 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"},{"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: ['1647'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:41:32 GMT'] + date: ['Mon, 19 Mar 2018 23:47:05 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -922,12 +891,11 @@ interactions: CommandName: [mysql server configuration show] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/log_slow_admin_statements?api-version=2017-12-01 response: body: {string: '{"properties":{"value":"OFF","description":"Include slow administrative statements in the statements written to the slow query log.","defaultValue":"OFF","dataType":"Enumeration","allowedValues":"ON,OFF","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/log_slow_admin_statements","name":"log_slow_admin_statements","type":"Microsoft.DBforMySQL/servers/configurations"}'} @@ -935,7 +903,7 @@ interactions: cache-control: [no-cache] content-length: ['613'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:41:35 GMT'] + date: ['Mon, 19 Mar 2018 23:47:06 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -953,22 +921,21 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/log_slow_admin_statements?api-version=2017-12-01 response: - body: {string: '{"operation":"UpdateElasticServerConfig","startTime":"2018-02-28T19:41:36.893Z"}'} + body: {string: '{"operation":"UpdateElasticServerConfig","startTime":"2018-03-19T23:47:09.307Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/b8a7c779-05bd-4ef1-87d9-7749eabcbdd1?api-version=2017-12-01'] cache-control: [no-cache] content-length: ['80'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:41:37 GMT'] + date: ['Mon, 19 Mar 2018 23:47:09 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/b8a7c779-05bd-4ef1-87d9-7749eabcbdd1?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -982,18 +949,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/b8a7c779-05bd-4ef1-87d9-7749eabcbdd1?api-version=2017-12-01 response: - body: {string: '{"name":"846d94d1-1cd0-436b-8701-5c722f1b0955","status":"Succeeded","startTime":"2018-02-28T19:41:36.893Z"}'} + body: {string: '{"name":"b8a7c779-05bd-4ef1-87d9-7749eabcbdd1","status":"Succeeded","startTime":"2018-03-19T23:47:09.307Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:41:53 GMT'] + date: ['Mon, 19 Mar 2018 23:47:25 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1009,11 +975,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/log_slow_admin_statements?api-version=2017-12-01 response: body: {string: '{"properties":{"value":"ON","description":"Include slow administrative statements in the statements written to the slow query log.","defaultValue":"OFF","dataType":"Enumeration","allowedValues":"ON,OFF","source":"user-override"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/log_slow_admin_statements","name":"log_slow_admin_statements","type":"Microsoft.DBforMySQL/servers/configurations"}'} @@ -1021,7 +986,7 @@ interactions: cache-control: [no-cache] content-length: ['611'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:41:55 GMT'] + date: ['Mon, 19 Mar 2018 23:47:26 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1039,27 +1004,26 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/log_slow_admin_statements?api-version=2017-12-01 response: - body: {string: '{"operation":"UpdateElasticServerConfig","startTime":"2018-02-28T19:41:56.89Z"}'} + body: {string: '{"operation":"UpdateElasticServerConfig","startTime":"2018-03-19T23:47:29.163Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/2dcc625a-2ef5-42b6-b36c-f8797e59d64a?api-version=2017-12-01'] cache-control: [no-cache] - content-length: ['79'] + content-length: ['80'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:41:56 GMT'] + date: ['Mon, 19 Mar 2018 23:47:29 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/2dcc625a-2ef5-42b6-b36c-f8797e59d64a?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -1068,18 +1032,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/2dcc625a-2ef5-42b6-b36c-f8797e59d64a?api-version=2017-12-01 response: - body: {string: '{"name":"480ee636-accd-4794-815d-3dc9c3fe800c","status":"Succeeded","startTime":"2018-02-28T19:41:56.89Z"}'} + body: {string: '{"name":"2dcc625a-2ef5-42b6-b36c-f8797e59d64a","status":"Succeeded","startTime":"2018-03-19T23:47:29.163Z"}'} headers: cache-control: [no-cache] - content-length: ['106'] + content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:42:13 GMT'] + date: ['Mon, 19 Mar 2018 23:47:45 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1095,11 +1058,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/log_slow_admin_statements?api-version=2017-12-01 response: body: {string: '{"properties":{"value":"OFF","description":"Include slow administrative statements in the statements written to the slow query log.","defaultValue":"OFF","dataType":"Enumeration","allowedValues":"ON,OFF","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/log_slow_admin_statements","name":"log_slow_admin_statements","type":"Microsoft.DBforMySQL/servers/configurations"}'} @@ -1107,7 +1069,7 @@ interactions: cache-control: [no-cache] content-length: ['613'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:42:15 GMT'] + date: ['Mon, 19 Mar 2018 23:47:46 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1124,12 +1086,11 @@ interactions: CommandName: [mysql server configuration list] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + 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 response: body: {string: '{"value":[{"properties":{"value":"OFF","description":"Indicates the status of the Event Scheduler.","defaultValue":"OFF","dataType":"Enumeration","allowedValues":"ON,OFF,DISABLED","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/event_scheduler","name":"event_scheduler","type":"Microsoft.DBforMySQL/servers/configurations"},{"properties":{"value":"4","description":"Number @@ -1161,7 +1122,7 @@ 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":"544730783","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":"3408824671","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 @@ -1212,9 +1173,9 @@ interactions: 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: ['29201'] + content-length: ['29202'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:42:16 GMT'] + date: ['Mon, 19 Mar 2018 23:47:48 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1232,22 +1193,21 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/slow_query_log?api-version=2017-12-01 response: - body: {string: '{"operation":"UpdateElasticServerConfig","startTime":"2018-02-28T19:42:19.003Z"}'} + body: {string: '{"operation":"UpdateElasticServerConfig","startTime":"2018-03-19T23:47:51.007Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/3389c153-3d16-43d1-93b8-55d2a6442fd2?api-version=2017-12-01'] cache-control: [no-cache] content-length: ['80'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:42:19 GMT'] + date: ['Mon, 19 Mar 2018 23:47:50 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/3389c153-3d16-43d1-93b8-55d2a6442fd2?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1261,18 +1221,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/3389c153-3d16-43d1-93b8-55d2a6442fd2?api-version=2017-12-01 response: - body: {string: '{"name":"8b80a1b8-879e-48c2-a916-322a873b882d","status":"Succeeded","startTime":"2018-02-28T19:42:19.003Z"}'} + body: {string: '{"name":"3389c153-3d16-43d1-93b8-55d2a6442fd2","status":"Succeeded","startTime":"2018-03-19T23:47:51.007Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:42:36 GMT'] + date: ['Mon, 19 Mar 2018 23:48:06 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1288,11 +1247,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/slow_query_log?api-version=2017-12-01 response: body: {string: '{"properties":{"value":"ON","description":"Enable or disable the slow query log","defaultValue":"OFF","dataType":"Enumeration","allowedValues":"ON,OFF","source":"user-override"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/configurations/slow_query_log","name":"slow_query_log","type":"Microsoft.DBforMySQL/servers/configurations"}'} @@ -1300,7 +1258,7 @@ interactions: cache-control: [no-cache] content-length: ['538'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:42:36 GMT'] + date: ['Mon, 19 Mar 2018 23:48:08 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1317,19 +1275,18 @@ interactions: CommandName: [mysql server-logs list] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/logFiles?api-version=2017-12-01 response: - body: {string: '{"value":[{"properties":{"name":"mysql-slow-azuredbclitest000002-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"}]}'} + body: {string: '{"value":[{"properties":{"name":"mysql-slow-azuredbclitest000002-2018031923.log","sizeInKB":1,"createdTime":"0001-01-01T00:00:00+00:00","lastModifiedTime":"2018-03-19T23:47:51+00:00","type":"slowlog","url":"https://wasd2prodbrso1fse33.file.core.windows.net/6dcdcd23be7941e9aa02fbbd0f730ac5/serverlogs/mysql-slow-azuredbclitest000002-2018031923.log?sv=2015-04-05&sr=f&sig=uxpv%2BcRwDQeygvziwCZvJhmCZSt4kAV3Q7WdvBtTJv4%3D&se=2018-03-20T00%3A48%3A10Z&sp=r"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000002/logFiles/mysql-slow-azuredbclitest000002-2018031923.log","name":"mysql-slow-azuredbclitest000002-2018031923.log","type":"Microsoft.DBforMySQL/servers/logFiles"}]}'} headers: cache-control: [no-cache] - content-length: ['1043'] + content-length: ['1041'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:42:38 GMT'] + date: ['Mon, 19 Mar 2018 23:48:10 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1347,9 +1304,9 @@ interactions: Connection: [keep-alive] 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 + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.29] + AZURECLI/2.0.30] 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 @@ -1358,9 +1315,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 28 Feb 2018 19:42:39 GMT'] + date: ['Mon, 19 Mar 2018 23:48:11 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdCUVhDSlJOTElCRDZMN0xRV05EVUJRNktXMzNLT1RUQUdBQnw1OUIwMjI3MzdBMDZFNDgxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdJWjMyVUVXNlQ3VlFGR0hUV01ETDRCNVRWSktCR1haNjVLQXwzOTYyN0NFQUNGRTU4MDg3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?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_mysql_server_mgmt.yaml b/src/rdbms/azext_rdbms/tests/recordings/test_mysql_server_mgmt.yaml index 3c3b72cc598..78dcfff84ec 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 @@ -8,9 +8,9 @@ interactions: Connection: [keep-alive] 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 + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.29] + AZURECLI/2.0.30] 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,7 +20,7 @@ interactions: cache-control: [no-cache] content-length: ['328'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:48:04 GMT'] + date: ['Mon, 19 Mar 2018 23:53:34 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -36,9 +36,9 @@ interactions: Connection: [keep-alive] 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 + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.29] + AZURECLI/2.0.30] 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: ['Wed, 28 Feb 2018 19:48:06 GMT'] + date: ['Mon, 19 Mar 2018 23:53:36 GMT'] expires: ['-1'] 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: 201, message: Created} - request: body: '{"sku": {"name": "GP_Gen4_2"}, "properties": {"storageProfile": {}, "createMode": @@ -66,22 +66,21 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T19:48:07.973Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-03-19T23:53:38.35Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/6ccfd719-222c-4b69-87ed-3437479c8305?api-version=2017-12-01'] cache-control: [no-cache] - content-length: ['74'] + content-length: ['73'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:48:08 GMT'] + date: ['Mon, 19 Mar 2018 23:53:38 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/6ccfd719-222c-4b69-87ed-3437479c8305?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -95,18 +94,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/6ccfd719-222c-4b69-87ed-3437479c8305?api-version=2017-12-01 response: - body: {string: '{"name":"7997bef5-2cd4-475e-a9f8-54597d5269ee","status":"InProgress","startTime":"2018-02-28T19:48:07.973Z"}'} + body: {string: '{"name":"6ccfd719-222c-4b69-87ed-3437479c8305","status":"InProgress","startTime":"2018-03-19T23:53:38.35Z"}'} headers: cache-control: [no-cache] - content-length: ['108'] + content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:49:09 GMT'] + date: ['Mon, 19 Mar 2018 23:54:39 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -122,18 +120,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/6ccfd719-222c-4b69-87ed-3437479c8305?api-version=2017-12-01 response: - body: {string: '{"name":"7997bef5-2cd4-475e-a9f8-54597d5269ee","status":"Succeeded","startTime":"2018-02-28T19:48:07.973Z"}'} + body: {string: '{"name":"6ccfd719-222c-4b69-87ed-3437479c8305","status":"Succeeded","startTime":"2018-03-19T23:53:38.35Z"}'} headers: cache-control: [no-cache] - content-length: ['107'] + content-length: ['106'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:50:10 GMT'] + date: ['Mon, 19 Mar 2018 23:55:40 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -149,18 +146,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:03:38.71+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['911'] + content-length: ['934'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:50:11 GMT'] + date: ['Mon, 19 Mar 2018 23:55:42 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -177,19 +173,18 @@ interactions: CommandName: [mysql server show] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:03:38.71+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['911'] + content-length: ['934'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:50:14 GMT'] + date: ['Mon, 19 Mar 2018 23:55:42 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -206,19 +201,18 @@ interactions: CommandName: [mysql server update] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:03:38.71+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['911'] + content-length: ['934'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:50:15 GMT'] + date: ['Mon, 19 Mar 2018 23:55:44 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -238,27 +232,26 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T19:50:18.477Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-03-19T23:55:48.503Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/8bcb1e87-f0b8-4297-8ccd-8ec9d6099b68?api-version=2017-12-01'] cache-control: [no-cache] content-length: ['74'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:50:19 GMT'] + date: ['Mon, 19 Mar 2018 23:55:48 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/8bcb1e87-f0b8-4297-8ccd-8ec9d6099b68?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -267,18 +260,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/8bcb1e87-f0b8-4297-8ccd-8ec9d6099b68?api-version=2017-12-01 response: - body: {string: '{"name":"deb71585-b6a1-4fea-ae00-a592e35eb84f","status":"Succeeded","startTime":"2018-02-28T19:50:18.477Z"}'} + body: {string: '{"name":"8bcb1e87-f0b8-4297-8ccd-8ec9d6099b68","status":"Succeeded","startTime":"2018-03-19T23:55:48.503Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:51:20 GMT'] + date: ['Mon, 19 Mar 2018 23:56:49 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -294,18 +286,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:03:38.71+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['912'] + content-length: ['935'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:51:21 GMT'] + date: ['Mon, 19 Mar 2018 23:56:50 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -322,19 +313,18 @@ interactions: CommandName: [mysql server update] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:03:38.71+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['912'] + content-length: ['935'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:51:22 GMT'] + date: ['Mon, 19 Mar 2018 23:56:53 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -354,27 +344,26 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T19:51:25.24Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-03-19T23:56:56.023Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e3f07d06-7711-4dc7-91d6-4ec5e81f2059?api-version=2017-12-01'] cache-control: [no-cache] - content-length: ['73'] + content-length: ['74'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:51:24 GMT'] + date: ['Mon, 19 Mar 2018 23:56:55 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/e3f07d06-7711-4dc7-91d6-4ec5e81f2059?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1192'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} - request: body: null @@ -383,18 +372,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e3f07d06-7711-4dc7-91d6-4ec5e81f2059?api-version=2017-12-01 response: - body: {string: '{"name":"89b33dce-afe7-4ae2-a9bd-2da265138e54","status":"Succeeded","startTime":"2018-02-28T19:51:25.24Z"}'} + body: {string: '{"name":"e3f07d06-7711-4dc7-91d6-4ec5e81f2059","status":"Succeeded","startTime":"2018-03-19T23:56:56.023Z"}'} headers: cache-control: [no-cache] - content-length: ['106'] + content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:52:26 GMT'] + date: ['Mon, 19 Mar 2018 23:57:57 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -410,18 +398,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:03:38.71+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['912'] + content-length: ['935'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:52:28 GMT'] + date: ['Mon, 19 Mar 2018 23:57:58 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -438,19 +425,18 @@ interactions: CommandName: [mysql server show] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:03:38.71+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['912'] + content-length: ['935'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:52:30 GMT'] + date: ['Mon, 19 Mar 2018 23:58:01 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -467,19 +453,18 @@ interactions: CommandName: [mysql server update] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:03:38.71+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['912'] + content-length: ['935'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:52:31 GMT'] + date: ['Mon, 19 Mar 2018 23:58:02 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -499,27 +484,26 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T19:52:33.857Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-03-19T23:58:05.837Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/58259d1c-a95f-4292-a699-b3bb656c0e5b?api-version=2017-12-01'] cache-control: [no-cache] content-length: ['74'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:52:34 GMT'] + date: ['Mon, 19 Mar 2018 23:58:05 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/58259d1c-a95f-4292-a699-b3bb656c0e5b?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -528,45 +512,17 @@ interactions: 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":"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:53:35 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-HTTPAPI/2.0] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [mysql server 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/58259d1c-a95f-4292-a699-b3bb656c0e5b?api-version=2017-12-01 response: - body: {string: '{"name":"310bb9c0-2f54-4d7f-81a1-45e616be62d4","status":"InProgress","startTime":"2018-02-28T19:52:33.857Z"}'} + body: {string: '{"name":"58259d1c-a95f-4292-a699-b3bb656c0e5b","status":"InProgress","startTime":"2018-03-19T23:58:05.837Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:54:37 GMT'] + date: ['Mon, 19 Mar 2018 23:59:06 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -582,18 +538,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/58259d1c-a95f-4292-a699-b3bb656c0e5b?api-version=2017-12-01 response: - body: {string: '{"name":"310bb9c0-2f54-4d7f-81a1-45e616be62d4","status":"Succeeded","startTime":"2018-02-28T19:52:33.857Z"}'} + body: {string: '{"name":"58259d1c-a95f-4292-a699-b3bb656c0e5b","status":"Succeeded","startTime":"2018-03-19T23:58:05.837Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:55:38 GMT'] + date: ['Tue, 20 Mar 2018 00:00:07 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -609,18 +564,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:03:38.71+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['912'] + content-length: ['935'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:55:39 GMT'] + date: ['Tue, 20 Mar 2018 00:00:08 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -637,19 +591,18 @@ interactions: CommandName: [mysql server update] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:03:38.71+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['912'] + content-length: ['935'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:55:42 GMT'] + date: ['Tue, 20 Mar 2018 00:00:09 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -668,27 +621,26 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T19:55:44.33Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-03-20T00:00:12.963Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f9fdd806-b9a3-4a9e-8504-7b2aaa60c696?api-version=2017-12-01'] cache-control: [no-cache] - content-length: ['73'] + content-length: ['74'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:55:44 GMT'] + date: ['Tue, 20 Mar 2018 00:00:12 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/f9fdd806-b9a3-4a9e-8504-7b2aaa60c696?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 202, message: Accepted} - request: body: null @@ -697,18 +649,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f9fdd806-b9a3-4a9e-8504-7b2aaa60c696?api-version=2017-12-01 response: - body: {string: '{"name":"bb31e426-913f-4cb3-ab06-4c70003e7dbe","status":"Succeeded","startTime":"2018-02-28T19:55:44.33Z"}'} + body: {string: '{"name":"f9fdd806-b9a3-4a9e-8504-7b2aaa60c696","status":"Succeeded","startTime":"2018-03-20T00:00:12.963Z"}'} headers: cache-control: [no-cache] - content-length: ['106'] + content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:56:45 GMT'] + date: ['Tue, 20 Mar 2018 00:01:13 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -724,18 +675,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:03:38.71+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['934'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:56:47 GMT'] + date: ['Tue, 20 Mar 2018 00:01:15 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -752,19 +702,18 @@ interactions: CommandName: [mysql server update] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:03:38.71+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['934'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:56:49 GMT'] + date: ['Tue, 20 Mar 2018 00:01:16 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -783,27 +732,26 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T19:56:51.807Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-03-20T00:01:20.04Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e4403ff7-c0fb-452c-a30e-a5baa28bc7cc?api-version=2017-12-01'] cache-control: [no-cache] - content-length: ['74'] + content-length: ['73'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:56:52 GMT'] + date: ['Tue, 20 Mar 2018 00:01:19 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/e4403ff7-c0fb-452c-a30e-a5baa28bc7cc?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} - request: body: null @@ -812,18 +760,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/e4403ff7-c0fb-452c-a30e-a5baa28bc7cc?api-version=2017-12-01 response: - body: {string: '{"name":"65af2834-9f84-4b01-a257-a22608870ebc","status":"Succeeded","startTime":"2018-02-28T19:56:51.807Z"}'} + body: {string: '{"name":"e4403ff7-c0fb-452c-a30e-a5baa28bc7cc","status":"Succeeded","startTime":"2018-03-20T00:01:20.04Z"}'} headers: cache-control: [no-cache] - content-length: ['107'] + content-length: ['106'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:57:53 GMT'] + date: ['Tue, 20 Mar 2018 00:02:21 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -839,18 +786,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:03:38.71+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['911'] + content-length: ['934'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:57:54 GMT'] + date: ['Tue, 20 Mar 2018 00:02:22 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -867,19 +813,18 @@ interactions: CommandName: [mysql server restore] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:03:38.71+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['911'] + content-length: ['934'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:02:56 GMT'] + date: ['Tue, 20 Mar 2018 00:07:24 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -891,7 +836,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-28T20:02:55.434581Z"}, "location": "brazilsouth"}\''''' + "restorePointInTime": "2018-03-20T00:07:23.282682Z"}, "location": "brazilsouth"}\''''' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -899,22 +844,21 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMySQL/servers/azuredbclirestore000004?api-version=2017-12-01 response: - body: {string: '{"operation":"RestoreElasticServer","startTime":"2018-02-28T20:02:58.073Z"}'} + body: {string: '{"operation":"RestoreElasticServer","startTime":"2018-03-20T00:07:26.633Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01'] cache-control: [no-cache] content-length: ['75'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:02:58 GMT'] + date: ['Tue, 20 Mar 2018 00:07:26 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -928,18 +872,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01 response: - body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + body: {string: '{"name":"f117ca9e-7e71-4e71-91e9-cfa38776efe0","status":"InProgress","startTime":"2018-03-20T00:07:26.633Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:03:10 GMT'] + date: ['Tue, 20 Mar 2018 00:07:37 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -955,18 +898,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01 response: - body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + body: {string: '{"name":"f117ca9e-7e71-4e71-91e9-cfa38776efe0","status":"InProgress","startTime":"2018-03-20T00:07:26.633Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:03:20 GMT'] + date: ['Tue, 20 Mar 2018 00:07:49 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -982,18 +924,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01 response: - body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + body: {string: '{"name":"f117ca9e-7e71-4e71-91e9-cfa38776efe0","status":"InProgress","startTime":"2018-03-20T00:07:26.633Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:03:32 GMT'] + date: ['Tue, 20 Mar 2018 00:08:00 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1009,18 +950,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01 response: - body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + body: {string: '{"name":"f117ca9e-7e71-4e71-91e9-cfa38776efe0","status":"InProgress","startTime":"2018-03-20T00:07:26.633Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:03:43 GMT'] + date: ['Tue, 20 Mar 2018 00:08:11 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1036,18 +976,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01 response: - body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + body: {string: '{"name":"f117ca9e-7e71-4e71-91e9-cfa38776efe0","status":"InProgress","startTime":"2018-03-20T00:07:26.633Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:03:55 GMT'] + date: ['Tue, 20 Mar 2018 00:08:23 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1063,18 +1002,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01 response: - body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + body: {string: '{"name":"f117ca9e-7e71-4e71-91e9-cfa38776efe0","status":"InProgress","startTime":"2018-03-20T00:07:26.633Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:04:06 GMT'] + date: ['Tue, 20 Mar 2018 00:08:34 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1090,18 +1028,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01 response: - body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + body: {string: '{"name":"f117ca9e-7e71-4e71-91e9-cfa38776efe0","status":"InProgress","startTime":"2018-03-20T00:07:26.633Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:04:17 GMT'] + date: ['Tue, 20 Mar 2018 00:08:45 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1117,18 +1054,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01 response: - body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + body: {string: '{"name":"f117ca9e-7e71-4e71-91e9-cfa38776efe0","status":"InProgress","startTime":"2018-03-20T00:07:26.633Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:04:29 GMT'] + date: ['Tue, 20 Mar 2018 00:08:58 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1144,18 +1080,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01 response: - body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + body: {string: '{"name":"f117ca9e-7e71-4e71-91e9-cfa38776efe0","status":"InProgress","startTime":"2018-03-20T00:07:26.633Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:04:40 GMT'] + date: ['Tue, 20 Mar 2018 00:09:09 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1171,18 +1106,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01 response: - body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + body: {string: '{"name":"f117ca9e-7e71-4e71-91e9-cfa38776efe0","status":"InProgress","startTime":"2018-03-20T00:07:26.633Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:04:51 GMT'] + date: ['Tue, 20 Mar 2018 00:09:20 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1198,18 +1132,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01 response: - body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + body: {string: '{"name":"f117ca9e-7e71-4e71-91e9-cfa38776efe0","status":"InProgress","startTime":"2018-03-20T00:07:26.633Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:05:02 GMT'] + date: ['Tue, 20 Mar 2018 00:09:32 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1225,18 +1158,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01 response: - body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + body: {string: '{"name":"f117ca9e-7e71-4e71-91e9-cfa38776efe0","status":"InProgress","startTime":"2018-03-20T00:07:26.633Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:05:14 GMT'] + date: ['Tue, 20 Mar 2018 00:09:43 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1252,18 +1184,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01 response: - body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + body: {string: '{"name":"f117ca9e-7e71-4e71-91e9-cfa38776efe0","status":"InProgress","startTime":"2018-03-20T00:07:26.633Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:05:25 GMT'] + date: ['Tue, 20 Mar 2018 00:09:54 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1279,18 +1210,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01 response: - body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + body: {string: '{"name":"f117ca9e-7e71-4e71-91e9-cfa38776efe0","status":"InProgress","startTime":"2018-03-20T00:07:26.633Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:05:37 GMT'] + date: ['Tue, 20 Mar 2018 00:10:06 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1306,18 +1236,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01 response: - body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + body: {string: '{"name":"f117ca9e-7e71-4e71-91e9-cfa38776efe0","status":"InProgress","startTime":"2018-03-20T00:07:26.633Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:05:48 GMT'] + date: ['Tue, 20 Mar 2018 00:10:17 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1333,18 +1262,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01 response: - body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + body: {string: '{"name":"f117ca9e-7e71-4e71-91e9-cfa38776efe0","status":"InProgress","startTime":"2018-03-20T00:07:26.633Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:05:59 GMT'] + date: ['Tue, 20 Mar 2018 00:10:29 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1360,18 +1288,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01 response: - body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + body: {string: '{"name":"f117ca9e-7e71-4e71-91e9-cfa38776efe0","status":"InProgress","startTime":"2018-03-20T00:07:26.633Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:06:11 GMT'] + date: ['Tue, 20 Mar 2018 00:10:40 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1387,18 +1314,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01 response: - body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + body: {string: '{"name":"f117ca9e-7e71-4e71-91e9-cfa38776efe0","status":"InProgress","startTime":"2018-03-20T00:07:26.633Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:06:22 GMT'] + date: ['Tue, 20 Mar 2018 00:10:51 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1414,18 +1340,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01 response: - body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + body: {string: '{"name":"f117ca9e-7e71-4e71-91e9-cfa38776efe0","status":"InProgress","startTime":"2018-03-20T00:07:26.633Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:06:33 GMT'] + date: ['Tue, 20 Mar 2018 00:11:02 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1441,18 +1366,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01 response: - body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"InProgress","startTime":"2018-02-28T20:02:58.073Z"}'} + body: {string: '{"name":"f117ca9e-7e71-4e71-91e9-cfa38776efe0","status":"InProgress","startTime":"2018-03-20T00:07:26.633Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:06:48 GMT'] + date: ['Tue, 20 Mar 2018 00:11:14 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1468,18 +1392,69 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01 response: - body: {string: '{"name":"10ff1f57-362a-40aa-b89a-eeb0b1824bd6","status":"Succeeded","startTime":"2018-02-28T20:02:58.073Z"}'} + body: {string: '{"name":"f117ca9e-7e71-4e71-91e9-cfa38776efe0","status":"InProgress","startTime":"2018-03-20T00:07:26.633Z"}'} + headers: + cache-control: [no-cache] + content-length: ['108'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 20 Mar 2018 00:11:25 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [mysql server restore] + Connection: [keep-alive] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01 + response: + body: {string: '{"name":"f117ca9e-7e71-4e71-91e9-cfa38776efe0","status":"InProgress","startTime":"2018-03-20T00:07:26.633Z"}'} + headers: + cache-control: [no-cache] + content-length: ['108'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 20 Mar 2018 00:11:37 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [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.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/f117ca9e-7e71-4e71-91e9-cfa38776efe0?api-version=2017-12-01 + response: + body: {string: '{"name":"f117ca9e-7e71-4e71-91e9-cfa38776efe0","status":"Succeeded","startTime":"2018-03-20T00:07:26.633Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:06:59 GMT'] + date: ['Tue, 20 Mar 2018 00:11:47 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1495,18 +1470,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMySQL/servers/azuredbclirestore000004?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:17:26.883+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['891'] + content-length: ['916'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:07:00 GMT'] + date: ['Tue, 20 Mar 2018 00:11:50 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1523,19 +1497,18 @@ interactions: CommandName: [mysql server list] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMySQL/servers?api-version=2017-12-01 response: - body: {string: '{"value":[{"sku":{"name":"GP_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"}]}'} + 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-03-20T00:17:26.883+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: ['903'] + content-length: ['904'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:07:02 GMT'] + date: ['Tue, 20 Mar 2018 00:11:52 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1552,25 +1525,25 @@ interactions: CommandName: [mysql server list] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/servers?api-version=2017-12-01 response: - body: {string: '{"value":[{"sku":{"name":"GP_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"}]}'} + 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":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"rohit1dbcreate.mysql.database.azure.com","earliestRestoreDate":"2018-03-13T00:11:53.5958769+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":"rohit","storageProfile":{"storageMB":5120,"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"version":"5.7","sslEnforcement":"Enabled","userVisibleState":"Ready","fullyQualifiedDomainName":"testsvr103.mysql.database.azure.com","earliestRestoreDate":"2018-03-19T23:48:30.73+00:00","replicationRole":"","primaryServerId":""},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OrcasGATesting/providers/Microsoft.DBforMySQL/servers/testsvr103","name":"testsvr103","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-03-20T00:03:38.71+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-03-20T00:17:26.883+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: ['3869'] + content-length: ['3172'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:07:03 GMT'] + date: ['Tue, 20 Mar 2018 00:11:53 GMT'] expires: ['-1'] pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-original-request-ids: [748149b9-e2d3-4633-8467-332cd8360c0a, e42f3e4b-0fcf-46fc-8ad2-21d5eabff992] status: {code: 200, message: OK} - request: body: null @@ -1581,27 +1554,26 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"operation":"DropElasticServer","startTime":"2018-02-28T20:07:05.273Z"}'} + body: {string: '{"operation":"DropElasticServer","startTime":"2018-03-20T00:11:55.247Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/dc108e9f-e1a4-4367-9c1e-01879be57c5d?api-version=2017-12-01'] cache-control: [no-cache] content-length: ['72'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:07:05 GMT'] + date: ['Tue, 20 Mar 2018 00:11:55 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/dc108e9f-e1a4-4367-9c1e-01879be57c5d?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -1610,18 +1582,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/dc108e9f-e1a4-4367-9c1e-01879be57c5d?api-version=2017-12-01 response: - body: {string: '{"name":"8cc3bc51-1a58-46fb-91ff-dde97896d9da","status":"Succeeded","startTime":"2018-02-28T20:07:05.273Z"}'} + body: {string: '{"name":"dc108e9f-e1a4-4367-9c1e-01879be57c5d","status":"Succeeded","startTime":"2018-03-20T00:11:55.247Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:07:21 GMT'] + date: ['Tue, 20 Mar 2018 00:12:11 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1639,27 +1610,26 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforMySQL/servers/azuredbclirestore000004?api-version=2017-12-01 response: - body: {string: '{"operation":"DropElasticServer","startTime":"2018-02-28T20:07:23.767Z"}'} + body: {string: '{"operation":"DropElasticServer","startTime":"2018-03-20T00:12:13.787Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/85ae4fd4-32c9-4097-883f-5e86a984a9d1?api-version=2017-12-01'] cache-control: [no-cache] content-length: ['72'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:07:24 GMT'] + date: ['Tue, 20 Mar 2018 00:12:13 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/operationResults/85ae4fd4-32c9-4097-883f-5e86a984a9d1?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -1668,18 +1638,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/brazilsouth/azureAsyncOperation/85ae4fd4-32c9-4097-883f-5e86a984a9d1?api-version=2017-12-01 response: - body: {string: '{"name":"3d74ede3-1600-4d80-a403-b4adcc8b19fd","status":"Succeeded","startTime":"2018-02-28T20:07:23.767Z"}'} + body: {string: '{"name":"85ae4fd4-32c9-4097-883f-5e86a984a9d1","status":"Succeeded","startTime":"2018-03-20T00:12:13.787Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:07:40 GMT'] + date: ['Tue, 20 Mar 2018 00:12:29 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1696,22 +1665,23 @@ interactions: CommandName: [mysql server list] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforMySQL/servers?api-version=2017-12-01 response: body: {string: '{"value":[]}'} headers: cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:07:41 GMT'] + date: ['Tue, 20 Mar 2018 00:12: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} @@ -1724,9 +1694,9 @@ interactions: Connection: [keep-alive] 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 + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.29] + AZURECLI/2.0.30] 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 @@ -1735,13 +1705,13 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 28 Feb 2018 20:07:42 GMT'] + date: ['Tue, 20 Mar 2018 00:12:33 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdaRFZBNjJMSkw0UURTU1hNQTNESTVZSkc3VVJIRkZGRFhINnw2MUM1QUY2MUI2OUJEMDNBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdVNFQzUkpOSkpHSDZWQVhOQVpJTlVHRks2RlhBRzZYUTRLTHwzMDE1QUUyM0FFQzY3QjRCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?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: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -1752,9 +1722,9 @@ interactions: Connection: [keep-alive] 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 + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.29] + AZURECLI/2.0.30] 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 @@ -1763,12 +1733,12 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 28 Feb 2018 20:07:42 GMT'] + date: ['Tue, 20 Mar 2018 00:12:34 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdWWkNGSTZET0tGSDdRRTVOV0NTTEhGUkJERVBCSEFOVlNUTXxDQzZDMjg2RkJFOEEyOTQ3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdVUlY2NldYVEhHU1E2NUdGWVlaQ01YTU0zSVM2UzRaQ1BXN3wyRjI4RjVCRDk0NEM3M0MwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?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_postgres_proxy_resources_mgmt.yaml b/src/rdbms/azext_rdbms/tests/recordings/test_postgres_proxy_resources_mgmt.yaml index 60ff08120eb..8845fcd3ea5 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 @@ -8,9 +8,9 @@ interactions: Connection: [keep-alive] 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 + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.29] + AZURECLI/2.0.30] 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: ['Wed, 28 Feb 2018 19:42:41 GMT'] + date: ['Mon, 19 Mar 2018 23:48:12 GMT'] expires: ['-1'] 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: 201, message: Created} - request: body: '{"sku": {"name": "GP_Gen4_2"}, "properties": {"storageProfile": {}, "createMode": @@ -38,22 +38,21 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002?api-version=2017-12-01 response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T19:42:42.86Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-03-19T23:48:14.857Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6fd63495-20cc-46b3-8af4-ae3b3386f3a9?api-version=2017-12-01'] cache-control: [no-cache] - content-length: ['73'] + content-length: ['74'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:42:43 GMT'] + date: ['Mon, 19 Mar 2018 23:48:15 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/6fd63495-20cc-46b3-8af4-ae3b3386f3a9?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -67,18 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6fd63495-20cc-46b3-8af4-ae3b3386f3a9?api-version=2017-12-01 response: - body: {string: '{"name":"da028df8-5d69-4954-b681-c0fd4d82f7ce","status":"InProgress","startTime":"2018-02-28T19:42:42.86Z"}'} + body: {string: '{"name":"6fd63495-20cc-46b3-8af4-ae3b3386f3a9","status":"InProgress","startTime":"2018-03-19T23:48:14.857Z"}'} headers: cache-control: [no-cache] - content-length: ['107'] + content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:43:44 GMT'] + date: ['Mon, 19 Mar 2018 23:49:15 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -94,18 +92,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/6fd63495-20cc-46b3-8af4-ae3b3386f3a9?api-version=2017-12-01 response: - body: {string: '{"name":"da028df8-5d69-4954-b681-c0fd4d82f7ce","status":"Succeeded","startTime":"2018-02-28T19:42:42.86Z"}'} + body: {string: '{"name":"6fd63495-20cc-46b3-8af4-ae3b3386f3a9","status":"Succeeded","startTime":"2018-03-19T23:48:14.857Z"}'} headers: cache-control: [no-cache] - content-length: ['106'] + content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:44:45 GMT'] + date: ['Mon, 19 Mar 2018 23:50:17 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -121,18 +118,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-19T23:58:15.213+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"location":"brazilsouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002","name":"azuredbclitest000002","type":"Microsoft.DBforPostgreSQL/servers"}'} headers: cache-control: [no-cache] - content-length: ['863'] + content-length: ['929'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:44:47 GMT'] + date: ['Mon, 19 Mar 2018 23:50:17 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -150,27 +146,26 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: - body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-28T19:44:49.46Z"}'} + body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-03-19T23:50:20.8Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/ce1f2df3-3f1d-49cf-8343-7a1432c73702?api-version=2017-12-01'] cache-control: [no-cache] - content-length: ['86'] + content-length: ['85'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:44:49 GMT'] + date: ['Mon, 19 Mar 2018 23:50:20 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/ce1f2df3-3f1d-49cf-8343-7a1432c73702?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} - request: body: null @@ -179,18 +174,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/ce1f2df3-3f1d-49cf-8343-7a1432c73702?api-version=2017-12-01 response: - body: {string: '{"name":"a059d2f5-9aec-4bb2-914b-9acc60ab56d8","status":"Succeeded","startTime":"2018-02-28T19:44:49.46Z"}'} + body: {string: '{"name":"ce1f2df3-3f1d-49cf-8343-7a1432c73702","status":"Succeeded","startTime":"2018-03-19T23:50:20.8Z"}'} headers: cache-control: [no-cache] - content-length: ['106'] + content-length: ['105'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:45:06 GMT'] + date: ['Mon, 19 Mar 2018 23:50:37 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -206,18 +200,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: {string: '{"properties":{"startIpAddress":"0.0.0.0","endIpAddress":"255.255.255.255"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1","name":"rule1","type":"Microsoft.DBforPostgreSQL/servers/firewallRules"}'} headers: cache-control: [no-cache] content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:45:07 GMT'] + date: ['Mon, 19 Mar 2018 23:50:38 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -234,19 +227,18 @@ interactions: CommandName: [postgres server firewall-rule show] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: {string: '{"properties":{"startIpAddress":"0.0.0.0","endIpAddress":"255.255.255.255"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1","name":"rule1","type":"Microsoft.DBforPostgreSQL/servers/firewallRules"}'} headers: cache-control: [no-cache] content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:45:09 GMT'] + date: ['Mon, 19 Mar 2018 23:50:39 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -263,19 +255,18 @@ interactions: CommandName: [postgres server firewall-rule update] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: {string: '{"properties":{"startIpAddress":"0.0.0.0","endIpAddress":"255.255.255.255"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1","name":"rule1","type":"Microsoft.DBforPostgreSQL/servers/firewallRules"}'} headers: cache-control: [no-cache] content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:45:11 GMT'] + date: ['Mon, 19 Mar 2018 23:50:41 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -293,22 +284,21 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: - body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-28T19:45:12.57Z"}'} + body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-03-19T23:50:43.24Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/d9eb0e77-2326-46c4-8d2c-09f42e07637e?api-version=2017-12-01'] cache-control: [no-cache] content-length: ['86'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:45:13 GMT'] + date: ['Mon, 19 Mar 2018 23:50:43 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/d9eb0e77-2326-46c4-8d2c-09f42e07637e?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -322,18 +312,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/d9eb0e77-2326-46c4-8d2c-09f42e07637e?api-version=2017-12-01 response: - body: {string: '{"name":"906c5700-1cb5-4660-8118-58842b4e9529","status":"Succeeded","startTime":"2018-02-28T19:45:12.57Z"}'} + body: {string: '{"name":"d9eb0e77-2326-46c4-8d2c-09f42e07637e","status":"Succeeded","startTime":"2018-03-19T23:50:43.24Z"}'} headers: cache-control: [no-cache] content-length: ['106'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:45:28 GMT'] + date: ['Mon, 19 Mar 2018 23:50:59 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -349,18 +338,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: {string: '{"properties":{"startIpAddress":"123.123.123.123","endIpAddress":"123.123.123.124"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1","name":"rule1","type":"Microsoft.DBforPostgreSQL/servers/firewallRules"}'} headers: cache-control: [no-cache] content-length: ['434'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:45:30 GMT'] + date: ['Mon, 19 Mar 2018 23:51:00 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -377,19 +365,18 @@ interactions: CommandName: [postgres server firewall-rule update] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: {string: '{"properties":{"startIpAddress":"123.123.123.123","endIpAddress":"123.123.123.124"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1","name":"rule1","type":"Microsoft.DBforPostgreSQL/servers/firewallRules"}'} headers: cache-control: [no-cache] content-length: ['434'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:45:32 GMT'] + date: ['Mon, 19 Mar 2018 23:51:02 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -407,22 +394,21 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: - body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-28T19:45:34.363Z"}'} + body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-03-19T23:51:04.93Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/e9a238fb-ab0d-43b6-9bd6-1ed045775d81?api-version=2017-12-01'] cache-control: [no-cache] - content-length: ['87'] + content-length: ['86'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:45:33 GMT'] + date: ['Mon, 19 Mar 2018 23:51:04 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/e9a238fb-ab0d-43b6-9bd6-1ed045775d81?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -436,18 +422,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/e9a238fb-ab0d-43b6-9bd6-1ed045775d81?api-version=2017-12-01 response: - body: {string: '{"name":"4546e85c-60f0-4e39-9485-d2be08d25030","status":"Succeeded","startTime":"2018-02-28T19:45:34.363Z"}'} + body: {string: '{"name":"e9a238fb-ab0d-43b6-9bd6-1ed045775d81","status":"Succeeded","startTime":"2018-03-19T23:51:04.93Z"}'} headers: cache-control: [no-cache] - content-length: ['107'] + content-length: ['106'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:45:50 GMT'] + date: ['Mon, 19 Mar 2018 23:51:20 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -463,18 +448,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: {string: '{"properties":{"startIpAddress":"0.0.0.0","endIpAddress":"123.123.123.124"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1","name":"rule1","type":"Microsoft.DBforPostgreSQL/servers/firewallRules"}'} headers: cache-control: [no-cache] content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:45:52 GMT'] + date: ['Mon, 19 Mar 2018 23:51:22 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -491,19 +475,18 @@ interactions: CommandName: [postgres server firewall-rule update] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: {string: '{"properties":{"startIpAddress":"0.0.0.0","endIpAddress":"123.123.123.124"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1","name":"rule1","type":"Microsoft.DBforPostgreSQL/servers/firewallRules"}'} headers: cache-control: [no-cache] content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:45:54 GMT'] + date: ['Mon, 19 Mar 2018 23:51:24 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -521,27 +504,26 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: - body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-28T19:45:55.75Z"}'} + body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-03-19T23:51:26.383Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/c6c6035c-94cd-45ef-9beb-fe566edc474e?api-version=2017-12-01'] cache-control: [no-cache] - content-length: ['86'] + content-length: ['87'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:45:55 GMT'] + date: ['Mon, 19 Mar 2018 23:51:25 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/c6c6035c-94cd-45ef-9beb-fe566edc474e?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -550,18 +532,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/c6c6035c-94cd-45ef-9beb-fe566edc474e?api-version=2017-12-01 response: - body: {string: '{"name":"ca9d2050-8273-4cb9-a4c2-ad599a4fe3a5","status":"Succeeded","startTime":"2018-02-28T19:45:55.75Z"}'} + body: {string: '{"name":"c6c6035c-94cd-45ef-9beb-fe566edc474e","status":"Succeeded","startTime":"2018-03-19T23:51:26.383Z"}'} headers: cache-control: [no-cache] - content-length: ['106'] + content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:46:12 GMT'] + date: ['Mon, 19 Mar 2018 23:51:42 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -577,18 +558,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: body: {string: '{"properties":{"startIpAddress":"0.0.0.0","endIpAddress":"255.255.255.255"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1","name":"rule1","type":"Microsoft.DBforPostgreSQL/servers/firewallRules"}'} headers: cache-control: [no-cache] content-length: ['426'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:46:13 GMT'] + date: ['Mon, 19 Mar 2018 23:51:44 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -606,22 +586,21 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule2?api-version=2017-12-01 response: - body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-02-28T19:46:15.29Z"}'} + body: {string: '{"operation":"UpsertElasticServerFirewallRules","startTime":"2018-03-19T23:51:46.28Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/9226354e-2134-4ff9-b6c0-78b5dd74f415?api-version=2017-12-01'] cache-control: [no-cache] content-length: ['86'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:46:15 GMT'] + date: ['Mon, 19 Mar 2018 23:51:45 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/9226354e-2134-4ff9-b6c0-78b5dd74f415?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -635,18 +614,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/9226354e-2134-4ff9-b6c0-78b5dd74f415?api-version=2017-12-01 response: - body: {string: '{"name":"7b6fabbd-9b4d-469c-82d3-7467f55d1900","status":"Succeeded","startTime":"2018-02-28T19:46:15.29Z"}'} + body: {string: '{"name":"9226354e-2134-4ff9-b6c0-78b5dd74f415","status":"Succeeded","startTime":"2018-03-19T23:51:46.28Z"}'} headers: cache-control: [no-cache] content-length: ['106'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:46:32 GMT'] + date: ['Mon, 19 Mar 2018 23:52:01 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -662,18 +640,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule2?api-version=2017-12-01 response: body: {string: '{"properties":{"startIpAddress":"123.123.123.123","endIpAddress":"123.123.123.124"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule2","name":"rule2","type":"Microsoft.DBforPostgreSQL/servers/firewallRules"}'} headers: cache-control: [no-cache] content-length: ['434'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:46:33 GMT'] + date: ['Mon, 19 Mar 2018 23:52:03 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -690,19 +667,18 @@ interactions: CommandName: [postgres server firewall-rule list] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + 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 response: body: {string: '{"value":[{"properties":{"startIpAddress":"0.0.0.0","endIpAddress":"255.255.255.255"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1","name":"rule1","type":"Microsoft.DBforPostgreSQL/servers/firewallRules"},{"properties":{"startIpAddress":"123.123.123.123","endIpAddress":"123.123.123.124"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule2","name":"rule2","type":"Microsoft.DBforPostgreSQL/servers/firewallRules"}]}'} headers: cache-control: [no-cache] content-length: ['873'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:46:35 GMT'] + date: ['Mon, 19 Mar 2018 23:52:05 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -720,22 +696,21 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule1?api-version=2017-12-01 response: - body: {string: '{"operation":"DropElasticServerFirewallRule","startTime":"2018-02-28T19:46:37.27Z"}'} + body: {string: '{"operation":"DropElasticServerFirewallRule","startTime":"2018-03-19T23:52:07.673Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/2dc74697-e16d-4a9f-a1da-1a5395056ac3?api-version=2017-12-01'] cache-control: [no-cache] - content-length: ['83'] + content-length: ['84'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:46:37 GMT'] + date: ['Mon, 19 Mar 2018 23:52:07 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/2dc74697-e16d-4a9f-a1da-1a5395056ac3?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -749,18 +724,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/2dc74697-e16d-4a9f-a1da-1a5395056ac3?api-version=2017-12-01 response: - body: {string: '{"name":"7e98e08b-80cb-498b-ab0c-f7ff42b66caa","status":"Succeeded","startTime":"2018-02-28T19:46:37.27Z"}'} + body: {string: '{"name":"2dc74697-e16d-4a9f-a1da-1a5395056ac3","status":"Succeeded","startTime":"2018-03-19T23:52:07.673Z"}'} headers: cache-control: [no-cache] - content-length: ['106'] + content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:46:53 GMT'] + date: ['Mon, 19 Mar 2018 23:52:23 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -777,19 +751,18 @@ interactions: CommandName: [postgres server firewall-rule list] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + 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 response: body: {string: '{"value":[{"properties":{"startIpAddress":"123.123.123.123","endIpAddress":"123.123.123.124"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule2","name":"rule2","type":"Microsoft.DBforPostgreSQL/servers/firewallRules"}]}'} headers: cache-control: [no-cache] content-length: ['446'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:46:55 GMT'] + date: ['Mon, 19 Mar 2018 23:52:26 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -807,27 +780,26 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/firewallRules/rule2?api-version=2017-12-01 response: - body: {string: '{"operation":"DropElasticServerFirewallRule","startTime":"2018-02-28T19:46:57.587Z"}'} + body: {string: '{"operation":"DropElasticServerFirewallRule","startTime":"2018-03-19T23:52:28.16Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/73ceaa80-cf33-41a0-8252-fc46615a4d7b?api-version=2017-12-01'] cache-control: [no-cache] - content-length: ['84'] + content-length: ['83'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:46:57 GMT'] + date: ['Mon, 19 Mar 2018 23:52:27 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/73ceaa80-cf33-41a0-8252-fc46615a4d7b?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} - request: body: null @@ -836,18 +808,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/73ceaa80-cf33-41a0-8252-fc46615a4d7b?api-version=2017-12-01 response: - body: {string: '{"name":"0b6d48d6-7544-4465-848e-4e91a4a4cf0b","status":"Succeeded","startTime":"2018-02-28T19:46:57.587Z"}'} + body: {string: '{"name":"73ceaa80-cf33-41a0-8252-fc46615a4d7b","status":"Succeeded","startTime":"2018-03-19T23:52:28.16Z"}'} headers: cache-control: [no-cache] - content-length: ['107'] + content-length: ['106'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:47:14 GMT'] + date: ['Mon, 19 Mar 2018 23:52:44 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -864,19 +835,18 @@ interactions: CommandName: [postgres server firewall-rule list] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + 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 response: body: {string: '{"value":[]}'} headers: cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:47:16 GMT'] + date: ['Mon, 19 Mar 2018 23:52:46 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -893,12 +863,11 @@ interactions: CommandName: [postgres db list] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + 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 response: body: {string: '{"value":[{"properties":{"charset":"UTF8","collation":"English_United States.1252"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/databases/postgres","name":"postgres","type":"Microsoft.DBforPostgreSQL/servers/databases"}]}'} @@ -906,7 +875,7 @@ interactions: cache-control: [no-cache] content-length: ['434'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:47:17 GMT'] + date: ['Mon, 19 Mar 2018 23:52:47 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -923,12 +892,11 @@ interactions: CommandName: [postgres server configuration show] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/array_nulls?api-version=2017-12-01 response: body: {string: '{"properties":{"value":"on","description":"Enable input of NULL elements in arrays.","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/array_nulls","name":"array_nulls","type":"Microsoft.DBforPostgreSQL/servers/configurations"}'} @@ -936,7 +904,7 @@ interactions: cache-control: [no-cache] content-length: ['542'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:47:19 GMT'] + date: ['Mon, 19 Mar 2018 23:52:49 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -954,27 +922,26 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/array_nulls?api-version=2017-12-01 response: - body: {string: '{"operation":"UpdateElasticServerConfig","startTime":"2018-02-28T19:47:21.523Z"}'} + body: {string: '{"operation":"UpdateElasticServerConfig","startTime":"2018-03-19T23:52:51.937Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/123d81d1-54f2-4b34-8e78-d00c8c156899?api-version=2017-12-01'] cache-control: [no-cache] content-length: ['80'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:47:21 GMT'] + date: ['Mon, 19 Mar 2018 23:52:51 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/123d81d1-54f2-4b34-8e78-d00c8c156899?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -983,18 +950,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/123d81d1-54f2-4b34-8e78-d00c8c156899?api-version=2017-12-01 response: - body: {string: '{"name":"d6ae9ca3-1c58-4aed-9eac-db15063d516a","status":"Succeeded","startTime":"2018-02-28T19:47:21.523Z"}'} + body: {string: '{"name":"123d81d1-54f2-4b34-8e78-d00c8c156899","status":"Succeeded","startTime":"2018-03-19T23:52:51.937Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:47:38 GMT'] + date: ['Mon, 19 Mar 2018 23:53:07 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1010,11 +976,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/array_nulls?api-version=2017-12-01 response: body: {string: '{"properties":{"value":"off","description":"Enable input of NULL elements in arrays.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"user-override"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/array_nulls","name":"array_nulls","type":"Microsoft.DBforPostgreSQL/servers/configurations"}'} @@ -1022,7 +987,7 @@ interactions: cache-control: [no-cache] content-length: ['542'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:47:39 GMT'] + date: ['Mon, 19 Mar 2018 23:53:09 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1040,22 +1005,21 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/array_nulls?api-version=2017-12-01 response: - body: {string: '{"operation":"UpdateElasticServerConfig","startTime":"2018-02-28T19:47:40.947Z"}'} + body: {string: '{"operation":"UpdateElasticServerConfig","startTime":"2018-03-19T23:53:11.457Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/7bb3f0c0-5f51-4da7-a980-8ac9d7be769a?api-version=2017-12-01'] cache-control: [no-cache] content-length: ['80'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:47:41 GMT'] + date: ['Mon, 19 Mar 2018 23:53:11 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/7bb3f0c0-5f51-4da7-a980-8ac9d7be769a?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1069,18 +1033,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/7bb3f0c0-5f51-4da7-a980-8ac9d7be769a?api-version=2017-12-01 response: - body: {string: '{"name":"d4c763a7-f68f-418f-adb2-08a035a1bcaf","status":"Succeeded","startTime":"2018-02-28T19:47:40.947Z"}'} + body: {string: '{"name":"7bb3f0c0-5f51-4da7-a980-8ac9d7be769a","status":"Succeeded","startTime":"2018-03-19T23:53:11.457Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:47:57 GMT'] + date: ['Mon, 19 Mar 2018 23:53:27 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1096,11 +1059,10 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/array_nulls?api-version=2017-12-01 response: body: {string: '{"properties":{"value":"on","description":"Enable input of NULL elements in arrays.","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/array_nulls","name":"array_nulls","type":"Microsoft.DBforPostgreSQL/servers/configurations"}'} @@ -1108,7 +1070,7 @@ interactions: cache-control: [no-cache] content-length: ['542'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:47:58 GMT'] + date: ['Mon, 19 Mar 2018 23:53:28 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1125,12 +1087,11 @@ interactions: CommandName: [postgres server configuration list] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + 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 response: body: {string: '{"value":[{"properties":{"value":"on","description":"Enable input of NULL elements in arrays.","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/array_nulls","name":"array_nulls","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"safe_encoding","description":"Sets @@ -1150,7 +1111,6 @@ interactions: mdy","dataType":"String","allowedValues":"(iso|postgres|sql|german)\\,\\s(dmy|mdy|ymd)","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/datestyle","name":"datestyle","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"1000","description":"Sets the amount of time, in milliseconds, to wait on a lock before checking for deadlock.","defaultValue":"1000","dataType":"Integer","allowedValues":"1-2147483647","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/deadlock_timeout","name":"deadlock_timeout","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"off","description":"Logs - each query''s parse tree.","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/debug_print_parse","name":"debug_print_parse","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"off","description":"Logs each query''s execution plan.","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/debug_print_plan","name":"debug_print_plan","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"off","description":"Logs each query''s rewritten parse tree.","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/debug_print_rewritten","name":"debug_print_rewritten","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"100","description":"Sets the default statistics target.","defaultValue":"100","dataType":"Integer","allowedValues":"1-10000","source":"system-default"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/configurations/default_statistics_target","name":"default_statistics_target","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"pg_catalog.english","description":"Sets @@ -1205,8 +1165,7 @@ interactions: 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 - ''...'' strings to treat backslashes literally.","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/standard_conforming_strings","name":"standard_conforming_strings","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"0","description":"Sets + 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":"0","description":"Sets the maximum allowed duration (in milliseconds) of any statement. 0 turns this off.","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/statement_timeout","name":"statement_timeout","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"on","description":"Enable synchronized sequential scans.","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/synchronize_seqscans","name":"synchronize_seqscans","type":"Microsoft.DBforPostgreSQL/servers/configurations"},{"properties":{"value":"on","description":"Sets @@ -1229,9 +1188,9 @@ interactions: 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: ['46412'] + content-length: ['45279'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:48:01 GMT'] + date: ['Mon, 19 Mar 2018 23:53:31 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1248,19 +1207,18 @@ interactions: CommandName: [postgres server-logs list] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/logFiles?api-version=2017-12-01 response: - body: {string: '{"value":[{"properties":{"name":"postgresql-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"}]}'} + body: {string: '{"value":[{"properties":{"name":"postgresql-2018-03-19_234930.log","sizeInKB":4,"createdTime":"0001-01-01T00:00:00+00:00","lastModifiedTime":"2018-03-19T23:53:11+00:00","type":"text","url":"https://wasd2prodbrso1fse36.file.core.windows.net/0b4f4483737248b28cc9e782d1dcc7de/pg_log/postgresql-2018-03-19_234930.log?sv=2015-04-05&sr=f&sig=CM%2Fng6VmJDjhGIsQdkiqQZGqzOX%2FEev0so84vUTaG58%3D&se=2018-03-20T00%3A53%3A33Z&sp=r"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000002/logFiles/postgresql-2018-03-19_234930.log","name":"postgresql-2018-03-19_234930.log","type":"Microsoft.DBforPostgreSQL/servers/logFiles"}]}'} headers: cache-control: [no-cache] content-length: ['818'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 19:48:02 GMT'] + date: ['Mon, 19 Mar 2018 23:53:33 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1278,9 +1236,9 @@ interactions: Connection: [keep-alive] 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 + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.29] + AZURECLI/2.0.30] 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 @@ -1289,12 +1247,12 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 28 Feb 2018 19:48:03 GMT'] + date: ['Mon, 19 Mar 2018 23:53:33 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdMQ1ZKVEI3SU1CRUJRUVM0RVZYRDZVREM3QVVRQkQ1M1paSHw3MTAzRTQwMzM1RDREOTg1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdITVlCMkdXVUdRQUlNQ1lBTlc3UEMyWFU2RzdQM1FTUVc2SHxBN0E3NjMxNEExNzk1REIxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?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: ['1198'] 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 c702e016a0c..451bbdca6fb 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 @@ -8,9 +8,9 @@ interactions: Connection: [keep-alive] 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 + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.29] + AZURECLI/2.0.30] 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: ['Wed, 28 Feb 2018 20:07:44 GMT'] + date: ['Tue, 20 Mar 2018 00:12:36 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 201, message: Created} - request: body: '{"location": "westus", "tags": {"use": "az-test"}}' @@ -36,9 +36,9 @@ interactions: Connection: [keep-alive] 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 + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.29] + AZURECLI/2.0.30] 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: ['Wed, 28 Feb 2018 20:07:46 GMT'] + date: ['Tue, 20 Mar 2018 00:12:37 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1181'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 201, message: Created} - request: body: '{"sku": {"name": "GP_Gen4_2"}, "properties": {"storageProfile": {}, "createMode": @@ -66,27 +66,26 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T20:07:47.923Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-03-20T00:12:40.037Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/c4e25a06-2656-42bd-b306-9a31e9675d89?api-version=2017-12-01'] cache-control: [no-cache] content-length: ['74'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:07:47 GMT'] + date: ['Tue, 20 Mar 2018 00:12:39 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/c4e25a06-2656-42bd-b306-9a31e9675d89?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 202, message: Accepted} - request: body: null @@ -95,18 +94,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/c4e25a06-2656-42bd-b306-9a31e9675d89?api-version=2017-12-01 response: - body: {string: '{"name":"8d65e9c8-4fe1-4b3f-bf1b-6be409d8587f","status":"InProgress","startTime":"2018-02-28T20:07:47.923Z"}'} + body: {string: '{"name":"c4e25a06-2656-42bd-b306-9a31e9675d89","status":"InProgress","startTime":"2018-03-20T00:12:40.037Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:08:50 GMT'] + date: ['Tue, 20 Mar 2018 00:13:40 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -122,18 +120,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/c4e25a06-2656-42bd-b306-9a31e9675d89?api-version=2017-12-01 response: - body: {string: '{"name":"8d65e9c8-4fe1-4b3f-bf1b-6be409d8587f","status":"Succeeded","startTime":"2018-02-28T20:07:47.923Z"}'} + body: {string: '{"name":"c4e25a06-2656-42bd-b306-9a31e9675d89","status":"Succeeded","startTime":"2018-03-20T00:12:40.037Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:09:51 GMT'] + date: ['Tue, 20 Mar 2018 00:14:43 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -149,18 +146,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:22:40.38+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['882'] + content-length: ['947'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:09:52 GMT'] + date: ['Tue, 20 Mar 2018 00:14:44 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -177,19 +173,18 @@ interactions: CommandName: [postgres server show] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:22:40.38+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['882'] + content-length: ['947'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:09:53 GMT'] + date: ['Tue, 20 Mar 2018 00:14:45 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -206,19 +201,18 @@ interactions: CommandName: [postgres server update] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:22:40.38+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['882'] + content-length: ['947'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:09:55 GMT'] + date: ['Tue, 20 Mar 2018 00:14:47 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -238,22 +232,21 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T20:09:57.983Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-03-20T00:14:49.563Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/41291156-1c05-447d-972a-3c276fcf9fd6?api-version=2017-12-01'] cache-control: [no-cache] content-length: ['74'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:09:58 GMT'] + date: ['Tue, 20 Mar 2018 00:14:49 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/41291156-1c05-447d-972a-3c276fcf9fd6?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -267,18 +260,17 @@ interactions: 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/41291156-1c05-447d-972a-3c276fcf9fd6?api-version=2017-12-01 response: - body: {string: '{"name":"9824a617-7aa6-4820-a66a-fa9cc3d6b444","status":"Succeeded","startTime":"2018-02-28T20:09:57.983Z"}'} + body: {string: '{"name":"41291156-1c05-447d-972a-3c276fcf9fd6","status":"Succeeded","startTime":"2018-03-20T00:14:49.563Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:10:59 GMT'] + date: ['Tue, 20 Mar 2018 00:15:50 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -294,18 +286,17 @@ interactions: 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:22:40.38+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['883'] + content-length: ['948'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:11:00 GMT'] + date: ['Tue, 20 Mar 2018 00:15:51 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -322,19 +313,18 @@ interactions: CommandName: [postgres server update] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:22:40.38+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['883'] + content-length: ['948'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:11:03 GMT'] + date: ['Tue, 20 Mar 2018 00:15:54 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -354,22 +344,21 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T20:11:05.623Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-03-20T00:15:56.963Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/e21a0387-f294-4502-b97c-11113f7e9d2b?api-version=2017-12-01'] cache-control: [no-cache] content-length: ['74'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:11:05 GMT'] + date: ['Tue, 20 Mar 2018 00:15:56 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/e21a0387-f294-4502-b97c-11113f7e9d2b?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -383,18 +372,17 @@ interactions: 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/e21a0387-f294-4502-b97c-11113f7e9d2b?api-version=2017-12-01 response: - body: {string: '{"name":"f88e7cb6-df37-41b2-b6cb-118310f1afc9","status":"Succeeded","startTime":"2018-02-28T20:11:05.623Z"}'} + body: {string: '{"name":"e21a0387-f294-4502-b97c-11113f7e9d2b","status":"InProgress","startTime":"2018-03-20T00:15:56.963Z"}'} headers: cache-control: [no-cache] - content-length: ['107'] + content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:12:07 GMT'] + date: ['Tue, 20 Mar 2018 00:16:58 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -410,18 +398,17 @@ interactions: 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/e21a0387-f294-4502-b97c-11113f7e9d2b?api-version=2017-12-01 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.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"}'} + body: {string: '{"name":"e21a0387-f294-4502-b97c-11113f7e9d2b","status":"Succeeded","startTime":"2018-03-20T00:15:56.963Z"}'} headers: cache-control: [no-cache] - content-length: ['883'] + content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:12:08 GMT'] + date: ['Tue, 20 Mar 2018 00:17:58 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -435,22 +422,19 @@ interactions: headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [postgres server show] + CommandName: [postgres server update] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] - accept-language: [en-US] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:22:40.38+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['883'] + content-length: ['948'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:12:10 GMT'] + date: ['Tue, 20 Mar 2018 00:18:00 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -464,22 +448,21 @@ interactions: headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [postgres server update] + CommandName: [postgres server show] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:22:40.38+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['883'] + content-length: ['948'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:12:11 GMT'] + date: ['Tue, 20 Mar 2018 00:18:02 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -489,57 +472,25 @@ interactions: x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: - body: '{"sku": {"name": "gp_Gen4_2", "tier": "GeneralPurpose", "capacity": 2, - "family": "Gen4"}, "properties": {"storageProfile": {"backupRetentionDays": - 7, "geoRedundantBackup": "Disabled", "storageMB": 5120}}}' + body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [postgres server update] Connection: [keep-alive] - 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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-28T20:12:14.373Z"}'} - headers: - 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: ['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/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: ['1197'] - status: {code: 202, message: Accepted} -- 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.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/4b990c85-2c52-4360-bed0-61af98635f38?api-version=2017-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"name":"4b990c85-2c52-4360-bed0-61af98635f38","status":"Succeeded","startTime":"2018-02-28T20:12:14.373Z"}'} + 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-03-20T00:22:40.38+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['107'] + content-length: ['948'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:13:16 GMT'] + date: ['Tue, 20 Mar 2018 00:18:04 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -549,32 +500,37 @@ interactions: x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: - body: null + body: '{"sku": {"name": "gp_Gen4_2", "tier": "GeneralPurpose", "capacity": 2, + "family": "Gen4"}, "properties": {"storageProfile": {"backupRetentionDays": + 7, "geoRedundantBackup": "Disabled", "storageMB": 5120}}}' 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.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 + 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.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] + accept-language: [en-US] + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"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"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-03-20T00:18:06.543Z"}'} headers: + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/dc0dd18e-25f5-4949-b950-88f534f9c09c?api-version=2017-12-01'] cache-control: [no-cache] - content-length: ['883'] + content-length: ['74'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:13:17 GMT'] + date: ['Tue, 20 Mar 2018 00:18:05 GMT'] expires: ['-1'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/dc0dd18e-25f5-4949-b950-88f534f9c09c?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] x-content-type-options: [nosniff] - status: {code: 200, message: OK} + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 202, message: Accepted} - request: body: null headers: @@ -582,20 +538,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [postgres server update] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] - accept-language: [en-US] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/dc0dd18e-25f5-4949-b950-88f534f9c09c?api-version=2017-12-01 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.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"}'} + body: {string: '{"name":"dc0dd18e-25f5-4949-b950-88f534f9c09c","status":"InProgress","startTime":"2018-03-20T00:18:06.543Z"}'} headers: cache-control: [no-cache] - content-length: ['883'] + content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:13:19 GMT'] + date: ['Tue, 20 Mar 2018 00:19:07 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -604,38 +557,6 @@ interactions: vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} -- request: - body: '{"properties": {"storageProfile": {"backupRetentionDays": 7, "geoRedundantBackup": - "Disabled", "storageMB": 5120}, "sslEnforcement": "Enabled"}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [postgres server update] - Connection: [keep-alive] - 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.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-28T20:13:21.65Z"}'} - headers: - 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: ['73'] - content-type: [application/json; charset=utf-8] - 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/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: ['1198'] - status: {code: 202, message: Accepted} - request: body: null headers: @@ -643,18 +564,17 @@ interactions: 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/dc0dd18e-25f5-4949-b950-88f534f9c09c?api-version=2017-12-01 response: - body: {string: '{"name":"72582a43-10dd-49e0-b5d4-ef315b464e79","status":"Succeeded","startTime":"2018-02-28T20:13:21.65Z"}'} + body: {string: '{"name":"dc0dd18e-25f5-4949-b950-88f534f9c09c","status":"Succeeded","startTime":"2018-03-20T00:18:06.543Z"}'} headers: cache-control: [no-cache] - content-length: ['106'] + content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:14:25 GMT'] + date: ['Tue, 20 Mar 2018 00:20:08 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -670,18 +590,17 @@ interactions: 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:22:40.38+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['948'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:14:27 GMT'] + date: ['Tue, 20 Mar 2018 00:20:09 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -698,19 +617,18 @@ interactions: CommandName: [postgres server update] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:22:40.38+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['948'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:14:30 GMT'] + date: ['Tue, 20 Mar 2018 00:20:11 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -721,35 +639,34 @@ interactions: status: {code: 200, message: OK} - request: body: '{"properties": {"storageProfile": {"backupRetentionDays": 7, "geoRedundantBackup": - "Disabled", "storageMB": 5120}}, "tags": {"key": "3"}}' + "Disabled", "storageMB": 5120}, "sslEnforcement": "Enabled"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [postgres server update] Connection: [keep-alive] - Content-Length: ['137'] + 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-02-28T20:14:35.21Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-03-20T00:20:14.637Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/138ddde6-12e0-4e3a-85e9-bbac614b636c?api-version=2017-12-01'] cache-control: [no-cache] - content-length: ['73'] + content-length: ['74'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:14:35 GMT'] + date: ['Tue, 20 Mar 2018 00:20:14 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/138ddde6-12e0-4e3a-85e9-bbac614b636c?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -758,18 +675,17 @@ interactions: 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/138ddde6-12e0-4e3a-85e9-bbac614b636c?api-version=2017-12-01 response: - body: {string: '{"name":"28f8022d-0971-493b-a853-819cb8dba7b7","status":"Succeeded","startTime":"2018-02-28T20:14:35.21Z"}'} + body: {string: '{"name":"138ddde6-12e0-4e3a-85e9-bbac614b636c","status":"Succeeded","startTime":"2018-03-20T00:20:14.637Z"}'} headers: cache-control: [no-cache] - content-length: ['106'] + content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:15:36 GMT'] + date: ['Tue, 20 Mar 2018 00:21:15 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -785,18 +701,17 @@ interactions: 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:22:40.38+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['947'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:15:38 GMT'] + date: ['Tue, 20 Mar 2018 00:21:16 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -810,22 +725,21 @@ interactions: headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [postgres server restore] + CommandName: [postgres server update] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:22:40.38+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['947'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:20:41 GMT'] + date: ['Tue, 20 Mar 2018 00:21:18 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -835,33 +749,30 @@ interactions: x-content-type-options: [nosniff] status: {code: 200, message: OK} - 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-28T20:20:39.16227999999999998Z"}, "location": - "brazilsouth"}\''''' + body: '{"properties": {"storageProfile": {"backupRetentionDays": 7, "geoRedundantBackup": + "Disabled", "storageMB": 5120}}, "tags": {"key": "3"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [postgres server restore] + CommandName: [postgres server update] Connection: [keep-alive] - Content-Length: ['415'] + 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"operation":"RestoreElasticServer","startTime":"2018-02-28T20:20:44.307Z"}'} + body: {string: '{"operation":"UpsertElasticServer","startTime":"2018-03-20T00:21:21.607Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/1c9a6efb-0862-4f5a-9fb6-fe0c4d17a577?api-version=2017-12-01'] cache-control: [no-cache] - content-length: ['75'] + content-length: ['74'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:20:44 GMT'] + date: ['Tue, 20 Mar 2018 00:21:20 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/1c9a6efb-0862-4f5a-9fb6-fe0c4d17a577?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -873,74 +784,19 @@ interactions: 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: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] + 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/1c9a6efb-0862-4f5a-9fb6-fe0c4d17a577?api-version=2017-12-01 response: - body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + body: {string: '{"name":"1c9a6efb-0862-4f5a-9fb6-fe0c4d17a577","status":"Succeeded","startTime":"2018-03-20T00:21:21.607Z"}'} headers: cache-control: [no-cache] - content-length: ['108'] + content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:21:19 GMT'] + date: ['Tue, 20 Mar 2018 00:22:22 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -954,20 +810,19 @@ interactions: headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] - CommandName: [postgres server restore] + 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + 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-03-20T00:22:40.38+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['108'] + content-length: ['947'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:21:29 GMT'] + date: ['Tue, 20 Mar 2018 00:22:23 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -983,18 +838,19 @@ interactions: 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] + 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.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] + accept-language: [en-US] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + 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-03-20T00:22:40.38+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['108'] + content-length: ['947'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:21:41 GMT'] + date: ['Tue, 20 Mar 2018 00:27:26 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1004,32 +860,37 @@ interactions: x-content-type-options: [nosniff] status: {code: 200, message: OK} - request: - body: null + body: 'b''b\''{"properties": {"createMode": "PointInTimeRestore", "sourceServerId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003", + "restorePointInTime": "2018-03-20T00:27:24.863413Z"}, "location": "brazilsouth"}\''''' 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 + Content-Length: ['404'] + 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.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] + accept-language: [en-US] + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirestore000004?api-version=2017-12-01 response: - body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + body: {string: '{"operation":"RestoreElasticServer","startTime":"2018-03-20T00:27:27.487Z"}'} headers: + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/79734bd5-5e65-442d-8d8e-6c6a189884a4?api-version=2017-12-01'] cache-control: [no-cache] - content-length: ['108'] + content-length: ['75'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:21:52 GMT'] + date: ['Tue, 20 Mar 2018 00:27:26 GMT'] expires: ['-1'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/79734bd5-5e65-442d-8d8e-6c6a189884a4?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] x-content-type-options: [nosniff] - status: {code: 200, message: OK} + x-ms-ratelimit-remaining-subscription-writes: ['1199'] + status: {code: 202, message: Accepted} - request: body: null headers: @@ -1037,18 +898,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/79734bd5-5e65-442d-8d8e-6c6a189884a4?api-version=2017-12-01 response: - body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + body: {string: '{"name":"79734bd5-5e65-442d-8d8e-6c6a189884a4","status":"InProgress","startTime":"2018-03-20T00:27:27.487Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:22:03 GMT'] + date: ['Tue, 20 Mar 2018 00:27:37 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1064,18 +924,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/79734bd5-5e65-442d-8d8e-6c6a189884a4?api-version=2017-12-01 response: - body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + body: {string: '{"name":"79734bd5-5e65-442d-8d8e-6c6a189884a4","status":"InProgress","startTime":"2018-03-20T00:27:27.487Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:22:15 GMT'] + date: ['Tue, 20 Mar 2018 00:27:49 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1091,18 +950,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/79734bd5-5e65-442d-8d8e-6c6a189884a4?api-version=2017-12-01 response: - body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + body: {string: '{"name":"79734bd5-5e65-442d-8d8e-6c6a189884a4","status":"InProgress","startTime":"2018-03-20T00:27:27.487Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:22:26 GMT'] + date: ['Tue, 20 Mar 2018 00:28:01 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1118,18 +976,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/79734bd5-5e65-442d-8d8e-6c6a189884a4?api-version=2017-12-01 response: - body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + body: {string: '{"name":"79734bd5-5e65-442d-8d8e-6c6a189884a4","status":"InProgress","startTime":"2018-03-20T00:27:27.487Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:22:38 GMT'] + date: ['Tue, 20 Mar 2018 00:28:12 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1145,18 +1002,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/79734bd5-5e65-442d-8d8e-6c6a189884a4?api-version=2017-12-01 response: - body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + body: {string: '{"name":"79734bd5-5e65-442d-8d8e-6c6a189884a4","status":"InProgress","startTime":"2018-03-20T00:27:27.487Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:22:49 GMT'] + date: ['Tue, 20 Mar 2018 00:28:23 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1172,18 +1028,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/79734bd5-5e65-442d-8d8e-6c6a189884a4?api-version=2017-12-01 response: - body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + body: {string: '{"name":"79734bd5-5e65-442d-8d8e-6c6a189884a4","status":"InProgress","startTime":"2018-03-20T00:27:27.487Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:23:01 GMT'] + date: ['Tue, 20 Mar 2018 00:28:34 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1199,18 +1054,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/79734bd5-5e65-442d-8d8e-6c6a189884a4?api-version=2017-12-01 response: - body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + body: {string: '{"name":"79734bd5-5e65-442d-8d8e-6c6a189884a4","status":"InProgress","startTime":"2018-03-20T00:27:27.487Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:23:13 GMT'] + date: ['Tue, 20 Mar 2018 00:28:46 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1226,18 +1080,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/79734bd5-5e65-442d-8d8e-6c6a189884a4?api-version=2017-12-01 response: - body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + body: {string: '{"name":"79734bd5-5e65-442d-8d8e-6c6a189884a4","status":"InProgress","startTime":"2018-03-20T00:27:27.487Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:23:23 GMT'] + date: ['Tue, 20 Mar 2018 00:28:57 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1253,18 +1106,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/79734bd5-5e65-442d-8d8e-6c6a189884a4?api-version=2017-12-01 response: - body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + body: {string: '{"name":"79734bd5-5e65-442d-8d8e-6c6a189884a4","status":"InProgress","startTime":"2018-03-20T00:27:27.487Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:23:35 GMT'] + date: ['Tue, 20 Mar 2018 00:29:09 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1280,18 +1132,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/79734bd5-5e65-442d-8d8e-6c6a189884a4?api-version=2017-12-01 response: - body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + body: {string: '{"name":"79734bd5-5e65-442d-8d8e-6c6a189884a4","status":"InProgress","startTime":"2018-03-20T00:27:27.487Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:23:46 GMT'] + date: ['Tue, 20 Mar 2018 00:29:19 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1307,18 +1158,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/79734bd5-5e65-442d-8d8e-6c6a189884a4?api-version=2017-12-01 response: - body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + body: {string: '{"name":"79734bd5-5e65-442d-8d8e-6c6a189884a4","status":"InProgress","startTime":"2018-03-20T00:27:27.487Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:23:57 GMT'] + date: ['Tue, 20 Mar 2018 00:29:31 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1334,18 +1184,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/79734bd5-5e65-442d-8d8e-6c6a189884a4?api-version=2017-12-01 response: - body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + body: {string: '{"name":"79734bd5-5e65-442d-8d8e-6c6a189884a4","status":"InProgress","startTime":"2018-03-20T00:27:27.487Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:24:09 GMT'] + date: ['Tue, 20 Mar 2018 00:29:42 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1361,18 +1210,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/79734bd5-5e65-442d-8d8e-6c6a189884a4?api-version=2017-12-01 response: - body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + body: {string: '{"name":"79734bd5-5e65-442d-8d8e-6c6a189884a4","status":"InProgress","startTime":"2018-03-20T00:27:27.487Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:24:20 GMT'] + date: ['Tue, 20 Mar 2018 00:29:53 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1388,18 +1236,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/79734bd5-5e65-442d-8d8e-6c6a189884a4?api-version=2017-12-01 response: - body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + body: {string: '{"name":"79734bd5-5e65-442d-8d8e-6c6a189884a4","status":"InProgress","startTime":"2018-03-20T00:27:27.487Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:24:31 GMT'] + date: ['Tue, 20 Mar 2018 00:30:04 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1415,18 +1262,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/79734bd5-5e65-442d-8d8e-6c6a189884a4?api-version=2017-12-01 response: - body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + body: {string: '{"name":"79734bd5-5e65-442d-8d8e-6c6a189884a4","status":"InProgress","startTime":"2018-03-20T00:27:27.487Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:24:43 GMT'] + date: ['Tue, 20 Mar 2018 00:30:16 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1442,18 +1288,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/79734bd5-5e65-442d-8d8e-6c6a189884a4?api-version=2017-12-01 response: - body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"InProgress","startTime":"2018-02-28T20:20:44.307Z"}'} + body: {string: '{"name":"79734bd5-5e65-442d-8d8e-6c6a189884a4","status":"InProgress","startTime":"2018-03-20T00:27:27.487Z"}'} headers: cache-control: [no-cache] content-length: ['108'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:24:55 GMT'] + date: ['Tue, 20 Mar 2018 00:30:27 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1469,18 +1314,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/79734bd5-5e65-442d-8d8e-6c6a189884a4?api-version=2017-12-01 response: - body: {string: '{"name":"92d57301-c006-4b87-a245-c3c2f0ddd3aa","status":"Succeeded","startTime":"2018-02-28T20:20:44.307Z"}'} + body: {string: '{"name":"79734bd5-5e65-442d-8d8e-6c6a189884a4","status":"Succeeded","startTime":"2018-03-20T00:27:27.487Z"}'} headers: cache-control: [no-cache] content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:25:05 GMT'] + date: ['Tue, 20 Mar 2018 00:30:39 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1496,18 +1340,17 @@ interactions: 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] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirestore000004?api-version=2017-12-01 response: - body: {string: '{"sku":{"name":"GP_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"}'} + 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-03-20T00:37:27.737+00:00","replicationRole":"None","primaryServerId":"","replicaCapacity":5},"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: ['862'] + content-length: ['929'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:25:07 GMT'] + date: ['Tue, 20 Mar 2018 00:30:40 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1524,19 +1367,18 @@ interactions: CommandName: [postgres server list] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforPostgreSQL/servers?api-version=2017-12-01 response: - body: {string: '{"value":[{"sku":{"name":"GP_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"}]}'} + 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-03-20T00:37:27.737+00:00","replicationRole":"","primaryServerId":""},"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: ['874'] + content-length: ['917'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:25:10 GMT'] + date: ['Tue, 20 Mar 2018 00:30:41 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1553,25 +1395,25 @@ interactions: CommandName: [postgres server list] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/servers?api-version=2017-12-01 response: - body: {string: '{"value":[{"sku":{"name":"GP_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"}]}'} + 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-03-13T00:30:43.7390958+00:00","replicationRole":"","primaryServerId":""},"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-03-20T00:22:40.38+00:00","replicationRole":"","primaryServerId":""},"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-03-20T00:37:27.737+00:00","replicationRole":"","primaryServerId":""},"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: ['3073'] + content-length: ['2541'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:25:14 GMT'] + date: ['Tue, 20 Mar 2018 00:30:43 GMT'] expires: ['-1'] pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-original-request-ids: [85d4cfb6-74fa-463d-979a-efb5bfd23019, e377c326-05f3-4d41-947c-6f29e1360d67] status: {code: 200, message: OK} - request: body: null @@ -1582,22 +1424,21 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers/azuredbclitest000003?api-version=2017-12-01 response: - body: {string: '{"operation":"DropElasticServer","startTime":"2018-02-28T20:25:17.867Z"}'} + body: {string: '{"operation":"DropElasticServer","startTime":"2018-03-20T00:30:45.52Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/0d3dae06-55f3-4ebd-b99c-128529f9e103?api-version=2017-12-01'] cache-control: [no-cache] - content-length: ['72'] + content-length: ['71'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:25:17 GMT'] + date: ['Tue, 20 Mar 2018 00:30:45 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/0d3dae06-55f3-4ebd-b99c-128529f9e103?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -1611,18 +1452,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/0d3dae06-55f3-4ebd-b99c-128529f9e103?api-version=2017-12-01 response: - body: {string: '{"name":"96534d71-609f-4a62-a8d0-6094b31f9540","status":"Succeeded","startTime":"2018-02-28T20:25:17.867Z"}'} + body: {string: '{"name":"0d3dae06-55f3-4ebd-b99c-128529f9e103","status":"Succeeded","startTime":"2018-03-20T00:30:45.52Z"}'} headers: cache-control: [no-cache] - content-length: ['107'] + content-length: ['106'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:25:34 GMT'] + date: ['Tue, 20 Mar 2018 00:31:01 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1640,27 +1480,26 @@ interactions: Connection: [keep-alive] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.DBforPostgreSQL/servers/azuredbclirestore000004?api-version=2017-12-01 response: - body: {string: '{"operation":"DropElasticServer","startTime":"2018-02-28T20:25:38.54Z"}'} + body: {string: '{"operation":"DropElasticServer","startTime":"2018-03-20T00:31:03.997Z"}'} headers: - 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'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/a5df147a-2ded-4a94-b9bf-910c170a6b4e?api-version=2017-12-01'] cache-control: [no-cache] - content-length: ['71'] + content-length: ['72'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:25:38 GMT'] + date: ['Tue, 20 Mar 2018 00:31:03 GMT'] expires: ['-1'] - 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'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/operationResults/a5df147a-2ded-4a94-b9bf-910c170a6b4e?api-version=2017-12-01'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1194'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -1669,18 +1508,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/brazilsouth/azureAsyncOperation/a5df147a-2ded-4a94-b9bf-910c170a6b4e?api-version=2017-12-01 response: - body: {string: '{"name":"8300c2a6-32b4-4474-bf0e-e8f8c3feeca5","status":"Succeeded","startTime":"2018-02-28T20:25:38.54Z"}'} + body: {string: '{"name":"a5df147a-2ded-4a94-b9bf-910c170a6b4e","status":"Succeeded","startTime":"2018-03-20T00:31:03.997Z"}'} headers: cache-control: [no-cache] - content-length: ['106'] + content-length: ['107'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:25:54 GMT'] + date: ['Tue, 20 Mar 2018 00:31:19 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0] @@ -1697,22 +1535,23 @@ interactions: CommandName: [postgres server list] 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.22 azure-mgmt-rdbms/2017-12-01-preview Azure-SDK-For-Python - AZURECLI/2.0.29] + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 + msrest_azure/0.4.22 azure-mgmt-rdbms/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.30] 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/servers?api-version=2017-12-01 response: body: {string: '{"value":[]}'} headers: cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Wed, 28 Feb 2018 20:25:58 GMT'] + date: ['Tue, 20 Mar 2018 00:31:22 GMT'] expires: ['-1'] pragma: [no-cache] + server: [Microsoft-HTTPAPI/2.0] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] status: {code: 200, message: OK} @@ -1725,9 +1564,9 @@ interactions: Connection: [keep-alive] 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 + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.29] + AZURECLI/2.0.30] 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 @@ -1736,9 +1575,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 28 Feb 2018 20:26:01 GMT'] + date: ['Tue, 20 Mar 2018 00:31:22 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdFN0FRUko0QjU3UFIyWkRVUlY1UlZGVVRaSjJJSjVBUFEyR3xBMTlFODZENjNGQjk3QzBBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkczU0NaTVcyTlBCQVlMUDVUWkhJT0xUNllPNFJQQlJWWUFTTnxFODMyQURDMDhFMDE1NDE4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] @@ -1753,9 +1592,9 @@ interactions: Connection: [keep-alive] 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 + User-Agent: [python/3.6.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.27 msrest_azure/0.4.22 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.29] + AZURECLI/2.0.30] 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 @@ -1764,9 +1603,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Wed, 28 Feb 2018 20:26:04 GMT'] + date: ['Tue, 20 Mar 2018 00:31:23 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdPVU5FNVdPM1dTMlZOMjQyNEtXN0cyTE83WFlaSEU0NFNWWnxBQzc2NzQxNTU5NEJCODIyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdGUEQ0RzRWVkYyRlhJVU1PTjdOUTVRQVFRN1BLNEtQQUpZNXxDOUI5Njk4Rjc2MjJFNjkwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?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/setup.py b/src/rdbms/setup.py index 36f9e614e5f..1f155bedad0 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.3" +VERSION = "0.0.4" CLASSIFIERS = [ 'Development Status :: 4 - Beta',