diff --git a/src/redisenterprise/HISTORY.rst b/src/redisenterprise/HISTORY.rst index a0fd6ee6c9c..d0d09ba64b7 100644 --- a/src/redisenterprise/HISTORY.rst +++ b/src/redisenterprise/HISTORY.rst @@ -3,6 +3,14 @@ Release History =============== +0.1.2 +++++++ +- Added support for active georeplication + - Creating a georeplicated database + - Creating a cache with a georeplicated database + - Force unlinking databases +- Added support for importing from multiple blobs + 0.1.1 ++++++ * Renamed remaining snake_case command output fields to camelCase to be consistent with the REST API. diff --git a/src/redisenterprise/azext_redisenterprise/__init__.py b/src/redisenterprise/azext_redisenterprise/__init__.py index 9f14113fd28..52ff1444e6a 100644 --- a/src/redisenterprise/azext_redisenterprise/__init__.py +++ b/src/redisenterprise/azext_redisenterprise/__init__.py @@ -7,13 +7,10 @@ # Changes may cause incorrect behavior and will be lost if the code is # regenerated. # -------------------------------------------------------------------------- +# pylint: disable=unused-import +import azext_redisenterprise._help from azure.cli.core import AzCommandsLoader -from azext_redisenterprise.generated._help import helps # pylint: disable=unused-import -try: - from azext_redisenterprise.manual._help import helps # pylint: disable=reimported -except ImportError: - pass class RedisEnterpriseManagementClientCommandsLoader(AzCommandsLoader): @@ -33,8 +30,11 @@ def load_command_table(self, args): try: from azext_redisenterprise.manual.commands import load_command_table as load_command_table_manual load_command_table_manual(self, args) - except ImportError: - pass + except ImportError as e: + if e.name.endswith('manual.commands'): + pass + else: + raise e return self.command_table def load_arguments(self, command): @@ -43,8 +43,11 @@ def load_arguments(self, command): try: from azext_redisenterprise.manual._params import load_arguments as load_arguments_manual load_arguments_manual(self, command) - except ImportError: - pass + except ImportError as e: + if e.name.endswith('manual._params'): + pass + else: + raise e COMMAND_LOADER_CLS = RedisEnterpriseManagementClientCommandsLoader diff --git a/src/redisenterprise/azext_redisenterprise/_help.py b/src/redisenterprise/azext_redisenterprise/_help.py new file mode 100644 index 00000000000..9b93f87a6e9 --- /dev/null +++ b/src/redisenterprise/azext_redisenterprise/_help.py @@ -0,0 +1,20 @@ +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- +# pylint: disable=wildcard-import +# pylint: disable=unused-wildcard-import +# pylint: disable=unused-import +from .generated._help import helps # pylint: disable=reimported +try: + from .manual._help import helps # pylint: disable=reimported +except ImportError as e: + if e.name.endswith('manual._help'): + pass + else: + raise e diff --git a/src/redisenterprise/azext_redisenterprise/action.py b/src/redisenterprise/azext_redisenterprise/action.py index d95d53bf711..9b3d0a8a78c 100644 --- a/src/redisenterprise/azext_redisenterprise/action.py +++ b/src/redisenterprise/azext_redisenterprise/action.py @@ -13,5 +13,8 @@ from .generated.action import * # noqa: F403 try: from .manual.action import * # noqa: F403 -except ImportError: - pass +except ImportError as e: + if e.name.endswith('manual.action'): + pass + else: + raise e diff --git a/src/redisenterprise/azext_redisenterprise/azext_metadata.json b/src/redisenterprise/azext_redisenterprise/azext_metadata.json index 30fdaf614ee..3695b0d7077 100644 --- a/src/redisenterprise/azext_redisenterprise/azext_metadata.json +++ b/src/redisenterprise/azext_redisenterprise/azext_metadata.json @@ -1,4 +1,3 @@ { - "azext.isPreview": true, "azext.minCliCoreVersion": "2.15.0" } \ No newline at end of file diff --git a/src/redisenterprise/azext_redisenterprise/custom.py b/src/redisenterprise/azext_redisenterprise/custom.py index dbe9d5f9742..885447229d6 100644 --- a/src/redisenterprise/azext_redisenterprise/custom.py +++ b/src/redisenterprise/azext_redisenterprise/custom.py @@ -13,5 +13,8 @@ from .generated.custom import * # noqa: F403 try: from .manual.custom import * # noqa: F403 -except ImportError: - pass +except ImportError as e: + if e.name.endswith('manual.custom'): + pass + else: + raise e diff --git a/src/redisenterprise/azext_redisenterprise/generated/_help.py b/src/redisenterprise/azext_redisenterprise/generated/_help.py index 7972c1cf968..768ce9f5e94 100644 --- a/src/redisenterprise/azext_redisenterprise/generated/_help.py +++ b/src/redisenterprise/azext_redisenterprise/generated/_help.py @@ -12,6 +12,11 @@ from knack.help_files import helps +helps['redisenterprise'] = ''' + type: group + short-summary: Manage Redis Enterprise +''' + helps['redisenterprise operation-status'] = """ type: group short-summary: Manage operation status with redisenterprise @@ -26,11 +31,6 @@ az redisenterprise operation-status show --operation-id "testoperationid" --location "West US" """ -helps['redisenterprise'] = """ - type: group - short-summary: Manage redis enterprise with redisenterprise -""" - helps['redisenterprise list'] = """ type: command short-summary: "Lists all RedisEnterprise clusters in a resource group. And Gets all RedisEnterprise clusters in \ @@ -140,9 +140,17 @@ Usage: --modules name=XX args=XX name: Required. The name of the module, e.g. 'RedisBloom', 'RediSearch', 'RedisTimeSeries' - args: Configuration options for the module, e.g. 'ERROR_RATE 0.00 INITIAL_SIZE 400'. + args: Configuration options for the module, e.g. 'ERROR_RATE 0.01 INITIAL_SIZE 400'. Multiple actions can be specified by using more than one --modules argument. + - name: --linked-databases + short-summary: "List of database resources to link with this database" + long-summary: | + Usage: --linked-databases id=XX + + id: Resource ID of a database resource to link with this database. + + Multiple actions can be specified by using more than one --linked-databases argument. examples: - name: RedisEnterpriseDatabasesCreate text: |- @@ -150,6 +158,13 @@ --clustering-policy "EnterpriseCluster" --eviction-policy "AllKeysLRU" --modules name="RedisBloom" args="ERROR_RATE \ 0.00 INITIAL_SIZE 400" --modules name="RedisTimeSeries" args="RETENTION_POLICY 20" --modules name="RediSearch" \ --persistence aof-enabled=true aof-frequency="1s" --port 10000 --resource-group "rg1" + - name: RedisEnterpriseDatabasesCreate With Active Geo Replication + text: |- + az redisenterprise database create --cluster-name "cache1" --client-protocol "Encrypted" \ +--clustering-policy "EnterpriseCluster" --eviction-policy "NoEviction" --group-nickname "groupName" --linked-databases \ +id="/subscriptions/subid1/resourceGroups/rg1/providers/Microsoft.Cache/redisEnterprise/cache1/databases/default" \ +--linked-databases id="/subscriptions/subid2/resourceGroups/rg2/providers/Microsoft.Cache/redisEnterprise/cache2/databa\ +ses/default" --port 10000 --resource-group "rg1" """ helps['redisenterprise database update'] = """ @@ -165,6 +180,14 @@ rdb-enabled: Sets whether RDB is enabled. aof-frequency: Sets the frequency at which data is written to disk. rdb-frequency: Sets the frequency at which a snapshot of the database is created. + - name: --linked-databases + short-summary: "List of database resources to link with this database" + long-summary: | + Usage: --linked-databases id=XX + + id: Resource ID of a database resource to link with this database. + + Multiple actions can be specified by using more than one --linked-databases argument. examples: - name: RedisEnterpriseDatabasesUpdate text: |- @@ -191,14 +214,25 @@ indow.net/urlToBlobContainer?sasKeyParameters" --resource-group "rg1" """ +helps['redisenterprise database force-unlink'] = """ + type: command + short-summary: "Forcibly removes the link to the specified database resource." + examples: + - name: How to unlink a database during a regional outage + text: |- + az redisenterprise database force-unlink --cluster-name "cache1" --unlink-ids "/subscriptions/subid2/resourceGr\ +oups/rg2/providers/Microsoft.Cache/redisEnterprise/cache2/databases/default" --resource-group "rg1" +""" + helps['redisenterprise database import'] = """ type: command - short-summary: "Imports a database file to target database." + short-summary: "Imports database files to target database." examples: - name: RedisEnterpriseDatabasesImport text: |- - az redisenterprise database import --cluster-name "cache1" --sas-uri "https://contosostorage.blob.core.w\ -indow.net/urltoBlobFile?sasKeyParameters" --resource-group "rg1" + az redisenterprise database import --cluster-name "cache1" --sas-uris "https://contosostorage.blob.core.\ +window.net/urltoBlobFile1?sasKeyParameters" "https://contosostorage.blob.core.window.net/urltoBlobFile2?sasKeyParameter\ +s" --resource-group "rg1" """ helps['redisenterprise database list-keys'] = """ diff --git a/src/redisenterprise/azext_redisenterprise/generated/_params.py b/src/redisenterprise/azext_redisenterprise/generated/_params.py index 3c193dad258..ec27053a917 100644 --- a/src/redisenterprise/azext_redisenterprise/generated/_params.py +++ b/src/redisenterprise/azext_redisenterprise/generated/_params.py @@ -19,7 +19,8 @@ from azure.cli.core.commands.validators import get_default_location_from_resource_group from azext_redisenterprise.action import ( AddPersistence, - AddModules + AddModules, + AddLinkedDatabases ) @@ -107,6 +108,10 @@ def load_arguments(self, _): c.argument('persistence', action=AddPersistence, nargs='+', help='Persistence settings', is_preview=True) c.argument('modules', action=AddModules, nargs='+', help='Optional set of redis modules to enable in this ' 'database - modules can only be added at creation time.') + c.argument('group_nickname', type=str, help='Name for the group of linked database resources', arg_group='Geo ' + 'Replication') + c.argument('linked_databases', action=AddLinkedDatabases, nargs='+', help='List of database resources to link ' + 'with this database', arg_group='Geo Replication') with self.argument_context('redisenterprise database update') as c: c.argument('resource_group_name', resource_group_name_type) @@ -120,6 +125,10 @@ def load_arguments(self, _): 'VolatileRandom', 'NoEviction']), help='Redis eviction ' 'policy - default is VolatileLRU') c.argument('persistence', action=AddPersistence, nargs='+', help='Persistence settings', is_preview=True) + c.argument('group_nickname', type=str, help='Name for the group of linked database resources', arg_group='Geo ' + 'Replication') + c.argument('linked_databases', action=AddLinkedDatabases, nargs='+', help='List of database resources to link ' + 'with this database', arg_group='Geo Replication') with self.argument_context('redisenterprise database delete') as c: c.argument('resource_group_name', resource_group_name_type) @@ -132,11 +141,17 @@ def load_arguments(self, _): 'RedisEnterprise cluster.', id_part='name') c.argument('sas_uri', type=str, help='SAS URI for the target directory to export to') + with self.argument_context('redisenterprise database force-unlink') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('cluster_name', options_list=['--cluster-name', '--name', '-n'], type=str, help='The name of the ' + 'RedisEnterprise cluster.', id_part='name') + c.argument('unlink_ids', nargs='+', help='The resource IDs of the database resources to be unlinked.') + with self.argument_context('redisenterprise database import') as c: c.argument('resource_group_name', resource_group_name_type) c.argument('cluster_name', options_list=['--cluster-name', '--name', '-n'], type=str, help='The name of the ' 'RedisEnterprise cluster.', id_part='name') - c.argument('sas_uri', type=str, help='SAS URI for the target blob to import from') + c.argument('sas_uris', nargs='+', help='SAS URIs for the target blobs to import from') with self.argument_context('redisenterprise database list-keys') as c: c.argument('resource_group_name', resource_group_name_type) diff --git a/src/redisenterprise/azext_redisenterprise/generated/action.py b/src/redisenterprise/azext_redisenterprise/generated/action.py index c644f910a46..5c406ffbff8 100644 --- a/src/redisenterprise/azext_redisenterprise/generated/action.py +++ b/src/redisenterprise/azext_redisenterprise/generated/action.py @@ -7,8 +7,13 @@ # Changes may cause incorrect behavior and will be lost if the code is # regenerated. # -------------------------------------------------------------------------- + + # pylint: disable=protected-access +# pylint: disable=no-self-use + + import argparse from collections import defaultdict from knack.util import CLIError @@ -19,7 +24,7 @@ def __call__(self, parser, namespace, values, option_string=None): action = self.get_action(values, option_string) namespace.persistence = action - def get_action(self, values, option_string): # pylint: disable=no-self-use + def get_action(self, values, option_string): try: properties = defaultdict(list) for (k, v) in (x.split('=', 1) for x in values): @@ -31,17 +36,25 @@ def get_action(self, values, option_string): # pylint: disable=no-self-use for k in properties: kl = k.lower() v = properties[k] + if kl == 'aof-enabled': d['aof_enabled'] = v[0] + elif kl == 'rdb-enabled': d['rdb_enabled'] = v[0] + elif kl == 'aof-frequency': d['aof_frequency'] = v[0] + elif kl == 'rdb-frequency': d['rdb_frequency'] = v[0] + else: - raise CLIError('Unsupported Key {} is provided for parameter persistence. All possible keys are: ' - 'aof-enabled, rdb-enabled, aof-frequency, rdb-frequency'.format(k)) + raise CLIError( + 'Unsupported Key {} is provided for parameter persistence. All possible keys are: aof-enabled,' + ' rdb-enabled, aof-frequency, rdb-frequency'.format(k) + ) + return d @@ -50,7 +63,7 @@ def __call__(self, parser, namespace, values, option_string=None): action = self.get_action(values, option_string) super(AddModules, self).__call__(parser, namespace, action, option_string) - def get_action(self, values, option_string): # pylint: disable=no-self-use + def get_action(self, values, option_string): try: properties = defaultdict(list) for (k, v) in (x.split('=', 1) for x in values): @@ -62,11 +75,45 @@ def get_action(self, values, option_string): # pylint: disable=no-self-use for k in properties: kl = k.lower() v = properties[k] + if kl == 'name': d['name'] = v[0] + elif kl == 'args': d['args'] = v[0] + else: - raise CLIError('Unsupported Key {} is provided for parameter modules. All possible keys are: name, ' - 'args'.format(k)) + raise CLIError( + 'Unsupported Key {} is provided for parameter modules. All possible keys are: name, args'.format(k) + ) + + return d + + +class AddLinkedDatabases(argparse._AppendAction): + def __call__(self, parser, namespace, values, option_string=None): + action = self.get_action(values, option_string) + super(AddLinkedDatabases, self).__call__(parser, namespace, action, option_string) + + def get_action(self, values, option_string): + try: + properties = defaultdict(list) + for (k, v) in (x.split('=', 1) for x in values): + properties[k].append(v) + properties = dict(properties) + except ValueError: + raise CLIError('usage error: {} [KEY=VALUE ...]'.format(option_string)) + d = {} + for k in properties: + kl = k.lower() + v = properties[k] + + if kl == 'id': + d['id'] = v[0] + + else: + raise CLIError( + 'Unsupported Key {} is provided for parameter linked-databases. All possible keys are: id'.format(k) + ) + return d diff --git a/src/redisenterprise/azext_redisenterprise/generated/commands.py b/src/redisenterprise/azext_redisenterprise/generated/commands.py index 7984a018dff..7133742a2c1 100644 --- a/src/redisenterprise/azext_redisenterprise/generated/commands.py +++ b/src/redisenterprise/azext_redisenterprise/generated/commands.py @@ -9,32 +9,37 @@ # -------------------------------------------------------------------------- # pylint: disable=too-many-statements # pylint: disable=too-many-locals +# pylint: disable=bad-continuation # pylint: disable=line-too-long from azure.cli.core.commands import CliCommandType +from azext_redisenterprise.generated._client_factory import cf_operation_status, cf_redis_enterprise, cf_database -def load_command_table(self, _): +redisenterprise_redis_enterprise = CliCommandType( + operations_tmpl='azext_redisenterprise.vendored_sdks.redisenterprise.operations._redis_enterprise_operations#RedisEnterpriseOperations.{}', + client_factory=cf_redis_enterprise, +) - from azext_redisenterprise.generated._client_factory import cf_operation_status - redisenterprise_operation_status = CliCommandType( - operations_tmpl='azext_redisenterprise.vendored_sdks.redisenterprise.operations._operations_status_operations#OperationsStatusOperations.{}', - client_factory=cf_operation_status, - ) - with self.command_group( - 'redisenterprise operation-status', redisenterprise_operation_status, client_factory=cf_operation_status - ) as g: - g.custom_show_command('show', 'redisenterprise_operation_status_show') +redisenterprise_database = CliCommandType( + operations_tmpl=( + 'azext_redisenterprise.vendored_sdks.redisenterprise.operations._databases_operations#DatabasesOperations.{}' + ), + client_factory=cf_database, +) - from azext_redisenterprise.generated._client_factory import cf_redis_enterprise - redisenterprise_redis_enterprise = CliCommandType( - operations_tmpl='azext_redisenterprise.vendored_sdks.redisenterprise.operations._redis_enterprise_operations#RedisEnterpriseOperations.{}', - client_factory=cf_redis_enterprise, - ) +redisenterprise_operation_status = CliCommandType( + operations_tmpl='azext_redisenterprise.vendored_sdks.redisenterprise.operations._operations_status_operations#OperationsStatusOperations.{}', + client_factory=cf_operation_status, +) + + +def load_command_table(self, _): + with self.command_group( - 'redisenterprise', redisenterprise_redis_enterprise, client_factory=cf_redis_enterprise + 'redisenterprise', redisenterprise_redis_enterprise, client_factory=cf_redis_enterprise ) as g: g.custom_command('list', 'redisenterprise_list') g.custom_show_command('show', 'redisenterprise_show') @@ -43,12 +48,6 @@ def load_command_table(self, _): g.custom_command('delete', 'redisenterprise_delete', supports_no_wait=True, confirmation=True) g.custom_wait_command('wait', 'redisenterprise_show') - from azext_redisenterprise.generated._client_factory import cf_database - - redisenterprise_database = CliCommandType( - operations_tmpl='azext_redisenterprise.vendored_sdks.redisenterprise.operations._databases_operations#DatabasesOperations.{}', - client_factory=cf_database, - ) with self.command_group('redisenterprise database', redisenterprise_database, client_factory=cf_database) as g: g.custom_command('list', 'redisenterprise_database_list') g.custom_show_command('show', 'redisenterprise_database_show') @@ -56,7 +55,13 @@ def load_command_table(self, _): g.custom_command('update', 'redisenterprise_database_update', supports_no_wait=True) g.custom_command('delete', 'redisenterprise_database_delete', supports_no_wait=True, confirmation=True) g.custom_command('export', 'redisenterprise_database_export', supports_no_wait=True) + g.custom_command('force-unlink', 'redisenterprise_database_force_unlink', supports_no_wait=True) g.custom_command('import', 'redisenterprise_database_import', supports_no_wait=True) g.custom_command('list-keys', 'redisenterprise_database_list_keys') g.custom_command('regenerate-key', 'redisenterprise_database_regenerate_key', supports_no_wait=True) g.custom_wait_command('wait', 'redisenterprise_database_show') + + with self.command_group( + 'redisenterprise operation-status', redisenterprise_operation_status, client_factory=cf_operation_status + ) as g: + g.custom_show_command('show', 'redisenterprise_operation_status_show') diff --git a/src/redisenterprise/azext_redisenterprise/generated/custom.py b/src/redisenterprise/azext_redisenterprise/generated/custom.py index 1d89160f322..a4cf7e42a78 100644 --- a/src/redisenterprise/azext_redisenterprise/generated/custom.py +++ b/src/redisenterprise/azext_redisenterprise/generated/custom.py @@ -43,14 +43,19 @@ def redisenterprise_create(client, zones=None, minimum_tls_version=None, no_wait=False): + exit(1) parameters = {} - parameters['tags'] = tags + if tags is not None: + parameters['tags'] = tags parameters['location'] = location parameters['sku'] = {} parameters['sku']['name'] = sku - parameters['sku']['capacity'] = capacity - parameters['zones'] = zones - parameters['minimum_tls_version'] = minimum_tls_version + if capacity is not None: + parameters['sku']['capacity'] = capacity + if zones is not None: + parameters['zones'] = zones + if minimum_tls_version is not None: + parameters['minimum_tls_version'] = minimum_tls_version return sdk_no_wait(no_wait, client.begin_create, resource_group_name=resource_group_name, @@ -61,7 +66,7 @@ def redisenterprise_create(client, def redisenterprise_update(client, resource_group_name, cluster_name, - sku=None, + sku, capacity=None, tags=None, minimum_tls_version=None, @@ -69,9 +74,14 @@ def redisenterprise_update(client, parameters = {} parameters['sku'] = {} parameters['sku']['name'] = sku - parameters['sku']['capacity'] = capacity - parameters['tags'] = tags - parameters['minimum_tls_version'] = minimum_tls_version + if capacity is not None: + parameters['sku']['capacity'] = capacity + if len(parameters['sku']) == 0: + del parameters['sku'] + if tags is not None: + parameters['tags'] = tags + if minimum_tls_version is not None: + parameters['minimum_tls_version'] = minimum_tls_version return sdk_no_wait(no_wait, client.begin_update, resource_group_name=resource_group_name, @@ -113,14 +123,29 @@ def redisenterprise_database_create(client, eviction_policy=None, persistence=None, modules=None, + group_nickname=None, + linked_databases=None, no_wait=False): parameters = {} - parameters['client_protocol'] = client_protocol - parameters['port'] = port - parameters['clustering_policy'] = clustering_policy - parameters['eviction_policy'] = eviction_policy - parameters['persistence'] = persistence - parameters['modules'] = modules + if client_protocol is not None: + parameters['client_protocol'] = client_protocol + if port is not None: + parameters['port'] = port + if clustering_policy is not None: + parameters['clustering_policy'] = clustering_policy + if eviction_policy is not None: + parameters['eviction_policy'] = eviction_policy + if persistence is not None: + parameters['persistence'] = persistence + if modules is not None: + parameters['modules'] = modules + parameters['geo_replication'] = {} + if group_nickname is not None: + parameters['geo_replication']['group_nickname'] = group_nickname + if linked_databases is not None: + parameters['geo_replication']['linked_databases'] = linked_databases + if len(parameters['geo_replication']) == 0: + del parameters['geo_replication'] return sdk_no_wait(no_wait, client.begin_create, resource_group_name=resource_group_name, @@ -135,11 +160,23 @@ def redisenterprise_database_update(client, client_protocol=None, eviction_policy=None, persistence=None, + group_nickname=None, + linked_databases=None, no_wait=False): parameters = {} - parameters['client_protocol'] = client_protocol - parameters['eviction_policy'] = eviction_policy - parameters['persistence'] = persistence + if client_protocol is not None: + parameters['client_protocol'] = client_protocol + if eviction_policy is not None: + parameters['eviction_policy'] = eviction_policy + if persistence is not None: + parameters['persistence'] = persistence + parameters['geo_replication'] = {} + if group_nickname is not None: + parameters['geo_replication']['group_nickname'] = group_nickname + if linked_databases is not None: + parameters['geo_replication']['linked_databases'] = linked_databases + if len(parameters['geo_replication']) == 0: + del parameters['geo_replication'] return sdk_no_wait(no_wait, client.begin_update, resource_group_name=resource_group_name, @@ -174,13 +211,28 @@ def redisenterprise_database_export(client, parameters=parameters) +def redisenterprise_database_force_unlink(client, + resource_group_name, + cluster_name, + unlink_ids, + no_wait=False): + parameters = {} + parameters['ids'] = unlink_ids + return sdk_no_wait(no_wait, + client.begin_force_unlink, + resource_group_name=resource_group_name, + cluster_name=cluster_name, + database_name="default", + parameters=parameters) + + def redisenterprise_database_import(client, resource_group_name, cluster_name, - sas_uri, + sas_uris, no_wait=False): parameters = {} - parameters['sas_uri'] = sas_uri + parameters['sas_uris'] = sas_uris return sdk_no_wait(no_wait, client.begin_import_method, resource_group_name=resource_group_name, diff --git a/src/redisenterprise/azext_redisenterprise/manual/_params.py b/src/redisenterprise/azext_redisenterprise/manual/_params.py index 54a404b1fe6..89ac7fe8bcc 100644 --- a/src/redisenterprise/azext_redisenterprise/manual/_params.py +++ b/src/redisenterprise/azext_redisenterprise/manual/_params.py @@ -18,7 +18,8 @@ ) from ..action import ( AddPersistence, - AddModules + AddModules, + AddLinkedDatabases ) @@ -44,6 +45,10 @@ def load_arguments(self, _): # Add new argument c.argument('no_database', action='store_true', help='Advanced. Do not automatically create a ' 'default database. Warning: the cache will not be usable until you create a database.') + c.argument('group_nickname', type=str, help='Name for the group of linked database resources', arg_group='Geo ' + 'Replication') + c.argument('linked_databases', action=AddLinkedDatabases, nargs='+', help='List of database resources to link ' + 'with this database', arg_group='Geo Replication') with self.argument_context('redisenterprise update') as c: # Update help diff --git a/src/redisenterprise/azext_redisenterprise/manual/custom.py b/src/redisenterprise/azext_redisenterprise/manual/custom.py index 6eb9ef45008..a014d738907 100644 --- a/src/redisenterprise/azext_redisenterprise/manual/custom.py +++ b/src/redisenterprise/azext_redisenterprise/manual/custom.py @@ -29,6 +29,32 @@ def _get_cluster_with_databases(cluster, return result +def redisenterprise_update(client, + resource_group_name, + cluster_name, + sku=None, + capacity=None, + tags=None, + minimum_tls_version=None, + no_wait=False): + parameters = {} + parameters['sku'] = {} + parameters['sku']['name'] = sku + if capacity is not None: + parameters['sku']['capacity'] = capacity + if len(parameters['sku']) == 0: + del parameters['sku'] + if tags is not None: + parameters['tags'] = tags + if minimum_tls_version is not None: + parameters['minimum_tls_version'] = minimum_tls_version + return sdk_no_wait(no_wait, + client.begin_update, + resource_group_name=resource_group_name, + cluster_name=cluster_name, + parameters=parameters) + + def redisenterprise_list(cmd, client, resource_group_name=None): @@ -77,13 +103,17 @@ def redisenterprise_create(cmd, persistence=None, modules=None, no_database=False, - no_wait=False): + no_wait=False, + group_nickname=None, + linked_databases=None): if (no_database and any(x is not None for x in [client_protocol, port, clustering_policy, eviction_policy, persistence, - modules])): + modules, + group_nickname, + linked_databases])): database_param_list_str = [] if client_protocol is not None: database_param_list_str.append('--client-protocol') @@ -97,6 +127,10 @@ def redisenterprise_create(cmd, database_param_list_str.append('--persistence') if modules is not None: database_param_list_str.append('--modules') + if group_nickname is not None: + database_param_list_str.append('--group-nickname') + if linked_databases is not None: + database_param_list_str.append('--linked-databases') error_msg = ('--no-database conflicts with the specified database parameter(s): ' '{}'.format(', '.join(database_param_list_str))) recommendation = ('Try to use --no-database without specifying database parameters, ' @@ -117,7 +151,9 @@ def redisenterprise_create(cmd, clustering_policy, eviction_policy, persistence, - modules])): + modules, + group_nickname, + linked_databases])): return sdk_no_wait(no_wait, client.begin_create, resource_group_name=resource_group_name, @@ -138,6 +174,13 @@ def redisenterprise_create(cmd, database_parameters['eviction_policy'] = eviction_policy database_parameters['persistence'] = persistence database_parameters['modules'] = modules + database_parameters['geo_replication'] = {} + if group_nickname is not None: + database_parameters['geo_replication']['group_nickname'] = group_nickname + if linked_databases is not None: + database_parameters['geo_replication']['linked_databases'] = linked_databases + if len(database_parameters['geo_replication']) == 0: + del database_parameters['geo_replication'] database_name = "default" database_client = _get_database_client(cmd.cli_ctx) diff --git a/src/redisenterprise/azext_redisenterprise/manual/tests/latest/example_steps.py b/src/redisenterprise/azext_redisenterprise/manual/tests/latest/example_steps.py index de7e508b5a5..43852f37d22 100644 --- a/src/redisenterprise/azext_redisenterprise/manual/tests/latest/example_steps.py +++ b/src/redisenterprise/azext_redisenterprise/manual/tests/latest/example_steps.py @@ -7,10 +7,13 @@ # EXAMPLE: /RedisEnterprise/put/RedisEnterpriseCreate -def step_create(test, rg, checks=None): + +# NOTE: Functions will always first be looked up in manual/custom.py followed by generated/custom.py + +def step_create(test, checks=None, cache_num=1): if checks is None: checks = [] - if test.kwargs.get('no_database') is True: + if test.kwargs.get('no_database'): test.cmd('az redisenterprise create ' '--cluster-name "{cluster}" ' '--sku "EnterpriseFlash_F300" ' @@ -18,6 +21,29 @@ def step_create(test, rg, checks=None): '--no-database ' '--resource-group "{rg}"', checks=checks) + elif test.kwargs.get('geo-replication'): + if cache_num == 1: + test.cmd('az redisenterprise create ' + '--cluster-name "{cluster31}" ' + '--sku "EnterpriseFlash_F300" ' + '--tags tag1="value1" ' + '--no-database ' + '--resource-group "{rg31}"', + checks=checks) + elif cache_num == 2: + test.cmd('az redisenterprise create ' + '--location "West US" ' + '--cluster-name "{cluster32}" ' + '--sku "EnterpriseFlash_F300" ' + '--client-protocol "Encrypted" ' + '--clustering-policy "EnterpriseCluster" ' + '--eviction-policy "NoEviction" ' + '--group-nickname "groupName" ' + '--linked-databases id="/subscriptions/{subscription}/resourceGroups/{rg31}/providers/Microsoft.Cache/redisEnterprise/{cluster31}/databases/{database}" ' + '--linked-databases id="/subscriptions/{subscription}/resourceGroups/{rg32}/providers/Microsoft.Cache/redisEnterprise/{cluster32}/databases/{database}" ' + '--port 10000 ' + '--resource-group "{rg32}"', + checks=checks) else: test.cmd('az redisenterprise create ' '--cluster-name "{cluster}" ' @@ -37,52 +63,101 @@ def step_create(test, rg, checks=None): checks=checks) -# EXAMPLE: /RedisEnterprise/get/RedisEnterpriseGet -def step_show(test, rg, checks=None): +# EXAMPLE: /Databases/post/RedisEnterpriseDatabasesForceUnlink - unlinking a database during a regional outage +def step_database_force_unlink(test, checks=None): if checks is None: checks = [] - test.cmd('az redisenterprise show ' - '--cluster-name "{cluster}" ' - '--resource-group "{rg}"', + test.cmd('az redisenterprise database force-unlink ' + '--cluster-name "{cluster32}" ' + '--unlink-ids "/subscriptions/{subscription}/resourceGroups/{rg31}/providers/Microsoft.Cache/redisEnterprise/{' + 'myRedisEnterprise2}/databases/{database}" ' + '--resource-group "{rg32}"', checks=checks) +# EXAMPLE: /RedisEnterprise/get/RedisEnterpriseGet +def step_show(test, checks=None): + if checks is None: + checks = [] + if test.kwargs.get('geo-replication'): + test.cmd('az redisenterprise show ' + '--cluster-name "{cluster32}" ' + '--resource-group "{rg32}"', + checks=checks) + else: + test.cmd('az redisenterprise show ' + '--cluster-name "{cluster}" ' + '--resource-group "{rg}"', + checks=checks) + + # EXAMPLE: /RedisEnterprise/delete/RedisEnterpriseDelete -def step_delete(test, rg, checks=None): +def step_delete(test, checks=None): if checks is None: checks = [] - test.cmd('az redisenterprise delete -y ' - '--cluster-name "{cluster}" ' - '--resource-group "{rg}"', - checks=checks) + if test.kwargs.get('geo-replication'): + test.cmd('az redisenterprise delete -y ' + '--cluster-name "{cluster31}" ' + '--resource-group "{rg31}"', + checks=checks) + test.cmd('az redisenterprise delete -y ' + '--cluster-name "{cluster32}" ' + '--resource-group "{rg32}"', + checks=checks) + else: + test.cmd('az redisenterprise delete -y ' + '--cluster-name "{cluster}" ' + '--resource-group "{rg}"', + checks=checks) # EXAMPLE: /Databases/put/RedisEnterpriseDatabasesCreate -def step_database_create(test, rg, checks=None): +def step_database_create(test, checks=None): if checks is None: checks = [] - test.cmd('az redisenterprise database create ' - '--cluster-name "{cluster}" ' - '--client-protocol "Plaintext" ' - '--clustering-policy "OSSCluster" ' - '--eviction-policy "AllKeysLRU" ' - '--port 10000 ' - '--resource-group "{rg}"', - checks=checks) + if test.kwargs.get('geo-replication'): + test.cmd('az redisenterprise database create ' + '--cluster-name "{cluster31}" ' + '--client-protocol "Encrypted" ' + '--clustering-policy "EnterpriseCluster" ' + '--eviction-policy "NoEviction" ' + '--group-nickname "groupName" ' + '--linked-databases id="/subscriptions/{subscription}/resourceGroups/{rg31}/providers/Microsoft.Cache/redisEnterprise/{cluster31}/databases/{database}" ' + '--port 10000 ' + '--resource-group "{rg31}"', + checks=checks) + else: + test.cmd('az redisenterprise database create ' + '--cluster-name "{cluster}" ' + '--client-protocol "Plaintext" ' + '--clustering-policy "OSSCluster" ' + '--eviction-policy "AllKeysLRU" ' + '--port 10000 ' + '--resource-group "{rg}"', + checks=checks) +def step_database_force_unlink(test, checks=None): + if checks is None: + checks = [] + test.cmd('az redisenterprise database force-unlink ' + '--cluster-name "{cluster32}" ' + '--unlink-ids "/subscriptions/{subscription}/resourceGroups/{rg31}/providers/Microsoft.Cache/redisEnterprise/{' + 'cluster31}/databases/{database}" ' + '--resource-group "{rg32}"', + checks=checks) # EXAMPLE: /Databases/get/RedisEnterpriseDatabasesGet -def step_database_show(test, rg, checks=None): +def step_database_show(test, checks=None): if checks is None: checks = [] test.cmd('az redisenterprise database show ' - '--cluster-name "{cluster}" ' - '--resource-group "{rg}"', - checks=checks) + '--cluster-name "{cluster}" ' + '--resource-group "{rg}"', + checks=checks) # EXAMPLE: /Databases/get/RedisEnterpriseDatabasesListByCluster -def step_database_list(test, rg, checks=None): +def step_database_list(test, checks=None): if checks is None: checks = [] test.cmd('az redisenterprise database list ' @@ -92,7 +167,7 @@ def step_database_list(test, rg, checks=None): # EXAMPLE: /Databases/post/RedisEnterpriseDatabasesListKeys -def step_database_list_keys(test, rg, checks=None): +def step_database_list_keys(test, checks=None): if checks is None: checks = [] test.cmd('az redisenterprise database list-keys ' @@ -102,7 +177,7 @@ def step_database_list_keys(test, rg, checks=None): # EXAMPLE: /Databases/post/RedisEnterpriseDatabasesRegenerateKey -def step_database_regenerate_key(test, rg, checks=None): +def step_database_regenerate_key(test, checks=None): if checks is None: checks = [] test.cmd('az redisenterprise database regenerate-key ' @@ -113,10 +188,20 @@ def step_database_regenerate_key(test, rg, checks=None): # EXAMPLE: /Databases/delete/RedisEnterpriseDatabasesDelete -def step_database_delete(test, rg, checks=None): +def step_database_delete(test, checks=None): if checks is None: checks = [] - test.cmd('az redisenterprise database delete -y ' - '--cluster-name "{cluster}" ' - '--resource-group "{rg}"', - checks=checks) + if test.kwargs.get('geo-replication'): + test.cmd('az redisenterprise database delete -y ' + '--cluster-name "{cluster31}" ' + '--resource-group "{rg31}"', + checks=checks) + test.cmd('az redisenterprise database delete -y ' + '--cluster-name "{cluster32}" ' + '--resource-group "{rg32}"', + checks=checks) + else: + test.cmd('az redisenterprise database delete -y ' + '--cluster-name "{cluster}" ' + '--resource-group "{rg}"', + checks=checks) diff --git a/src/redisenterprise/azext_redisenterprise/manual/tests/latest/recordings/test_redisenterprise_scenario1.yaml b/src/redisenterprise/azext_redisenterprise/manual/tests/latest/recordings/test_redisenterprise_scenario1.yaml index e3ea5f7ee0b..760e78acfd2 100644 --- a/src/redisenterprise/azext_redisenterprise/manual/tests/latest/recordings/test_redisenterprise_scenario1.yaml +++ b/src/redisenterprise/azext_redisenterprise/manual/tests/latest/recordings/test_redisenterprise_scenario1.yaml @@ -15,15 +15,12 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - python/3.8.7 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest-redisenterprise-rg1-000002?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest-redisenterprise-rg1-000002?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002","name":"clitest-redisenterprise-rg1-000002","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T18:29:04Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002","name":"clitest-redisenterprise-rg1-000002","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-31T11:28:57Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -32,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:29:07 GMT + - Tue, 31 May 2022 11:29:00 GMT expires: - '-1' pragma: @@ -68,10 +65,9 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001?api-version=2022-01-01 response: body: string: "{\r\n \"location\": \"East US\",\r\n \"name\": \"clitest-cache1-000001\",\r\n @@ -79,24 +75,24 @@ interactions: \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Enterprise_E20\",\r\n \ \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"minimumTlsVersion\": - \"1.2\",\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": - \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n - \ ]\r\n}" + \"1.2\",\r\n \"hostName\": \"clitest-cache1-000001.eastus.redisenterprise.cache.azure.net\",\r\n + \ \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n + \ },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777?api-version=2022-01-01 cache-control: - no-cache content-length: - - '576' + - '657' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:29:10 GMT + - Tue, 31 May 2022 11:29:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001?api-version=2022-01-01 pragma: - no-cache server: @@ -108,7 +104,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 201 message: Created @@ -134,10 +130,9 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases/default?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases/default?api-version=2022-01-01 response: body: string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases/default\",\r\n @@ -147,12 +142,12 @@ interactions: \"EnterpriseCluster\",\r\n \"evictionPolicy\": \"NoEviction\",\r\n \"modules\": [\r\n {\r\n \"name\": \"RedisBloom\",\r\n \"args\": \"\",\r\n \ \"version\": \"2.2.4\"\r\n },\r\n {\r\n \"name\": - \"RedisTimeSeries\",\r\n \"args\": \"\",\r\n \"version\": \"1.4.7\"\r\n + \"RedisTimeSeries\",\r\n \"args\": \"\",\r\n \"version\": \"1.4.8\"\r\n \ },\r\n {\r\n \"name\": \"RediSearch\",\r\n \"args\": \"\",\r\n \"version\": \"2.0.6\"\r\n }\r\n ]\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e?api-version=2022-01-01 cache-control: - no-cache content-length: @@ -160,11 +155,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:29:11 GMT + - Tue, 31 May 2022 11:29:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases/default?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases/default?api-version=2022-01-01 pragma: - no-cache server: @@ -176,7 +171,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 201 message: Created @@ -196,14 +191,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e","name":"2256651e-359a-40ec-a081-345f6cae761e","status":"InProgress","startTime":"2021-03-31T18:29:10.0735374+00:00","endTime":"2021-03-31T18:29:11.2771929+00:00"}' + US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777","name":"30943d27-0cbb-4b4e-a75b-283d66616777","status":"InProgress","startTime":"2022-05-31T11:29:08.2256189+00:00","endTime":"2022-05-31T11:29:09.6670759+00:00"}' headers: cache-control: - no-cache @@ -212,7 +206,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:29:40 GMT + - Tue, 31 May 2022 11:29:39 GMT expires: - '-1' pragma: @@ -228,7 +222,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -248,14 +242,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc","name":"565c4528-ef18-4a1b-9a59-80218c13d8dc","status":"Pending","startTime":"2021-03-31T18:29:11.6646467+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e","name":"058d6b0e-6a75-4089-909d-e946d8351b1e","status":"Pending","startTime":"2022-05-31T11:29:13.6541916+00:00","endTime":"0001-01-01T00:00:00+00:00"}' headers: cache-control: - no-cache @@ -264,7 +257,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:29:41 GMT + - Tue, 31 May 2022 11:29:43 GMT expires: - '-1' pragma: @@ -280,7 +273,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -300,14 +293,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e","name":"2256651e-359a-40ec-a081-345f6cae761e","status":"InProgress","startTime":"2021-03-31T18:29:10.0735374+00:00","endTime":"2021-03-31T18:29:11.2771929+00:00"}' + US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777","name":"30943d27-0cbb-4b4e-a75b-283d66616777","status":"InProgress","startTime":"2022-05-31T11:29:08.2256189+00:00","endTime":"2022-05-31T11:29:09.6670759+00:00"}' headers: cache-control: - no-cache @@ -316,7 +308,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:30:10 GMT + - Tue, 31 May 2022 11:30:09 GMT expires: - '-1' pragma: @@ -332,7 +324,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -352,14 +344,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc","name":"565c4528-ef18-4a1b-9a59-80218c13d8dc","status":"Pending","startTime":"2021-03-31T18:29:11.6646467+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e","name":"058d6b0e-6a75-4089-909d-e946d8351b1e","status":"Pending","startTime":"2022-05-31T11:29:13.6541916+00:00","endTime":"0001-01-01T00:00:00+00:00"}' headers: cache-control: - no-cache @@ -368,7 +359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:30:11 GMT + - Tue, 31 May 2022 11:30:13 GMT expires: - '-1' pragma: @@ -384,7 +375,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -404,14 +395,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e","name":"2256651e-359a-40ec-a081-345f6cae761e","status":"InProgress","startTime":"2021-03-31T18:29:10.0735374+00:00","endTime":"2021-03-31T18:29:11.2771929+00:00"}' + US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777","name":"30943d27-0cbb-4b4e-a75b-283d66616777","status":"InProgress","startTime":"2022-05-31T11:29:08.2256189+00:00","endTime":"2022-05-31T11:29:09.6670759+00:00"}' headers: cache-control: - no-cache @@ -420,7 +410,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:30:41 GMT + - Tue, 31 May 2022 11:30:40 GMT expires: - '-1' pragma: @@ -436,7 +426,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -456,14 +446,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc","name":"565c4528-ef18-4a1b-9a59-80218c13d8dc","status":"Pending","startTime":"2021-03-31T18:29:11.6646467+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e","name":"058d6b0e-6a75-4089-909d-e946d8351b1e","status":"Pending","startTime":"2022-05-31T11:29:13.6541916+00:00","endTime":"0001-01-01T00:00:00+00:00"}' headers: cache-control: - no-cache @@ -472,7 +461,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:30:41 GMT + - Tue, 31 May 2022 11:30:44 GMT expires: - '-1' pragma: @@ -488,7 +477,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -508,14 +497,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e","name":"2256651e-359a-40ec-a081-345f6cae761e","status":"InProgress","startTime":"2021-03-31T18:29:10.0735374+00:00","endTime":"2021-03-31T18:29:11.2771929+00:00"}' + US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777","name":"30943d27-0cbb-4b4e-a75b-283d66616777","status":"InProgress","startTime":"2022-05-31T11:29:08.2256189+00:00","endTime":"2022-05-31T11:29:09.6670759+00:00"}' headers: cache-control: - no-cache @@ -524,7 +512,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:31:11 GMT + - Tue, 31 May 2022 11:31:10 GMT expires: - '-1' pragma: @@ -540,7 +528,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -560,14 +548,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc","name":"565c4528-ef18-4a1b-9a59-80218c13d8dc","status":"Pending","startTime":"2021-03-31T18:29:11.6646467+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e","name":"058d6b0e-6a75-4089-909d-e946d8351b1e","status":"Pending","startTime":"2022-05-31T11:29:13.6541916+00:00","endTime":"0001-01-01T00:00:00+00:00"}' headers: cache-control: - no-cache @@ -576,7 +563,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:31:12 GMT + - Tue, 31 May 2022 11:31:14 GMT expires: - '-1' pragma: @@ -592,7 +579,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -612,14 +599,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e","name":"2256651e-359a-40ec-a081-345f6cae761e","status":"InProgress","startTime":"2021-03-31T18:29:10.0735374+00:00","endTime":"2021-03-31T18:29:11.2771929+00:00"}' + US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777","name":"30943d27-0cbb-4b4e-a75b-283d66616777","status":"InProgress","startTime":"2022-05-31T11:29:08.2256189+00:00","endTime":"2022-05-31T11:29:09.6670759+00:00"}' headers: cache-control: - no-cache @@ -628,7 +614,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:31:41 GMT + - Tue, 31 May 2022 11:31:40 GMT expires: - '-1' pragma: @@ -644,7 +630,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -664,14 +650,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc","name":"565c4528-ef18-4a1b-9a59-80218c13d8dc","status":"Pending","startTime":"2021-03-31T18:29:11.6646467+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e","name":"058d6b0e-6a75-4089-909d-e946d8351b1e","status":"Pending","startTime":"2022-05-31T11:29:13.6541916+00:00","endTime":"0001-01-01T00:00:00+00:00"}' headers: cache-control: - no-cache @@ -680,7 +665,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:31:42 GMT + - Tue, 31 May 2022 11:31:44 GMT expires: - '-1' pragma: @@ -696,7 +681,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -716,14 +701,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e","name":"2256651e-359a-40ec-a081-345f6cae761e","status":"InProgress","startTime":"2021-03-31T18:29:10.0735374+00:00","endTime":"2021-03-31T18:29:11.2771929+00:00"}' + US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777","name":"30943d27-0cbb-4b4e-a75b-283d66616777","status":"InProgress","startTime":"2022-05-31T11:29:08.2256189+00:00","endTime":"2022-05-31T11:29:09.6670759+00:00"}' headers: cache-control: - no-cache @@ -732,7 +716,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:32:11 GMT + - Tue, 31 May 2022 11:32:11 GMT expires: - '-1' pragma: @@ -748,7 +732,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -768,14 +752,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc","name":"565c4528-ef18-4a1b-9a59-80218c13d8dc","status":"Pending","startTime":"2021-03-31T18:29:11.6646467+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e","name":"058d6b0e-6a75-4089-909d-e946d8351b1e","status":"Pending","startTime":"2022-05-31T11:29:13.6541916+00:00","endTime":"0001-01-01T00:00:00+00:00"}' headers: cache-control: - no-cache @@ -784,7 +767,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:32:12 GMT + - Tue, 31 May 2022 11:32:15 GMT expires: - '-1' pragma: @@ -800,7 +783,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -820,14 +803,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e","name":"2256651e-359a-40ec-a081-345f6cae761e","status":"InProgress","startTime":"2021-03-31T18:29:10.0735374+00:00","endTime":"2021-03-31T18:29:11.2771929+00:00"}' + US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777","name":"30943d27-0cbb-4b4e-a75b-283d66616777","status":"InProgress","startTime":"2022-05-31T11:29:08.2256189+00:00","endTime":"2022-05-31T11:29:09.6670759+00:00"}' headers: cache-control: - no-cache @@ -836,7 +818,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:32:41 GMT + - Tue, 31 May 2022 11:32:41 GMT expires: - '-1' pragma: @@ -852,7 +834,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -872,14 +854,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc","name":"565c4528-ef18-4a1b-9a59-80218c13d8dc","status":"Pending","startTime":"2021-03-31T18:29:11.6646467+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e","name":"058d6b0e-6a75-4089-909d-e946d8351b1e","status":"Pending","startTime":"2022-05-31T11:29:13.6541916+00:00","endTime":"0001-01-01T00:00:00+00:00"}' headers: cache-control: - no-cache @@ -888,7 +869,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:32:42 GMT + - Tue, 31 May 2022 11:32:45 GMT expires: - '-1' pragma: @@ -904,7 +885,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -924,14 +905,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e","name":"2256651e-359a-40ec-a081-345f6cae761e","status":"InProgress","startTime":"2021-03-31T18:29:10.0735374+00:00","endTime":"2021-03-31T18:29:11.2771929+00:00"}' + US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777","name":"30943d27-0cbb-4b4e-a75b-283d66616777","status":"InProgress","startTime":"2022-05-31T11:29:08.2256189+00:00","endTime":"2022-05-31T11:29:09.6670759+00:00"}' headers: cache-control: - no-cache @@ -940,7 +920,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:33:11 GMT + - Tue, 31 May 2022 11:33:13 GMT expires: - '-1' pragma: @@ -956,7 +936,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -976,14 +956,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc","name":"565c4528-ef18-4a1b-9a59-80218c13d8dc","status":"Pending","startTime":"2021-03-31T18:29:11.6646467+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e","name":"058d6b0e-6a75-4089-909d-e946d8351b1e","status":"Pending","startTime":"2022-05-31T11:29:13.6541916+00:00","endTime":"0001-01-01T00:00:00+00:00"}' headers: cache-control: - no-cache @@ -992,7 +971,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:33:12 GMT + - Tue, 31 May 2022 11:33:16 GMT expires: - '-1' pragma: @@ -1008,7 +987,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1028,14 +1007,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e","name":"2256651e-359a-40ec-a081-345f6cae761e","status":"InProgress","startTime":"2021-03-31T18:29:10.0735374+00:00","endTime":"2021-03-31T18:29:11.2771929+00:00"}' + US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777","name":"30943d27-0cbb-4b4e-a75b-283d66616777","status":"InProgress","startTime":"2022-05-31T11:29:08.2256189+00:00","endTime":"2022-05-31T11:29:09.6670759+00:00"}' headers: cache-control: - no-cache @@ -1044,7 +1022,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:33:41 GMT + - Tue, 31 May 2022 11:33:44 GMT expires: - '-1' pragma: @@ -1060,7 +1038,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1080,14 +1058,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc","name":"565c4528-ef18-4a1b-9a59-80218c13d8dc","status":"Pending","startTime":"2021-03-31T18:29:11.6646467+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e","name":"058d6b0e-6a75-4089-909d-e946d8351b1e","status":"Pending","startTime":"2022-05-31T11:29:13.6541916+00:00","endTime":"0001-01-01T00:00:00+00:00"}' headers: cache-control: - no-cache @@ -1096,7 +1073,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:33:42 GMT + - Tue, 31 May 2022 11:33:47 GMT expires: - '-1' pragma: @@ -1112,7 +1089,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1132,14 +1109,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e","name":"2256651e-359a-40ec-a081-345f6cae761e","status":"InProgress","startTime":"2021-03-31T18:29:10.0735374+00:00","endTime":"2021-03-31T18:29:11.2771929+00:00"}' + US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777","name":"30943d27-0cbb-4b4e-a75b-283d66616777","status":"InProgress","startTime":"2022-05-31T11:29:08.2256189+00:00","endTime":"2022-05-31T11:29:09.6670759+00:00"}' headers: cache-control: - no-cache @@ -1148,7 +1124,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:34:11 GMT + - Tue, 31 May 2022 11:34:14 GMT expires: - '-1' pragma: @@ -1164,7 +1140,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1184,14 +1160,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc","name":"565c4528-ef18-4a1b-9a59-80218c13d8dc","status":"Pending","startTime":"2021-03-31T18:29:11.6646467+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e","name":"058d6b0e-6a75-4089-909d-e946d8351b1e","status":"Pending","startTime":"2022-05-31T11:29:13.6541916+00:00","endTime":"0001-01-01T00:00:00+00:00"}' headers: cache-control: - no-cache @@ -1200,7 +1175,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:34:12 GMT + - Tue, 31 May 2022 11:34:17 GMT expires: - '-1' pragma: @@ -1216,7 +1191,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1236,14 +1211,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e","name":"2256651e-359a-40ec-a081-345f6cae761e","status":"InProgress","startTime":"2021-03-31T18:29:10.0735374+00:00","endTime":"2021-03-31T18:29:11.2771929+00:00"}' + US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777","name":"30943d27-0cbb-4b4e-a75b-283d66616777","status":"InProgress","startTime":"2022-05-31T11:29:08.2256189+00:00","endTime":"2022-05-31T11:29:09.6670759+00:00"}' headers: cache-control: - no-cache @@ -1252,7 +1226,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:34:41 GMT + - Tue, 31 May 2022 11:34:45 GMT expires: - '-1' pragma: @@ -1268,7 +1242,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1288,14 +1262,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc","name":"565c4528-ef18-4a1b-9a59-80218c13d8dc","status":"Pending","startTime":"2021-03-31T18:29:11.6646467+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e","name":"058d6b0e-6a75-4089-909d-e946d8351b1e","status":"Pending","startTime":"2022-05-31T11:29:13.6541916+00:00","endTime":"0001-01-01T00:00:00+00:00"}' headers: cache-control: - no-cache @@ -1304,7 +1277,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:34:42 GMT + - Tue, 31 May 2022 11:34:47 GMT expires: - '-1' pragma: @@ -1320,7 +1293,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1340,14 +1313,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e","name":"2256651e-359a-40ec-a081-345f6cae761e","status":"InProgress","startTime":"2021-03-31T18:29:10.0735374+00:00","endTime":"2021-03-31T18:29:11.2771929+00:00"}' + US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777","name":"30943d27-0cbb-4b4e-a75b-283d66616777","status":"InProgress","startTime":"2022-05-31T11:29:08.2256189+00:00","endTime":"2022-05-31T11:29:09.6670759+00:00"}' headers: cache-control: - no-cache @@ -1356,7 +1328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:35:12 GMT + - Tue, 31 May 2022 11:35:15 GMT expires: - '-1' pragma: @@ -1372,7 +1344,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1392,14 +1364,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc","name":"565c4528-ef18-4a1b-9a59-80218c13d8dc","status":"Pending","startTime":"2021-03-31T18:29:11.6646467+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e","name":"058d6b0e-6a75-4089-909d-e946d8351b1e","status":"Pending","startTime":"2022-05-31T11:29:13.6541916+00:00","endTime":"0001-01-01T00:00:00+00:00"}' headers: cache-control: - no-cache @@ -1408,7 +1379,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:35:12 GMT + - Tue, 31 May 2022 11:35:17 GMT expires: - '-1' pragma: @@ -1424,7 +1395,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1444,14 +1415,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e","name":"2256651e-359a-40ec-a081-345f6cae761e","status":"InProgress","startTime":"2021-03-31T18:29:10.0735374+00:00","endTime":"2021-03-31T18:29:11.2771929+00:00"}' + US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777","name":"30943d27-0cbb-4b4e-a75b-283d66616777","status":"InProgress","startTime":"2022-05-31T11:29:08.2256189+00:00","endTime":"2022-05-31T11:29:09.6670759+00:00"}' headers: cache-control: - no-cache @@ -1460,7 +1430,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:35:42 GMT + - Tue, 31 May 2022 11:35:45 GMT expires: - '-1' pragma: @@ -1476,7 +1446,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1496,14 +1466,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc","name":"565c4528-ef18-4a1b-9a59-80218c13d8dc","status":"Pending","startTime":"2021-03-31T18:29:11.6646467+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e","name":"058d6b0e-6a75-4089-909d-e946d8351b1e","status":"Pending","startTime":"2022-05-31T11:29:13.6541916+00:00","endTime":"0001-01-01T00:00:00+00:00"}' headers: cache-control: - no-cache @@ -1512,7 +1481,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:35:43 GMT + - Tue, 31 May 2022 11:35:48 GMT expires: - '-1' pragma: @@ -1528,7 +1497,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1548,14 +1517,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e","name":"2256651e-359a-40ec-a081-345f6cae761e","status":"InProgress","startTime":"2021-03-31T18:29:10.0735374+00:00","endTime":"2021-03-31T18:29:11.2771929+00:00"}' + US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777","name":"30943d27-0cbb-4b4e-a75b-283d66616777","status":"InProgress","startTime":"2022-05-31T11:29:08.2256189+00:00","endTime":"2022-05-31T11:29:09.6670759+00:00"}' headers: cache-control: - no-cache @@ -1564,7 +1532,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:36:12 GMT + - Tue, 31 May 2022 11:36:15 GMT expires: - '-1' pragma: @@ -1580,7 +1548,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1600,14 +1568,13 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc","name":"565c4528-ef18-4a1b-9a59-80218c13d8dc","status":"Pending","startTime":"2021-03-31T18:29:11.6646467+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e","name":"058d6b0e-6a75-4089-909d-e946d8351b1e","status":"Pending","startTime":"2022-05-31T11:29:13.6541916+00:00","endTime":"0001-01-01T00:00:00+00:00"}' headers: cache-control: - no-cache @@ -1616,7 +1583,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:36:13 GMT + - Tue, 31 May 2022 11:36:18 GMT expires: - '-1' pragma: @@ -1632,7 +1599,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1652,14 +1619,319 @@ interactions: --clustering-policy --eviction-policy --modules --modules --modules --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/2256651e-359a-40ec-a081-345f6cae761e","name":"2256651e-359a-40ec-a081-345f6cae761e","status":"Succeeded","startTime":"2021-03-31T18:29:10.0735374+00:00","endTime":"2021-03-31T18:36:36.7406849+00:00"}' + US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777","name":"30943d27-0cbb-4b4e-a75b-283d66616777","status":"InProgress","startTime":"2022-05-31T11:29:08.2256189+00:00","endTime":"2022-05-31T11:29:09.6670759+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 11:36:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --capacity --tags --zones --minimum-tls-version --client-protocol + --clustering-policy --eviction-policy --modules --modules --modules --port + --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e","name":"058d6b0e-6a75-4089-909d-e946d8351b1e","status":"Pending","startTime":"2022-05-31T11:29:13.6541916+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '309' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 11:36:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --capacity --tags --zones --minimum-tls-version --client-protocol + --clustering-policy --eviction-policy --modules --modules --modules --port + --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777","name":"30943d27-0cbb-4b4e-a75b-283d66616777","status":"InProgress","startTime":"2022-05-31T11:29:08.2256189+00:00","endTime":"2022-05-31T11:29:09.6670759+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 11:37:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --capacity --tags --zones --minimum-tls-version --client-protocol + --clustering-policy --eviction-policy --modules --modules --modules --port + --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e","name":"058d6b0e-6a75-4089-909d-e946d8351b1e","status":"Pending","startTime":"2022-05-31T11:29:13.6541916+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '309' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 11:37:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --capacity --tags --zones --minimum-tls-version --client-protocol + --clustering-policy --eviction-policy --modules --modules --modules --port + --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777","name":"30943d27-0cbb-4b4e-a75b-283d66616777","status":"InProgress","startTime":"2022-05-31T11:29:08.2256189+00:00","endTime":"2022-05-31T11:29:09.6670759+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 11:37:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --capacity --tags --zones --minimum-tls-version --client-protocol + --clustering-policy --eviction-policy --modules --modules --modules --port + --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e","name":"058d6b0e-6a75-4089-909d-e946d8351b1e","status":"Pending","startTime":"2022-05-31T11:29:13.6541916+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '309' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 11:37:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --capacity --tags --zones --minimum-tls-version --client-protocol + --clustering-policy --eviction-policy --modules --modules --modules --port + --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/30943d27-0cbb-4b4e-a75b-283d66616777","name":"30943d27-0cbb-4b4e-a75b-283d66616777","status":"Succeeded","startTime":"2022-05-31T11:29:08.2256189+00:00","endTime":"2022-05-31T11:38:12.5194905+00:00"}' headers: cache-control: - no-cache @@ -1668,7 +1940,273 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:36:42 GMT + - Tue, 31 May 2022 11:38:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --capacity --tags --zones --minimum-tls-version --client-protocol + --clustering-policy --eviction-policy --modules --modules --modules --port + --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001?api-version=2022-01-01 + response: + body: + string: "{\r\n \"location\": \"East US\",\r\n \"name\": \"clitest-cache1-000001\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {\r\n \"tag1\": + \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Enterprise_E20\",\r\n + \ \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"minimumTlsVersion\": + \"1.2\",\r\n \"hostName\": \"clitest-cache1-000001.eastus.redisenterprise.cache.azure.net\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n + \ \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n + \ \"2\",\r\n \"3\"\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '696' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 11:38:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --capacity --tags --zones --minimum-tls-version --client-protocol + --clustering-policy --eviction-policy --modules --modules --modules --port + --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e","name":"058d6b0e-6a75-4089-909d-e946d8351b1e","status":"InProgress","startTime":"2022-05-31T11:29:13.6541916+00:00","endTime":"2022-05-31T11:38:15.2097773+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 11:38:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --capacity --tags --zones --minimum-tls-version --client-protocol + --clustering-policy --eviction-policy --modules --modules --modules --port + --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/058d6b0e-6a75-4089-909d-e946d8351b1e","name":"058d6b0e-6a75-4089-909d-e946d8351b1e","status":"Succeeded","startTime":"2022-05-31T11:29:13.6541916+00:00","endTime":"2022-05-31T11:38:22.6333528+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '319' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 11:38:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --capacity --tags --zones --minimum-tls-version --client-protocol + --clustering-policy --eviction-policy --modules --modules --modules --port + --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases/default?api-version=2022-01-01 + response: + body: + string: '{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases/default","type":"Microsoft.Cache/redisEnterprise/databases","properties":{"clientProtocol":"Encrypted","port":10000,"provisioningState":"Succeeded","resourceState":"Running","clusteringPolicy":"EnterpriseCluster","evictionPolicy":"NoEviction","modules":[{"name":"RedisBloom","args":"","version":"2.2.9"},{"name":"RedisTimeSeries","args":"","version":"1.4.13"},{"name":"RediSearch","args":"","version":"2.2.6"}]}}' + headers: + cache-control: + - no-cache + content-length: + - '612' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 11:38:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001?api-version=2022-01-01 + response: + body: + string: "{\r\n \"location\": \"East US\",\r\n \"name\": \"clitest-cache1-000001\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {\r\n \"tag1\": + \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Enterprise_E20\",\r\n + \ \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"minimumTlsVersion\": + \"1.2\",\r\n \"hostName\": \"clitest-cache1-000001.eastus.redisenterprise.cache.azure.net\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n + \ \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n + \ \"2\",\r\n \"3\"\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '696' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 11:38:56 GMT expires: - '-1' pragma: @@ -1684,7 +2222,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1692,41 +2230,43 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - redisenterprise create + - redisenterprise show Connection: - keep-alive ParameterSetName: - - --cluster-name --sku --capacity --tags --zones --minimum-tls-version --client-protocol - --clustering-policy --eviction-policy --modules --modules --modules --port - --resource-group + - --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases?api-version=2022-01-01 response: body: - string: "{\r\n \"location\": \"East US\",\r\n \"name\": \"clitest-cache1-000001\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001\",\r\n - \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {\r\n \"tag1\": - \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Enterprise_E20\",\r\n - \ \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"minimumTlsVersion\": - \"1.2\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": - \"Running\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": - [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}" + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases/default\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": + {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"port\": 10000,\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": + \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": + \"NoEviction\",\r\n \"modules\": [\r\n {\r\n \"name\": + \"RedisBloom\",\r\n \"args\": \"\",\r\n \"version\": + \"2.2.9\"\r\n },\r\n {\r\n \"name\": \"RedisTimeSeries\",\r\n + \ \"args\": \"\",\r\n \"version\": \"1.4.13\"\r\n },\r\n + \ {\r\n \"name\": \"RediSearch\",\r\n \"args\": + \"\",\r\n \"version\": \"2.2.6\"\r\n }\r\n ]\r\n + \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '615' + - '985' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:36:42 GMT + - Tue, 31 May 2022 11:38:58 GMT expires: - '-1' pragma: @@ -1742,7 +2282,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1750,51 +2290,50 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - redisenterprise create + - redisenterprise list Connection: - keep-alive ParameterSetName: - - --cluster-name --sku --capacity --tags --zones --minimum-tls-version --client-protocol - --clustering-policy --eviction-policy --modules --modules --modules --port - --resource-group + - -g User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/redisEnterprise?api-version=2022-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc","name":"565c4528-ef18-4a1b-9a59-80218c13d8dc","status":"InProgress","startTime":"2021-03-31T18:29:11.6646467+00:00","endTime":"2021-03-31T18:36:42.2195959+00:00"}' + string: '{"value":[{"location":"East US","name":"RedisActiveGeo1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/RedisActiveGeo1","type":"Microsoft.Cache/redisEnterprise","tags":{},"sku":{"name":"Enterprise_E10","capacity":2},"properties":{"minimumTlsVersion":"1.2","hostName":"RedisActiveGeo1.eastus.redisenterprise.cache.azure.net","provisioningState":"Succeeded","resourceState":"Running","privateEndpointConnections":[]}},{"location":"East + US","name":"clitest-cache1-oj3yoh","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-h5w5yv/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-oj3yoh","type":"Microsoft.Cache/redisEnterprise","tags":{"tag1":"value1"},"sku":{"name":"Enterprise_E20","capacity":4},"properties":{"minimumTlsVersion":"1.2","hostName":"clitest-cache1-oj3yoh.eastus.redisenterprise.cache.azure.net","provisioningState":"Deleting","resourceState":"Deleting","privateEndpointConnections":[]},"zones":["1","2","3"]},{"location":"East + US","name":"clitest-cache1-000001","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001","type":"Microsoft.Cache/redisEnterprise","tags":{"tag1":"value1"},"sku":{"name":"Enterprise_E20","capacity":4},"properties":{"minimumTlsVersion":"1.2","hostName":"clitest-cache1-000001.eastus.redisenterprise.cache.azure.net","provisioningState":"Succeeded","resourceState":"Running","privateEndpointConnections":[]},"zones":["1","2","3"]},{"location":"West + US 2","name":"ForceUnlink1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink1","type":"Microsoft.Cache/redisEnterprise","tags":{},"sku":{"name":"Enterprise_E10","capacity":2},"properties":{"minimumTlsVersion":"1.2","hostName":"ForceUnlink1.westus2.redisenterprise.cache.azure.net","provisioningState":"Succeeded","resourceState":"Running","privateEndpointConnections":[]}},{"location":"West + US 2","name":"ForceUnlink2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink2","type":"Microsoft.Cache/redisEnterprise","tags":{},"sku":{"name":"Enterprise_E10","capacity":2},"properties":{"minimumTlsVersion":"1.2","hostName":"ForceUnlink2.westus2.redisenterprise.cache.azure.net","provisioningState":"Succeeded","resourceState":"Running","privateEndpointConnections":[]}},{"location":"West + US 2","name":"ForceUnlink4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink4","type":"Microsoft.Cache/redisEnterprise","tags":{},"sku":{"name":"Enterprise_E10","capacity":2},"properties":{"minimumTlsVersion":"1.2","hostName":"ForceUnlink4.westus2.redisenterprise.cache.azure.net","provisioningState":"Succeeded","resourceState":"Running","privateEndpointConnections":[]}},{"location":"West + US 2","name":"ForceUnlink5","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink5","type":"Microsoft.Cache/redisEnterprise","tags":{},"sku":{"name":"Enterprise_E10","capacity":2},"properties":{"minimumTlsVersion":"1.2","hostName":"ForceUnlink5.westus2.redisenterprise.cache.azure.net","provisioningState":"Succeeded","resourceState":"Running","privateEndpointConnections":[]}}]}' headers: cache-control: - no-cache content-length: - - '320' + - '3552' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:36:43 GMT + - Tue, 31 May 2022 11:38:59 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff - x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + x-ms-original-request-ids: + - 91da1394-b799-4134-a939-554b34a45d0f + - d4d77d65-4e20-42f9-9ecb-497e92b89097 status: code: 200 message: OK @@ -1802,35 +2341,43 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - redisenterprise create + - redisenterprise list Connection: - keep-alive ParameterSetName: - - --cluster-name --sku --capacity --tags --zones --minimum-tls-version --client-protocol - --clustering-policy --eviction-policy --modules --modules --modules --port - --resource-group + - -g User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/RedisActiveGeo1/databases?api-version=2022-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/565c4528-ef18-4a1b-9a59-80218c13d8dc","name":"565c4528-ef18-4a1b-9a59-80218c13d8dc","status":"Succeeded","startTime":"2021-03-31T18:29:11.6646467+00:00","endTime":"2021-03-31T18:37:07.1387513+00:00"}' + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/RedisActiveGeo1/databases/default\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": + {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"port\": 10000,\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": + \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": + \"NoEviction\",\r\n \"persistence\": {\r\n \"aofEnabled\": + false,\r\n \"rdbEnabled\": false,\r\n \"aofFrequency\": + null,\r\n \"rdbFrequency\": null\r\n },\r\n \"geoReplication\": + {\r\n \"linkedDatabases\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/RedisActiveGeo1/databases/default\",\r\n + \ \"state\": \"Linked\"\r\n }\r\n ],\r\n \"groupNickname\": + \"activeGeoTesting\"\r\n }\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '319' + - '1103' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:14 GMT + - Tue, 31 May 2022 11:39:02 GMT expires: - '-1' pragma: @@ -1846,7 +2393,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1854,34 +2401,31 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - redisenterprise create + - redisenterprise list Connection: - keep-alive ParameterSetName: - - --cluster-name --sku --capacity --tags --zones --minimum-tls-version --client-protocol - --clustering-policy --eviction-policy --modules --modules --modules --port - --resource-group + - -g User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases/default?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-h5w5yv/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-oj3yoh/databases?api-version=2022-01-01 response: body: - string: '{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases/default","type":"Microsoft.Cache/redisEnterprise/databases","properties":{"clientProtocol":"Encrypted","port":10000,"provisioningState":"Succeeded","resourceState":"Running","clusteringPolicy":"EnterpriseCluster","evictionPolicy":"NoEviction","modules":[{"name":"RedisBloom","args":"","version":"2.2.4"},{"name":"RedisTimeSeries","args":"","version":"1.4.7"},{"name":"RediSearch","args":"","version":"2.0.6"}]}}' + string: "{\r\n \"value\": []\r\n}" headers: cache-control: - no-cache content-length: - - '611' + - '19' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:14 GMT + - Tue, 31 May 2022 11:39:02 GMT expires: - '-1' pragma: @@ -1897,7 +2441,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1909,35 +2453,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - redisenterprise show + - redisenterprise list Connection: - keep-alive ParameterSetName: - - --cluster-name --resource-group + - -g User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases?api-version=2022-01-01 response: body: - string: "{\r\n \"location\": \"East US\",\r\n \"name\": \"clitest-cache1-000001\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001\",\r\n - \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {\r\n \"tag1\": - \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Enterprise_E20\",\r\n - \ \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"minimumTlsVersion\": - \"1.2\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": - \"Running\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": - [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}" + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases/default\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": + {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"port\": 10000,\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": + \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": + \"NoEviction\",\r\n \"modules\": [\r\n {\r\n \"name\": + \"RedisBloom\",\r\n \"args\": \"\",\r\n \"version\": + \"2.2.9\"\r\n },\r\n {\r\n \"name\": \"RedisTimeSeries\",\r\n + \ \"args\": \"\",\r\n \"version\": \"1.4.13\"\r\n },\r\n + \ {\r\n \"name\": \"RediSearch\",\r\n \"args\": + \"\",\r\n \"version\": \"2.2.6\"\r\n }\r\n ]\r\n + \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '615' + - '985' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:15 GMT + - Tue, 31 May 2022 11:39:03 GMT expires: - '-1' pragma: @@ -1953,7 +2501,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1965,40 +2513,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - redisenterprise show + - redisenterprise list Connection: - keep-alive ParameterSetName: - - --cluster-name --resource-group + - -g User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink1/databases?api-version=2022-01-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases/default\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink1/databases/default\",\r\n \ \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"port\": 10000,\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": - \"NoEviction\",\r\n \"modules\": [\r\n {\r\n \"name\": - \"RedisBloom\",\r\n \"args\": \"\",\r\n \"version\": - \"2.2.4\"\r\n },\r\n {\r\n \"name\": \"RedisTimeSeries\",\r\n - \ \"args\": \"\",\r\n \"version\": \"1.4.7\"\r\n },\r\n - \ {\r\n \"name\": \"RediSearch\",\r\n \"args\": - \"\",\r\n \"version\": \"2.0.6\"\r\n }\r\n ]\r\n - \ }\r\n }\r\n ]\r\n}" + \"NoEviction\",\r\n \"persistence\": {\r\n \"aofEnabled\": + false,\r\n \"rdbEnabled\": false,\r\n \"aofFrequency\": + null,\r\n \"rdbFrequency\": null\r\n },\r\n \"geoReplication\": + {\r\n \"linkedDatabases\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink1/databases/default\",\r\n + \ \"state\": \"Linked\"\r\n },\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink2/databases/default\",\r\n + \ \"state\": \"Linked\"\r\n },\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink5/databases/default\",\r\n + \ \"state\": \"Linked\"\r\n }\r\n ],\r\n \"groupNickname\": + \"groupName\"\r\n }\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '984' + - '1570' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:15 GMT + - Tue, 31 May 2022 11:39:05 GMT expires: - '-1' pragma: @@ -2014,7 +2565,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2032,37 +2583,30 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/redisEnterprise?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink2/databases?api-version=2022-01-01 response: body: - string: "{\r\n \"value\": [\r\n {\r\n \"location\": \"East US\",\r\n - \ \"name\": \"clitest-cache1-000001\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001\",\r\n - \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {\r\n - \ \"tag1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": - \"Enterprise_E20\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": - {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"privateEndpointConnections\": - []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n - \ \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East - US\",\r\n \"name\": \"clitest-cache2-llytm7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-te6mxc/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-llytm7\",\r\n - \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {\r\n - \ \"tag1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": - \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": - {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"privateEndpointConnections\": - []\r\n }\r\n }\r\n ]\r\n}" + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink2/databases/default\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": + {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"port\": 10000,\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": + \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": + \"NoEviction\",\r\n \"geoReplication\": {\r\n \"linkedDatabases\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink2/databases/default\",\r\n + \ \"state\": \"Linked\"\r\n }\r\n ],\r\n \"groupNickname\": + \"groupName\"\r\n }\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1387' + - '923' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:15 GMT + - Tue, 31 May 2022 11:39:06 GMT expires: - '-1' pragma: @@ -2078,7 +2622,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2096,34 +2640,21 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink4/databases?api-version=2022-01-01 response: body: - string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases/default\",\r\n - \ \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": - {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"port\": 10000,\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": - \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": - \"NoEviction\",\r\n \"modules\": [\r\n {\r\n \"name\": - \"RedisBloom\",\r\n \"args\": \"\",\r\n \"version\": - \"2.2.4\"\r\n },\r\n {\r\n \"name\": \"RedisTimeSeries\",\r\n - \ \"args\": \"\",\r\n \"version\": \"1.4.7\"\r\n },\r\n - \ {\r\n \"name\": \"RediSearch\",\r\n \"args\": - \"\",\r\n \"version\": \"2.0.6\"\r\n }\r\n ]\r\n - \ }\r\n }\r\n ]\r\n}" + string: "{\r\n \"value\": []\r\n}" headers: cache-control: - no-cache content-length: - - '984' + - '19' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:16 GMT + - Tue, 31 May 2022 11:39:06 GMT expires: - '-1' pragma: @@ -2139,7 +2670,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2157,22 +2688,32 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-te6mxc/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-llytm7/databases?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink5/databases?api-version=2022-01-01 response: body: - string: "{\r\n \"value\": []\r\n}" + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink5/databases/default\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": + {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"port\": 10000,\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": + \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": + \"NoEviction\",\r\n \"geoReplication\": {\r\n \"linkedDatabases\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink2/databases/default\",\r\n + \ \"state\": \"Linked\"\r\n },\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink5/databases/default\",\r\n + \ \"state\": \"Linked\"\r\n }\r\n ],\r\n \"groupNickname\": + \"groupName\"\r\n }\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '19' + - '1163' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:16 GMT + - Tue, 31 May 2022 11:39:07 GMT expires: - '-1' pragma: @@ -2188,7 +2729,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2206,10 +2747,9 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise?api-version=2022-01-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"location\": \"East US\",\r\n @@ -2217,19 +2757,20 @@ interactions: \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {\r\n \ \"tag1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Enterprise_E20\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": - {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"privateEndpointConnections\": - []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n - \ \"3\"\r\n ]\r\n }\r\n ]\r\n}" + {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"hostName\": \"clitest-cache1-000001.eastus.redisenterprise.cache.azure.net\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": + \"Running\",\r\n \"privateEndpointConnections\": []\r\n },\r\n + \ \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n + \ ]\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '736' + - '821' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:16 GMT + - Tue, 31 May 2022 11:39:08 GMT expires: - '-1' pragma: @@ -2245,7 +2786,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2263,10 +2804,9 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases?api-version=2022-01-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": @@ -2277,20 +2817,20 @@ interactions: \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": \"NoEviction\",\r\n \"modules\": [\r\n {\r\n \"name\": \"RedisBloom\",\r\n \"args\": \"\",\r\n \"version\": - \"2.2.4\"\r\n },\r\n {\r\n \"name\": \"RedisTimeSeries\",\r\n - \ \"args\": \"\",\r\n \"version\": \"1.4.7\"\r\n },\r\n + \"2.2.9\"\r\n },\r\n {\r\n \"name\": \"RedisTimeSeries\",\r\n + \ \"args\": \"\",\r\n \"version\": \"1.4.13\"\r\n },\r\n \ {\r\n \"name\": \"RediSearch\",\r\n \"args\": - \"\",\r\n \"version\": \"2.0.6\"\r\n }\r\n ]\r\n + \"\",\r\n \"version\": \"2.2.6\"\r\n }\r\n ]\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '984' + - '985' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:17 GMT + - Tue, 31 May 2022 11:39:09 GMT expires: - '-1' pragma: @@ -2306,7 +2846,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2324,22 +2864,21 @@ interactions: ParameterSetName: - --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases/default?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases/default?api-version=2022-01-01 response: body: - string: '{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases/default","type":"Microsoft.Cache/redisEnterprise/databases","properties":{"clientProtocol":"Encrypted","port":10000,"provisioningState":"Succeeded","resourceState":"Running","clusteringPolicy":"EnterpriseCluster","evictionPolicy":"NoEviction","modules":[{"name":"RedisBloom","args":"","version":"2.2.4"},{"name":"RedisTimeSeries","args":"","version":"1.4.7"},{"name":"RediSearch","args":"","version":"2.0.6"}]}}' + string: '{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases/default","type":"Microsoft.Cache/redisEnterprise/databases","properties":{"clientProtocol":"Encrypted","port":10000,"provisioningState":"Succeeded","resourceState":"Running","clusteringPolicy":"EnterpriseCluster","evictionPolicy":"NoEviction","modules":[{"name":"RedisBloom","args":"","version":"2.2.9"},{"name":"RedisTimeSeries","args":"","version":"1.4.13"},{"name":"RediSearch","args":"","version":"2.2.6"}]}}' headers: cache-control: - no-cache content-length: - - '611' + - '612' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:18 GMT + - Tue, 31 May 2022 11:39:14 GMT expires: - '-1' pragma: @@ -2355,7 +2894,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2373,10 +2912,9 @@ interactions: ParameterSetName: - --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases?api-version=2022-01-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": @@ -2387,20 +2925,20 @@ interactions: \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": \"NoEviction\",\r\n \"modules\": [\r\n {\r\n \"name\": \"RedisBloom\",\r\n \"args\": \"\",\r\n \"version\": - \"2.2.4\"\r\n },\r\n {\r\n \"name\": \"RedisTimeSeries\",\r\n - \ \"args\": \"\",\r\n \"version\": \"1.4.7\"\r\n },\r\n + \"2.2.9\"\r\n },\r\n {\r\n \"name\": \"RedisTimeSeries\",\r\n + \ \"args\": \"\",\r\n \"version\": \"1.4.13\"\r\n },\r\n \ {\r\n \"name\": \"RediSearch\",\r\n \"args\": - \"\",\r\n \"version\": \"2.0.6\"\r\n }\r\n ]\r\n + \"\",\r\n \"version\": \"2.2.6\"\r\n }\r\n ]\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '984' + - '985' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:19 GMT + - Tue, 31 May 2022 11:39:17 GMT expires: - '-1' pragma: @@ -2416,7 +2954,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2436,14 +2974,13 @@ interactions: ParameterSetName: - --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases/default/listKeys?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases/default/listKeys?api-version=2022-01-01 response: body: - string: "{\r\n \"primaryKey\": \"\",\r\n - \ \"secondaryKey\": \"\"\r\n}" + string: "{\r\n \"primaryKey\": \"\",\r\n + \ \"secondaryKey\": \"\"\r\n}" headers: cache-control: - no-cache @@ -2452,7 +2989,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:20 GMT + - Tue, 31 May 2022 11:39:19 GMT expires: - '-1' pragma: @@ -2470,7 +3007,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2492,14 +3029,13 @@ interactions: ParameterSetName: - --cluster-name --key-type --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases/default/regenerateKey?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/databases/default/regenerateKey?api-version=2022-01-01 response: body: - string: "{\r\n \"primaryKey\": \"\",\r\n - \ \"secondaryKey\": \"\"\r\n}" + string: "{\r\n \"primaryKey\": \"\",\r\n + \ \"secondaryKey\": \"\"\r\n}" headers: cache-control: - no-cache @@ -2508,7 +3044,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:21 GMT + - Tue, 31 May 2022 11:39:22 GMT expires: - '-1' pragma: @@ -2526,7 +3062,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2546,10 +3082,9 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001?api-version=2022-01-01 response: body: string: "{\r\n \"location\": \"East US\",\r\n \"name\": \"clitest-cache1-000001\",\r\n @@ -2557,24 +3092,25 @@ interactions: \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Enterprise_E20\",\r\n \ \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"minimumTlsVersion\": - \"1.2\",\r\n \"provisioningState\": \"Deleting\",\r\n \"resourceState\": - \"Deleting\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": - [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}" + \"1.2\",\r\n \"hostName\": \"clitest-cache1-000001.eastus.redisenterprise.cache.azure.net\",\r\n + \ \"provisioningState\": \"Deleting\",\r\n \"resourceState\": \"Deleting\",\r\n + \ \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n + \ \"2\",\r\n \"3\"\r\n ]\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a?api-version=2022-01-01 cache-control: - no-cache content-length: - - '615' + - '696' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:21 GMT + - Tue, 31 May 2022 11:39:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/operationresults/7e781239-15b0-4cdb-b455-a0e9eb561728?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-000001/operationresults/53c93eec-ce0b-4391-b6e6-118f755d0f9a?api-version=2022-01-01 pragma: - no-cache server: @@ -2586,7 +3122,7 @@ interactions: x-ms-ratelimit-remaining-subscription-deletes: - '14999' x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 202 message: Accepted @@ -2604,14 +3140,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728","name":"7e781239-15b0-4cdb-b455-a0e9eb561728","status":"Pending","startTime":"2021-03-31T18:37:22.1700678+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a","name":"53c93eec-ce0b-4391-b6e6-118f755d0f9a","status":"Pending","startTime":"2022-05-31T11:39:24.3959238+00:00","endTime":"0001-01-01T00:00:00+00:00"}' headers: cache-control: - no-cache @@ -2620,157 +3155,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - redisenterprise delete - Connection: - - keep-alive - ParameterSetName: - - -y --cluster-name --resource-group - User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728?api-version=2021-03-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728","name":"7e781239-15b0-4cdb-b455-a0e9eb561728","status":"InProgress","startTime":"2021-03-31T18:37:22.1700678+00:00","endTime":"2021-03-31T18:37:52.7713632+00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '320' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 18:38:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - redisenterprise delete - Connection: - - keep-alive - ParameterSetName: - - -y --cluster-name --resource-group - User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728?api-version=2021-03-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728","name":"7e781239-15b0-4cdb-b455-a0e9eb561728","status":"InProgress","startTime":"2021-03-31T18:37:22.1700678+00:00","endTime":"2021-03-31T18:37:52.7713632+00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '320' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 18:38:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - redisenterprise delete - Connection: - - keep-alive - ParameterSetName: - - -y --cluster-name --resource-group - User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728?api-version=2021-03-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728","name":"7e781239-15b0-4cdb-b455-a0e9eb561728","status":"InProgress","startTime":"2021-03-31T18:37:22.1700678+00:00","endTime":"2021-03-31T18:37:52.7713632+00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '320' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 18:39:22 GMT + - Tue, 31 May 2022 11:39:54 GMT expires: - '-1' pragma: @@ -2786,7 +3171,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2804,14 +3189,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728","name":"7e781239-15b0-4cdb-b455-a0e9eb561728","status":"InProgress","startTime":"2021-03-31T18:37:22.1700678+00:00","endTime":"2021-03-31T18:37:52.7713632+00:00"}' + US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a","name":"53c93eec-ce0b-4391-b6e6-118f755d0f9a","status":"InProgress","startTime":"2022-05-31T11:39:24.3959238+00:00","endTime":"2022-05-31T11:39:56.2570654+00:00"}' headers: cache-control: - no-cache @@ -2820,7 +3204,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:39:52 GMT + - Tue, 31 May 2022 11:40:24 GMT expires: - '-1' pragma: @@ -2836,7 +3220,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2854,14 +3238,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728","name":"7e781239-15b0-4cdb-b455-a0e9eb561728","status":"InProgress","startTime":"2021-03-31T18:37:22.1700678+00:00","endTime":"2021-03-31T18:37:52.7713632+00:00"}' + US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a","name":"53c93eec-ce0b-4391-b6e6-118f755d0f9a","status":"InProgress","startTime":"2022-05-31T11:39:24.3959238+00:00","endTime":"2022-05-31T11:39:56.2570654+00:00"}' headers: cache-control: - no-cache @@ -2870,7 +3253,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:40:22 GMT + - Tue, 31 May 2022 11:40:54 GMT expires: - '-1' pragma: @@ -2886,7 +3269,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2904,14 +3287,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728","name":"7e781239-15b0-4cdb-b455-a0e9eb561728","status":"InProgress","startTime":"2021-03-31T18:37:22.1700678+00:00","endTime":"2021-03-31T18:37:52.7713632+00:00"}' + US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a","name":"53c93eec-ce0b-4391-b6e6-118f755d0f9a","status":"InProgress","startTime":"2022-05-31T11:39:24.3959238+00:00","endTime":"2022-05-31T11:39:56.2570654+00:00"}' headers: cache-control: - no-cache @@ -2920,7 +3302,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:40:53 GMT + - Tue, 31 May 2022 11:41:25 GMT expires: - '-1' pragma: @@ -2936,7 +3318,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2954,14 +3336,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728","name":"7e781239-15b0-4cdb-b455-a0e9eb561728","status":"InProgress","startTime":"2021-03-31T18:37:22.1700678+00:00","endTime":"2021-03-31T18:37:52.7713632+00:00"}' + US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a","name":"53c93eec-ce0b-4391-b6e6-118f755d0f9a","status":"InProgress","startTime":"2022-05-31T11:39:24.3959238+00:00","endTime":"2022-05-31T11:39:56.2570654+00:00"}' headers: cache-control: - no-cache @@ -2970,7 +3351,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:41:23 GMT + - Tue, 31 May 2022 11:41:55 GMT expires: - '-1' pragma: @@ -2986,7 +3367,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -3004,14 +3385,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728","name":"7e781239-15b0-4cdb-b455-a0e9eb561728","status":"InProgress","startTime":"2021-03-31T18:37:22.1700678+00:00","endTime":"2021-03-31T18:37:52.7713632+00:00"}' + US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a","name":"53c93eec-ce0b-4391-b6e6-118f755d0f9a","status":"InProgress","startTime":"2022-05-31T11:39:24.3959238+00:00","endTime":"2022-05-31T11:39:56.2570654+00:00"}' headers: cache-control: - no-cache @@ -3020,7 +3400,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:41:52 GMT + - Tue, 31 May 2022 11:42:25 GMT expires: - '-1' pragma: @@ -3036,7 +3416,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -3054,14 +3434,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728","name":"7e781239-15b0-4cdb-b455-a0e9eb561728","status":"InProgress","startTime":"2021-03-31T18:37:22.1700678+00:00","endTime":"2021-03-31T18:37:52.7713632+00:00"}' + US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a","name":"53c93eec-ce0b-4391-b6e6-118f755d0f9a","status":"InProgress","startTime":"2022-05-31T11:39:24.3959238+00:00","endTime":"2022-05-31T11:39:56.2570654+00:00"}' headers: cache-control: - no-cache @@ -3070,7 +3449,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:42:22 GMT + - Tue, 31 May 2022 11:42:56 GMT expires: - '-1' pragma: @@ -3086,7 +3465,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -3104,14 +3483,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728","name":"7e781239-15b0-4cdb-b455-a0e9eb561728","status":"InProgress","startTime":"2021-03-31T18:37:22.1700678+00:00","endTime":"2021-03-31T18:37:52.7713632+00:00"}' + US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a","name":"53c93eec-ce0b-4391-b6e6-118f755d0f9a","status":"InProgress","startTime":"2022-05-31T11:39:24.3959238+00:00","endTime":"2022-05-31T11:39:56.2570654+00:00"}' headers: cache-control: - no-cache @@ -3120,7 +3498,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:42:53 GMT + - Tue, 31 May 2022 11:43:26 GMT expires: - '-1' pragma: @@ -3136,7 +3514,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -3154,14 +3532,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728","name":"7e781239-15b0-4cdb-b455-a0e9eb561728","status":"InProgress","startTime":"2021-03-31T18:37:22.1700678+00:00","endTime":"2021-03-31T18:37:52.7713632+00:00"}' + US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a","name":"53c93eec-ce0b-4391-b6e6-118f755d0f9a","status":"InProgress","startTime":"2022-05-31T11:39:24.3959238+00:00","endTime":"2022-05-31T11:39:56.2570654+00:00"}' headers: cache-control: - no-cache @@ -3170,7 +3547,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:43:23 GMT + - Tue, 31 May 2022 11:43:56 GMT expires: - '-1' pragma: @@ -3186,7 +3563,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -3204,14 +3581,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728","name":"7e781239-15b0-4cdb-b455-a0e9eb561728","status":"InProgress","startTime":"2021-03-31T18:37:22.1700678+00:00","endTime":"2021-03-31T18:37:52.7713632+00:00"}' + US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a","name":"53c93eec-ce0b-4391-b6e6-118f755d0f9a","status":"InProgress","startTime":"2022-05-31T11:39:24.3959238+00:00","endTime":"2022-05-31T11:39:56.2570654+00:00"}' headers: cache-control: - no-cache @@ -3220,7 +3596,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:43:53 GMT + - Tue, 31 May 2022 11:44:26 GMT expires: - '-1' pragma: @@ -3236,7 +3612,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -3254,14 +3630,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728","name":"7e781239-15b0-4cdb-b455-a0e9eb561728","status":"InProgress","startTime":"2021-03-31T18:37:22.1700678+00:00","endTime":"2021-03-31T18:37:52.7713632+00:00"}' + US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a","name":"53c93eec-ce0b-4391-b6e6-118f755d0f9a","status":"InProgress","startTime":"2022-05-31T11:39:24.3959238+00:00","endTime":"2022-05-31T11:39:56.2570654+00:00"}' headers: cache-control: - no-cache @@ -3270,7 +3645,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:44:23 GMT + - Tue, 31 May 2022 11:44:57 GMT expires: - '-1' pragma: @@ -3286,7 +3661,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -3304,14 +3679,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728","name":"7e781239-15b0-4cdb-b455-a0e9eb561728","status":"InProgress","startTime":"2021-03-31T18:37:22.1700678+00:00","endTime":"2021-03-31T18:37:52.7713632+00:00"}' + US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a","name":"53c93eec-ce0b-4391-b6e6-118f755d0f9a","status":"InProgress","startTime":"2022-05-31T11:39:24.3959238+00:00","endTime":"2022-05-31T11:39:56.2570654+00:00"}' headers: cache-control: - no-cache @@ -3320,7 +3694,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:44:53 GMT + - Tue, 31 May 2022 11:45:28 GMT expires: - '-1' pragma: @@ -3336,7 +3710,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -3354,14 +3728,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728","name":"7e781239-15b0-4cdb-b455-a0e9eb561728","status":"InProgress","startTime":"2021-03-31T18:37:22.1700678+00:00","endTime":"2021-03-31T18:37:52.7713632+00:00"}' + US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a","name":"53c93eec-ce0b-4391-b6e6-118f755d0f9a","status":"InProgress","startTime":"2022-05-31T11:39:24.3959238+00:00","endTime":"2022-05-31T11:39:56.2570654+00:00"}' headers: cache-control: - no-cache @@ -3370,7 +3743,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:45:24 GMT + - Tue, 31 May 2022 11:45:58 GMT expires: - '-1' pragma: @@ -3386,7 +3759,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -3404,14 +3777,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728","name":"7e781239-15b0-4cdb-b455-a0e9eb561728","status":"InProgress","startTime":"2021-03-31T18:37:22.1700678+00:00","endTime":"2021-03-31T18:37:52.7713632+00:00"}' + US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a","name":"53c93eec-ce0b-4391-b6e6-118f755d0f9a","status":"InProgress","startTime":"2022-05-31T11:39:24.3959238+00:00","endTime":"2022-05-31T11:39:56.2570654+00:00"}' headers: cache-control: - no-cache @@ -3420,7 +3792,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:45:54 GMT + - Tue, 31 May 2022 11:46:29 GMT expires: - '-1' pragma: @@ -3436,7 +3808,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -3454,14 +3826,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728","name":"7e781239-15b0-4cdb-b455-a0e9eb561728","status":"InProgress","startTime":"2021-03-31T18:37:22.1700678+00:00","endTime":"2021-03-31T18:37:52.7713632+00:00"}' + US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a","name":"53c93eec-ce0b-4391-b6e6-118f755d0f9a","status":"InProgress","startTime":"2022-05-31T11:39:24.3959238+00:00","endTime":"2022-05-31T11:39:56.2570654+00:00"}' headers: cache-control: - no-cache @@ -3470,7 +3841,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:46:24 GMT + - Tue, 31 May 2022 11:46:58 GMT expires: - '-1' pragma: @@ -3486,7 +3857,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -3504,14 +3875,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728","name":"7e781239-15b0-4cdb-b455-a0e9eb561728","status":"InProgress","startTime":"2021-03-31T18:37:22.1700678+00:00","endTime":"2021-03-31T18:37:52.7713632+00:00"}' + US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a","name":"53c93eec-ce0b-4391-b6e6-118f755d0f9a","status":"InProgress","startTime":"2022-05-31T11:39:24.3959238+00:00","endTime":"2022-05-31T11:39:56.2570654+00:00"}' headers: cache-control: - no-cache @@ -3520,7 +3890,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:46:54 GMT + - Tue, 31 May 2022 11:47:29 GMT expires: - '-1' pragma: @@ -3536,7 +3906,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -3554,14 +3924,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/7e781239-15b0-4cdb-b455-a0e9eb561728","name":"7e781239-15b0-4cdb-b455-a0e9eb561728","status":"Succeeded","startTime":"2021-03-31T18:37:22.1700678+00:00","endTime":"2021-03-31T18:46:57.0120497+00:00"}' + US/operationsStatus/53c93eec-ce0b-4391-b6e6-118f755d0f9a","name":"53c93eec-ce0b-4391-b6e6-118f755d0f9a","status":"Succeeded","startTime":"2022-05-31T11:39:24.3959238+00:00","endTime":"2022-05-31T11:47:41.9470811+00:00"}' headers: cache-control: - no-cache @@ -3570,7 +3939,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:47:24 GMT + - Tue, 31 May 2022 11:48:00 GMT expires: - '-1' pragma: @@ -3586,7 +3955,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK diff --git a/src/redisenterprise/azext_redisenterprise/manual/tests/latest/recordings/test_redisenterprise_scenario2.yaml b/src/redisenterprise/azext_redisenterprise/manual/tests/latest/recordings/test_redisenterprise_scenario2.yaml index ba72a776008..b16456c47c1 100644 --- a/src/redisenterprise/azext_redisenterprise/manual/tests/latest/recordings/test_redisenterprise_scenario2.yaml +++ b/src/redisenterprise/azext_redisenterprise/manual/tests/latest/recordings/test_redisenterprise_scenario2.yaml @@ -13,15 +13,12 @@ interactions: ParameterSetName: - --cluster-name --sku --tags --no-database --resource-group User-Agent: - - python/3.8.7 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest-redisenterprise-rg2-000002?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest-redisenterprise-rg2-000002?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002","name":"clitest-redisenterprise-rg2-000002","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T18:29:04Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002","name":"clitest-redisenterprise-rg2-000002","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-31T11:49:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:29:06 GMT + - Tue, 31 May 2022 11:49:43 GMT expires: - '-1' pragma: @@ -62,10 +59,9 @@ interactions: ParameterSetName: - --cluster-name --sku --tags --no-database --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001?api-version=2022-01-01 response: body: string: "{\r\n \"location\": \"East US\",\r\n \"name\": \"clitest-cache2-000001\",\r\n @@ -73,23 +69,24 @@ interactions: \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n \ \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"minimumTlsVersion\": - \"1.2\",\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": - \"Creating\"\r\n }\r\n}" + \"1.2\",\r\n \"hostName\": \"clitest-cache2-000001.eastus.redisenterprise.cache.azure.net\",\r\n + \ \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n + \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37?api-version=2022-01-01 cache-control: - no-cache content-length: - - '533' + - '614' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:29:10 GMT + - Tue, 31 May 2022 11:49:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001?api-version=2022-01-01 pragma: - no-cache server: @@ -99,9 +96,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 201 message: Created @@ -119,14 +116,13 @@ interactions: ParameterSetName: - --cluster-name --sku --tags --no-database --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff","name":"4afd8d96-2d38-4511-8ce6-12ac86ab73ff","status":"InProgress","startTime":"2021-03-31T18:29:10.2730801+00:00","endTime":"2021-03-31T18:29:11.2301537+00:00"}' + US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","name":"5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","status":"InProgress","startTime":"2022-05-31T11:49:49.2692106+00:00","endTime":"2022-05-31T11:49:53.1678878+00:00"}' headers: cache-control: - no-cache @@ -135,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:29:40 GMT + - Tue, 31 May 2022 11:50:20 GMT expires: - '-1' pragma: @@ -151,7 +147,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -169,14 +165,13 @@ interactions: ParameterSetName: - --cluster-name --sku --tags --no-database --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff","name":"4afd8d96-2d38-4511-8ce6-12ac86ab73ff","status":"InProgress","startTime":"2021-03-31T18:29:10.2730801+00:00","endTime":"2021-03-31T18:29:11.2301537+00:00"}' + US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","name":"5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","status":"InProgress","startTime":"2022-05-31T11:49:49.2692106+00:00","endTime":"2022-05-31T11:49:53.1678878+00:00"}' headers: cache-control: - no-cache @@ -185,7 +180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:30:10 GMT + - Tue, 31 May 2022 11:50:51 GMT expires: - '-1' pragma: @@ -201,7 +196,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -219,14 +214,13 @@ interactions: ParameterSetName: - --cluster-name --sku --tags --no-database --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff","name":"4afd8d96-2d38-4511-8ce6-12ac86ab73ff","status":"InProgress","startTime":"2021-03-31T18:29:10.2730801+00:00","endTime":"2021-03-31T18:29:11.2301537+00:00"}' + US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","name":"5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","status":"InProgress","startTime":"2022-05-31T11:49:49.2692106+00:00","endTime":"2022-05-31T11:49:53.1678878+00:00"}' headers: cache-control: - no-cache @@ -235,7 +229,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:30:41 GMT + - Tue, 31 May 2022 11:51:21 GMT expires: - '-1' pragma: @@ -251,7 +245,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -269,14 +263,13 @@ interactions: ParameterSetName: - --cluster-name --sku --tags --no-database --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff","name":"4afd8d96-2d38-4511-8ce6-12ac86ab73ff","status":"InProgress","startTime":"2021-03-31T18:29:10.2730801+00:00","endTime":"2021-03-31T18:29:11.2301537+00:00"}' + US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","name":"5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","status":"InProgress","startTime":"2022-05-31T11:49:49.2692106+00:00","endTime":"2022-05-31T11:49:53.1678878+00:00"}' headers: cache-control: - no-cache @@ -285,7 +278,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:31:11 GMT + - Tue, 31 May 2022 11:51:52 GMT expires: - '-1' pragma: @@ -301,7 +294,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -319,14 +312,13 @@ interactions: ParameterSetName: - --cluster-name --sku --tags --no-database --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff","name":"4afd8d96-2d38-4511-8ce6-12ac86ab73ff","status":"InProgress","startTime":"2021-03-31T18:29:10.2730801+00:00","endTime":"2021-03-31T18:29:11.2301537+00:00"}' + US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","name":"5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","status":"InProgress","startTime":"2022-05-31T11:49:49.2692106+00:00","endTime":"2022-05-31T11:49:53.1678878+00:00"}' headers: cache-control: - no-cache @@ -335,7 +327,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:31:41 GMT + - Tue, 31 May 2022 11:52:21 GMT expires: - '-1' pragma: @@ -351,7 +343,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -369,14 +361,13 @@ interactions: ParameterSetName: - --cluster-name --sku --tags --no-database --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff","name":"4afd8d96-2d38-4511-8ce6-12ac86ab73ff","status":"InProgress","startTime":"2021-03-31T18:29:10.2730801+00:00","endTime":"2021-03-31T18:29:11.2301537+00:00"}' + US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","name":"5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","status":"InProgress","startTime":"2022-05-31T11:49:49.2692106+00:00","endTime":"2022-05-31T11:49:53.1678878+00:00"}' headers: cache-control: - no-cache @@ -385,7 +376,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:32:11 GMT + - Tue, 31 May 2022 11:52:52 GMT expires: - '-1' pragma: @@ -401,7 +392,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -419,14 +410,13 @@ interactions: ParameterSetName: - --cluster-name --sku --tags --no-database --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff","name":"4afd8d96-2d38-4511-8ce6-12ac86ab73ff","status":"InProgress","startTime":"2021-03-31T18:29:10.2730801+00:00","endTime":"2021-03-31T18:29:11.2301537+00:00"}' + US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","name":"5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","status":"InProgress","startTime":"2022-05-31T11:49:49.2692106+00:00","endTime":"2022-05-31T11:49:53.1678878+00:00"}' headers: cache-control: - no-cache @@ -435,7 +425,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:32:41 GMT + - Tue, 31 May 2022 11:53:22 GMT expires: - '-1' pragma: @@ -451,7 +441,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -469,14 +459,13 @@ interactions: ParameterSetName: - --cluster-name --sku --tags --no-database --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff","name":"4afd8d96-2d38-4511-8ce6-12ac86ab73ff","status":"InProgress","startTime":"2021-03-31T18:29:10.2730801+00:00","endTime":"2021-03-31T18:29:11.2301537+00:00"}' + US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","name":"5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","status":"InProgress","startTime":"2022-05-31T11:49:49.2692106+00:00","endTime":"2022-05-31T11:49:53.1678878+00:00"}' headers: cache-control: - no-cache @@ -485,7 +474,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:33:11 GMT + - Tue, 31 May 2022 11:53:52 GMT expires: - '-1' pragma: @@ -501,7 +490,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -519,14 +508,13 @@ interactions: ParameterSetName: - --cluster-name --sku --tags --no-database --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff","name":"4afd8d96-2d38-4511-8ce6-12ac86ab73ff","status":"InProgress","startTime":"2021-03-31T18:29:10.2730801+00:00","endTime":"2021-03-31T18:29:11.2301537+00:00"}' + US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","name":"5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","status":"InProgress","startTime":"2022-05-31T11:49:49.2692106+00:00","endTime":"2022-05-31T11:49:53.1678878+00:00"}' headers: cache-control: - no-cache @@ -535,7 +523,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:33:41 GMT + - Tue, 31 May 2022 11:54:24 GMT expires: - '-1' pragma: @@ -551,7 +539,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -569,14 +557,13 @@ interactions: ParameterSetName: - --cluster-name --sku --tags --no-database --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff","name":"4afd8d96-2d38-4511-8ce6-12ac86ab73ff","status":"InProgress","startTime":"2021-03-31T18:29:10.2730801+00:00","endTime":"2021-03-31T18:29:11.2301537+00:00"}' + US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","name":"5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","status":"InProgress","startTime":"2022-05-31T11:49:49.2692106+00:00","endTime":"2022-05-31T11:49:53.1678878+00:00"}' headers: cache-control: - no-cache @@ -585,7 +572,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:34:11 GMT + - Tue, 31 May 2022 11:54:54 GMT expires: - '-1' pragma: @@ -601,7 +588,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -619,14 +606,13 @@ interactions: ParameterSetName: - --cluster-name --sku --tags --no-database --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff","name":"4afd8d96-2d38-4511-8ce6-12ac86ab73ff","status":"InProgress","startTime":"2021-03-31T18:29:10.2730801+00:00","endTime":"2021-03-31T18:29:11.2301537+00:00"}' + US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","name":"5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","status":"InProgress","startTime":"2022-05-31T11:49:49.2692106+00:00","endTime":"2022-05-31T11:49:53.1678878+00:00"}' headers: cache-control: - no-cache @@ -635,7 +621,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:34:42 GMT + - Tue, 31 May 2022 11:55:25 GMT expires: - '-1' pragma: @@ -651,7 +637,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -669,14 +655,13 @@ interactions: ParameterSetName: - --cluster-name --sku --tags --no-database --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff","name":"4afd8d96-2d38-4511-8ce6-12ac86ab73ff","status":"InProgress","startTime":"2021-03-31T18:29:10.2730801+00:00","endTime":"2021-03-31T18:29:11.2301537+00:00"}' + US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","name":"5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","status":"InProgress","startTime":"2022-05-31T11:49:49.2692106+00:00","endTime":"2022-05-31T11:49:53.1678878+00:00"}' headers: cache-control: - no-cache @@ -685,7 +670,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:35:12 GMT + - Tue, 31 May 2022 11:55:55 GMT expires: - '-1' pragma: @@ -701,7 +686,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -719,14 +704,13 @@ interactions: ParameterSetName: - --cluster-name --sku --tags --no-database --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff","name":"4afd8d96-2d38-4511-8ce6-12ac86ab73ff","status":"InProgress","startTime":"2021-03-31T18:29:10.2730801+00:00","endTime":"2021-03-31T18:29:11.2301537+00:00"}' + US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","name":"5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","status":"InProgress","startTime":"2022-05-31T11:49:49.2692106+00:00","endTime":"2022-05-31T11:49:53.1678878+00:00"}' headers: cache-control: - no-cache @@ -735,7 +719,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:35:42 GMT + - Tue, 31 May 2022 11:56:24 GMT expires: - '-1' pragma: @@ -751,7 +735,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -769,23 +753,22 @@ interactions: ParameterSetName: - --cluster-name --sku --tags --no-database --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff","name":"4afd8d96-2d38-4511-8ce6-12ac86ab73ff","status":"InProgress","startTime":"2021-03-31T18:29:10.2730801+00:00","endTime":"2021-03-31T18:29:11.2301537+00:00"}' + US/operationsStatus/5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","name":"5c669bfa-5d0d-4007-9626-5f0ef5c5bc37","status":"Succeeded","startTime":"2022-05-31T11:49:49.2692106+00:00","endTime":"2022-05-31T11:56:31.1851259+00:00"}' headers: cache-control: - no-cache content-length: - - '320' + - '319' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:36:12 GMT + - Tue, 31 May 2022 11:56:55 GMT expires: - '-1' pragma: @@ -801,7 +784,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -819,23 +802,28 @@ interactions: ParameterSetName: - --cluster-name --sku --tags --no-database --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001?api-version=2022-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff","name":"4afd8d96-2d38-4511-8ce6-12ac86ab73ff","status":"InProgress","startTime":"2021-03-31T18:29:10.2730801+00:00","endTime":"2021-03-31T18:29:11.2301537+00:00"}' + string: "{\r\n \"location\": \"East US\",\r\n \"name\": \"clitest-cache2-000001\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {\r\n \"tag1\": + \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n + \ \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"minimumTlsVersion\": + \"1.2\",\r\n \"hostName\": \"clitest-cache2-000001.eastus.redisenterprise.cache.azure.net\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n + \ \"privateEndpointConnections\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '320' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:36:42 GMT + - Tue, 31 May 2022 11:56:56 GMT expires: - '-1' pragma: @@ -851,7 +839,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -859,33 +847,38 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - redisenterprise create + - redisenterprise show Connection: - keep-alive ParameterSetName: - - --cluster-name --sku --tags --no-database --resource-group + - --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001?api-version=2022-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/4afd8d96-2d38-4511-8ce6-12ac86ab73ff","name":"4afd8d96-2d38-4511-8ce6-12ac86ab73ff","status":"Succeeded","startTime":"2021-03-31T18:29:10.2730801+00:00","endTime":"2021-03-31T18:36:50.6807357+00:00"}' + string: "{\r\n \"location\": \"East US\",\r\n \"name\": \"clitest-cache2-000001\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {\r\n \"tag1\": + \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n + \ \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"minimumTlsVersion\": + \"1.2\",\r\n \"hostName\": \"clitest-cache2-000001.eastus.redisenterprise.cache.azure.net\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n + \ \"privateEndpointConnections\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '319' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:13 GMT + - Tue, 31 May 2022 11:56:57 GMT expires: - '-1' pragma: @@ -901,7 +894,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -909,38 +902,31 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - redisenterprise create + - redisenterprise show Connection: - keep-alive ParameterSetName: - - --cluster-name --sku --tags --no-database --resource-group + - --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases?api-version=2022-01-01 response: body: - string: "{\r\n \"location\": \"East US\",\r\n \"name\": \"clitest-cache2-000001\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001\",\r\n - \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {\r\n \"tag1\": - \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n - \ \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"minimumTlsVersion\": - \"1.2\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": - \"Running\",\r\n \"privateEndpointConnections\": []\r\n }\r\n}" + string: "{\r\n \"value\": []\r\n}" headers: cache-control: - no-cache content-length: - - '572' + - '19' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:13 GMT + - Tue, 31 May 2022 11:56:58 GMT expires: - '-1' pragma: @@ -956,7 +942,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -968,34 +954,90 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - redisenterprise show + - redisenterprise list Connection: - keep-alive ParameterSetName: - - --cluster-name --resource-group + - -g User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/redisEnterprise?api-version=2022-01-01 response: body: - string: "{\r\n \"location\": \"East US\",\r\n \"name\": \"clitest-cache2-000001\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001\",\r\n - \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {\r\n \"tag1\": - \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n - \ \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"minimumTlsVersion\": - \"1.2\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": - \"Running\",\r\n \"privateEndpointConnections\": []\r\n }\r\n}" + string: '{"value":[{"location":"East US","name":"RedisActiveGeo1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/RedisActiveGeo1","type":"Microsoft.Cache/redisEnterprise","tags":{},"sku":{"name":"Enterprise_E10","capacity":2},"properties":{"minimumTlsVersion":"1.2","hostName":"RedisActiveGeo1.eastus.redisenterprise.cache.azure.net","provisioningState":"Succeeded","resourceState":"Running","privateEndpointConnections":[]}},{"location":"East + US","name":"clitest-cache31-7ubnn","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg31-hlofa/providers/Microsoft.Cache/redisEnterprise/clitest-cache31-7ubnn","type":"Microsoft.Cache/redisEnterprise","tags":{"tag1":"value1"},"sku":{"name":"EnterpriseFlash_F300","capacity":3},"properties":{"minimumTlsVersion":"1.2","hostName":"clitest-cache31-7ubnn.eastus.redisenterprise.cache.azure.net","provisioningState":"Creating","resourceState":"Creating","privateEndpointConnections":[]}},{"location":"East + US","name":"clitest-cache2-000001","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001","type":"Microsoft.Cache/redisEnterprise","tags":{"tag1":"value1"},"sku":{"name":"EnterpriseFlash_F300","capacity":3},"properties":{"minimumTlsVersion":"1.2","hostName":"clitest-cache2-000001.eastus.redisenterprise.cache.azure.net","provisioningState":"Succeeded","resourceState":"Running","privateEndpointConnections":[]}},{"location":"West + US 2","name":"ForceUnlink1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink1","type":"Microsoft.Cache/redisEnterprise","tags":{},"sku":{"name":"Enterprise_E10","capacity":2},"properties":{"minimumTlsVersion":"1.2","hostName":"ForceUnlink1.westus2.redisenterprise.cache.azure.net","provisioningState":"Succeeded","resourceState":"Running","privateEndpointConnections":[]}},{"location":"West + US 2","name":"ForceUnlink2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink2","type":"Microsoft.Cache/redisEnterprise","tags":{},"sku":{"name":"Enterprise_E10","capacity":2},"properties":{"minimumTlsVersion":"1.2","hostName":"ForceUnlink2.westus2.redisenterprise.cache.azure.net","provisioningState":"Succeeded","resourceState":"Running","privateEndpointConnections":[]}},{"location":"West + US 2","name":"ForceUnlink4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink4","type":"Microsoft.Cache/redisEnterprise","tags":{},"sku":{"name":"Enterprise_E10","capacity":2},"properties":{"minimumTlsVersion":"1.2","hostName":"ForceUnlink4.westus2.redisenterprise.cache.azure.net","provisioningState":"Succeeded","resourceState":"Running","privateEndpointConnections":[]}},{"location":"West + US 2","name":"ForceUnlink5","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink5","type":"Microsoft.Cache/redisEnterprise","tags":{},"sku":{"name":"Enterprise_E10","capacity":2},"properties":{"minimumTlsVersion":"1.2","hostName":"ForceUnlink5.westus2.redisenterprise.cache.azure.net","provisioningState":"Succeeded","resourceState":"Running","privateEndpointConnections":[]}}]}' headers: cache-control: - no-cache content-length: - - '572' + - '3520' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:13 GMT + - Tue, 31 May 2022 11:56:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 40f2d33f-0f53-4fb6-b5e3-aa1343d461f3 + - 01f1e114-a6c9-4fb7-91bf-4713cfd61ce8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/RedisActiveGeo1/databases?api-version=2022-01-01 + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/RedisActiveGeo1/databases/default\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": + {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"port\": 10000,\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": + \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": + \"NoEviction\",\r\n \"persistence\": {\r\n \"aofEnabled\": + false,\r\n \"rdbEnabled\": false,\r\n \"aofFrequency\": + null,\r\n \"rdbFrequency\": null\r\n },\r\n \"geoReplication\": + {\r\n \"linkedDatabases\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/RedisActiveGeo1/databases/default\",\r\n + \ \"state\": \"Linked\"\r\n }\r\n ],\r\n \"groupNickname\": + \"activeGeoTesting\"\r\n }\r\n }\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1103' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 11:57:00 GMT expires: - '-1' pragma: @@ -1011,7 +1053,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1023,16 +1065,15 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - redisenterprise show + - redisenterprise list Connection: - keep-alive ParameterSetName: - - --cluster-name --resource-group + - -g User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg31-hlofa/providers/Microsoft.Cache/redisEnterprise/clitest-cache31-7ubnn/databases?api-version=2022-01-01 response: body: string: "{\r\n \"value\": []\r\n}" @@ -1044,7 +1085,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:14 GMT + - Tue, 31 May 2022 11:57:00 GMT expires: - '-1' pragma: @@ -1060,7 +1101,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1078,37 +1119,21 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/redisEnterprise?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases?api-version=2022-01-01 response: body: - string: "{\r\n \"value\": [\r\n {\r\n \"location\": \"East US\",\r\n - \ \"name\": \"clitest-cache1-yrekf4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-n7oiyt/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-yrekf4\",\r\n - \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {\r\n - \ \"tag1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": - \"Enterprise_E20\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": - {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"privateEndpointConnections\": - []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n - \ \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East - US\",\r\n \"name\": \"clitest-cache2-000001\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001\",\r\n - \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {\r\n - \ \"tag1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": - \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": - {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"privateEndpointConnections\": - []\r\n }\r\n }\r\n ]\r\n}" + string: "{\r\n \"value\": []\r\n}" headers: cache-control: - no-cache content-length: - - '1387' + - '19' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:15 GMT + - Tue, 31 May 2022 11:57:01 GMT expires: - '-1' pragma: @@ -1124,7 +1149,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1142,34 +1167,37 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-n7oiyt/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-yrekf4/databases?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink1/databases?api-version=2022-01-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg1-n7oiyt/providers/Microsoft.Cache/redisEnterprise/clitest-cache1-yrekf4/databases/default\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink1/databases/default\",\r\n \ \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"port\": 10000,\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": - \"NoEviction\",\r\n \"modules\": [\r\n {\r\n \"name\": - \"RedisBloom\",\r\n \"args\": \"\",\r\n \"version\": - \"2.2.4\"\r\n },\r\n {\r\n \"name\": \"RedisTimeSeries\",\r\n - \ \"args\": \"\",\r\n \"version\": \"1.4.7\"\r\n },\r\n - \ {\r\n \"name\": \"RediSearch\",\r\n \"args\": - \"\",\r\n \"version\": \"2.0.6\"\r\n }\r\n ]\r\n - \ }\r\n }\r\n ]\r\n}" + \"NoEviction\",\r\n \"persistence\": {\r\n \"aofEnabled\": + false,\r\n \"rdbEnabled\": false,\r\n \"aofFrequency\": + null,\r\n \"rdbFrequency\": null\r\n },\r\n \"geoReplication\": + {\r\n \"linkedDatabases\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink1/databases/default\",\r\n + \ \"state\": \"Linked\"\r\n },\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink2/databases/default\",\r\n + \ \"state\": \"Linked\"\r\n },\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink5/databases/default\",\r\n + \ \"state\": \"Linked\"\r\n }\r\n ],\r\n \"groupNickname\": + \"groupName\"\r\n }\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '984' + - '1570' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:15 GMT + - Tue, 31 May 2022 11:57:01 GMT expires: - '-1' pragma: @@ -1185,7 +1213,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1203,22 +1231,30 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink2/databases?api-version=2022-01-01 response: body: - string: "{\r\n \"value\": []\r\n}" + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink2/databases/default\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": + {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"port\": 10000,\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": + \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": + \"NoEviction\",\r\n \"geoReplication\": {\r\n \"linkedDatabases\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink2/databases/default\",\r\n + \ \"state\": \"Linked\"\r\n }\r\n ],\r\n \"groupNickname\": + \"groupName\"\r\n }\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '19' + - '923' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:15 GMT + - Tue, 31 May 2022 11:57:02 GMT expires: - '-1' pragma: @@ -1234,7 +1270,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1250,31 +1286,23 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group + - -g User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink4/databases?api-version=2022-01-01 response: body: - string: "{\r\n \"value\": [\r\n {\r\n \"location\": \"East US\",\r\n - \ \"name\": \"clitest-cache2-000001\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001\",\r\n - \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {\r\n - \ \"tag1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": - \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": - {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"privateEndpointConnections\": - []\r\n }\r\n }\r\n ]\r\n}" + string: "{\r\n \"value\": []\r\n}" headers: cache-control: - no-cache content-length: - - '673' + - '19' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:16 GMT + - Tue, 31 May 2022 11:57:02 GMT expires: - '-1' pragma: @@ -1290,7 +1318,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1306,24 +1334,34 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group + - -g User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink5/databases?api-version=2022-01-01 response: body: - string: "{\r\n \"value\": []\r\n}" + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink5/databases/default\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": + {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"port\": 10000,\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": + \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": + \"NoEviction\",\r\n \"geoReplication\": {\r\n \"linkedDatabases\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink2/databases/default\",\r\n + \ \"state\": \"Linked\"\r\n },\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-geo-sdk/providers/Microsoft.Cache/redisEnterprise/ForceUnlink5/databases/default\",\r\n + \ \"state\": \"Linked\"\r\n }\r\n ],\r\n \"groupNickname\": + \"groupName\"\r\n }\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '19' + - '1163' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:16 GMT + - Tue, 31 May 2022 11:57:03 GMT expires: - '-1' pragma: @@ -1339,103 +1377,95 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK - request: - body: '{"properties": {"clientProtocol": "Plaintext", "port": 10000, "clusteringPolicy": - "OSSCluster", "evictionPolicy": "AllKeysLRU"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - redisenterprise database create + - redisenterprise list Connection: - keep-alive - Content-Length: - - '128' - Content-Type: - - application/json ParameterSetName: - - --cluster-name --client-protocol --clustering-policy --eviction-policy --port - --resource-group + - --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases/default?api-version=2021-03-01 + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases/default\",\r\n - \ \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": - {\r\n \"clientProtocol\": \"Plaintext\",\r\n \"port\": 10000,\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"clusteringPolicy\": - \"OSSCluster\",\r\n \"evictionPolicy\": \"AllKeysLRU\"\r\n }\r\n}" + string: "{\r\n \"value\": [\r\n {\r\n \"location\": \"East US\",\r\n + \ \"name\": \"clitest-cache2-000001\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {\r\n + \ \"tag1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": + \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": + {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"hostName\": \"clitest-cache2-000001.eastus.redisenterprise.cache.azure.net\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": + \"Running\",\r\n \"privateEndpointConnections\": []\r\n }\r\n + \ }\r\n ]\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/f0310afa-71d5-4341-920c-b6171a8c359b?api-version=2021-03-01 cache-control: - no-cache content-length: - - '505' + - '758' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:17 GMT + - Tue, 31 May 2022 11:57:05 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases/default?api-version=2021-03-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - redisenterprise database create + - redisenterprise list Connection: - keep-alive ParameterSetName: - - --cluster-name --client-protocol --clustering-policy --eviction-policy --port - --resource-group + - --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/f0310afa-71d5-4341-920c-b6171a8c359b?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases?api-version=2022-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/f0310afa-71d5-4341-920c-b6171a8c359b","name":"f0310afa-71d5-4341-920c-b6171a8c359b","status":"InProgress","startTime":"2021-03-31T18:37:18.4316933+00:00","endTime":"2021-03-31T18:37:20.6379522+00:00"}' + string: "{\r\n \"value\": []\r\n}" headers: cache-control: - no-cache content-length: - - '320' + - '19' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:37:48 GMT + - Tue, 31 May 2022 11:57:07 GMT expires: - '-1' pragma: @@ -1451,10 +1481,70 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK +- request: + body: '{"properties": {"clientProtocol": "Plaintext", "port": 10000, "clusteringPolicy": + "OSSCluster", "evictionPolicy": "AllKeysLRU"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise database create + Connection: + - keep-alive + Content-Length: + - '128' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --client-protocol --clustering-policy --eviction-policy --port + --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases/default?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases/default\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": + {\r\n \"clientProtocol\": \"Plaintext\",\r\n \"port\": 10000,\r\n \"provisioningState\": + \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"clusteringPolicy\": + \"OSSCluster\",\r\n \"evictionPolicy\": \"AllKeysLRU\"\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/634bc75a-a263-40c5-a197-a0702af4c2b2?api-version=2022-01-01 + cache-control: + - no-cache + content-length: + - '505' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 11:57:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases/default?api-version=2022-01-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-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 201 + message: Created - request: body: null headers: @@ -1470,14 +1560,13 @@ interactions: - --cluster-name --client-protocol --clustering-policy --eviction-policy --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/f0310afa-71d5-4341-920c-b6171a8c359b?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/634bc75a-a263-40c5-a197-a0702af4c2b2?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/f0310afa-71d5-4341-920c-b6171a8c359b","name":"f0310afa-71d5-4341-920c-b6171a8c359b","status":"Succeeded","startTime":"2021-03-31T18:37:18.4316933+00:00","endTime":"2021-03-31T18:37:53.4152047+00:00"}' + US/operationsStatus/634bc75a-a263-40c5-a197-a0702af4c2b2","name":"634bc75a-a263-40c5-a197-a0702af4c2b2","status":"Succeeded","startTime":"2022-05-31T11:57:09.6312592+00:00","endTime":"2022-05-31T11:57:27.2632666+00:00"}' headers: cache-control: - no-cache @@ -1486,7 +1575,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:38:18 GMT + - Tue, 31 May 2022 11:57:39 GMT expires: - '-1' pragma: @@ -1502,7 +1591,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1521,10 +1610,9 @@ interactions: - --cluster-name --client-protocol --clustering-policy --eviction-policy --port --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases/default?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases/default?api-version=2022-01-01 response: body: string: '{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases/default","type":"Microsoft.Cache/redisEnterprise/databases","properties":{"clientProtocol":"Plaintext","port":10000,"provisioningState":"Succeeded","resourceState":"Running","clusteringPolicy":"OSSCluster","evictionPolicy":"AllKeysLRU"}}' @@ -1536,7 +1624,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:38:18 GMT + - Tue, 31 May 2022 11:57:40 GMT expires: - '-1' pragma: @@ -1552,7 +1640,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1570,10 +1658,9 @@ interactions: ParameterSetName: - --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases/default?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases/default?api-version=2022-01-01 response: body: string: '{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases/default","type":"Microsoft.Cache/redisEnterprise/databases","properties":{"clientProtocol":"Plaintext","port":10000,"provisioningState":"Succeeded","resourceState":"Running","clusteringPolicy":"OSSCluster","evictionPolicy":"AllKeysLRU"}}' @@ -1585,7 +1672,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:38:19 GMT + - Tue, 31 May 2022 11:57:41 GMT expires: - '-1' pragma: @@ -1601,7 +1688,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1619,10 +1706,9 @@ interactions: ParameterSetName: - --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases?api-version=2022-01-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": @@ -1640,7 +1726,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:38:21 GMT + - Tue, 31 May 2022 11:57:43 GMT expires: - '-1' pragma: @@ -1656,7 +1742,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1676,14 +1762,13 @@ interactions: ParameterSetName: - --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases/default/listKeys?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases/default/listKeys?api-version=2022-01-01 response: body: - string: "{\r\n \"primaryKey\": \"\",\r\n - \ \"secondaryKey\": \"\"\r\n}" + string: "{\r\n \"primaryKey\": \"\",\r\n + \ \"secondaryKey\": \"\"\r\n}" headers: cache-control: - no-cache @@ -1692,7 +1777,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:38:21 GMT + - Tue, 31 May 2022 11:57:43 GMT expires: - '-1' pragma: @@ -1708,9 +1793,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1732,14 +1817,13 @@ interactions: ParameterSetName: - --cluster-name --key-type --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases/default/regenerateKey?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases/default/regenerateKey?api-version=2022-01-01 response: body: - string: "{\r\n \"primaryKey\": \"\",\r\n - \ \"secondaryKey\": \"\"\r\n}" + string: "{\r\n \"primaryKey\": \"\",\r\n + \ \"secondaryKey\": \"\"\r\n}" headers: cache-control: - no-cache @@ -1748,7 +1832,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:38:22 GMT + - Tue, 31 May 2022 11:57:45 GMT expires: - '-1' pragma: @@ -1766,7 +1850,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1786,16 +1870,15 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases/default?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases/default?api-version=2022-01-01 response: body: string: "{\r\n \"StatusCode\": 202\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/cd198889-3962-4ff0-9e27-9e2407c4d2ed?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/803fb1b8-17d4-4020-b6e7-b802781b0b44?api-version=2022-01-01 cache-control: - no-cache content-length: @@ -1803,11 +1886,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:38:23 GMT + - Tue, 31 May 2022 11:57:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases/default/operationresults/cd198889-3962-4ff0-9e27-9e2407c4d2ed?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/databases/default/operationresults/803fb1b8-17d4-4020-b6e7-b802781b0b44?api-version=2022-01-01 pragma: - no-cache server: @@ -1819,7 +1902,7 @@ interactions: x-ms-ratelimit-remaining-subscription-deletes: - '14999' x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 202 message: Accepted @@ -1837,23 +1920,22 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/cd198889-3962-4ff0-9e27-9e2407c4d2ed?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/803fb1b8-17d4-4020-b6e7-b802781b0b44?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/cd198889-3962-4ff0-9e27-9e2407c4d2ed","name":"cd198889-3962-4ff0-9e27-9e2407c4d2ed","status":"Pending","startTime":"2021-03-31T18:38:23.7204677+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + US/operationsStatus/803fb1b8-17d4-4020-b6e7-b802781b0b44","name":"803fb1b8-17d4-4020-b6e7-b802781b0b44","status":"Succeeded","startTime":"2022-05-31T11:57:50.4032928+00:00","endTime":"2022-05-31T11:58:04.9849873+00:00"}' headers: cache-control: - no-cache content-length: - - '309' + - '319' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:38:53 GMT + - Tue, 31 May 2022 11:58:20 GMT expires: - '-1' pragma: @@ -1869,10 +1951,69 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001?api-version=2022-01-01 + response: + body: + string: "{\r\n \"location\": \"East US\",\r\n \"name\": \"clitest-cache2-000001\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {\r\n \"tag1\": + \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n + \ \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"minimumTlsVersion\": + \"1.2\",\r\n \"hostName\": \"clitest-cache2-000001.eastus.redisenterprise.cache.azure.net\",\r\n + \ \"provisioningState\": \"Deleting\",\r\n \"resourceState\": \"Deleting\",\r\n + \ \"privateEndpointConnections\": []\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 + cache-control: + - no-cache + content-length: + - '653' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 11:58:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/operationresults/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 202 + message: Accepted - request: body: null headers: @@ -1881,29 +2022,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - redisenterprise database delete + - redisenterprise delete Connection: - keep-alive ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/cd198889-3962-4ff0-9e27-9e2407c4d2ed?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/cd198889-3962-4ff0-9e27-9e2407c4d2ed","name":"cd198889-3962-4ff0-9e27-9e2407c4d2ed","status":"Succeeded","startTime":"2021-03-31T18:38:23.7204677+00:00","endTime":"2021-03-31T18:39:01.5354882+00:00"}' + US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b","name":"fe923281-5ef1-413a-a919-eb1d967a5d7b","status":"InProgress","startTime":"2022-05-31T11:58:23.0665859+00:00","endTime":"2022-05-31T11:58:24.6338771+00:00"}' headers: cache-control: - no-cache content-length: - - '319' + - '320' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:39:23 GMT + - Tue, 31 May 2022 11:58:52 GMT expires: - '-1' pragma: @@ -1919,7 +2059,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -1927,61 +2067,51 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - redisenterprise delete Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001?api-version=2021-03-01 + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 response: body: - string: "{\r\n \"location\": \"East US\",\r\n \"name\": \"clitest-cache2-000001\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001\",\r\n - \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {\r\n \"tag1\": - \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n - \ \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"minimumTlsVersion\": - \"1.2\",\r\n \"provisioningState\": \"Deleting\",\r\n \"resourceState\": - \"Deleting\",\r\n \"privateEndpointConnections\": []\r\n }\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b","name":"fe923281-5ef1-413a-a919-eb1d967a5d7b","status":"InProgress","startTime":"2022-05-31T11:58:23.0665859+00:00","endTime":"2022-05-31T11:58:24.6338771+00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133?api-version=2021-03-01 cache-control: - no-cache content-length: - - '572' + - '320' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:39:25 GMT + - Tue, 31 May 2022 11:59:22 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg2-000002/providers/Microsoft.Cache/redisEnterprise/clitest-cache2-000001/operationresults/745ebaa8-bb38-4380-910a-ed5a5c18d133?api-version=2021-03-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1996,14 +2126,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133","name":"745ebaa8-bb38-4380-910a-ed5a5c18d133","status":"InProgress","startTime":"2021-03-31T18:39:25.3129662+00:00","endTime":"2021-03-31T18:39:25.8134425+00:00"}' + US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b","name":"fe923281-5ef1-413a-a919-eb1d967a5d7b","status":"InProgress","startTime":"2022-05-31T11:58:23.0665859+00:00","endTime":"2022-05-31T11:58:24.6338771+00:00"}' headers: cache-control: - no-cache @@ -2012,7 +2141,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:39:55 GMT + - Tue, 31 May 2022 11:59:53 GMT expires: - '-1' pragma: @@ -2028,7 +2157,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2046,14 +2175,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133","name":"745ebaa8-bb38-4380-910a-ed5a5c18d133","status":"InProgress","startTime":"2021-03-31T18:39:25.3129662+00:00","endTime":"2021-03-31T18:39:25.8134425+00:00"}' + US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b","name":"fe923281-5ef1-413a-a919-eb1d967a5d7b","status":"InProgress","startTime":"2022-05-31T11:58:23.0665859+00:00","endTime":"2022-05-31T11:58:24.6338771+00:00"}' headers: cache-control: - no-cache @@ -2062,7 +2190,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:40:25 GMT + - Tue, 31 May 2022 12:00:23 GMT expires: - '-1' pragma: @@ -2078,7 +2206,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2096,14 +2224,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133","name":"745ebaa8-bb38-4380-910a-ed5a5c18d133","status":"InProgress","startTime":"2021-03-31T18:39:25.3129662+00:00","endTime":"2021-03-31T18:39:25.8134425+00:00"}' + US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b","name":"fe923281-5ef1-413a-a919-eb1d967a5d7b","status":"InProgress","startTime":"2022-05-31T11:58:23.0665859+00:00","endTime":"2022-05-31T11:58:24.6338771+00:00"}' headers: cache-control: - no-cache @@ -2112,7 +2239,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:40:55 GMT + - Tue, 31 May 2022 12:00:54 GMT expires: - '-1' pragma: @@ -2128,7 +2255,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2146,14 +2273,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133","name":"745ebaa8-bb38-4380-910a-ed5a5c18d133","status":"InProgress","startTime":"2021-03-31T18:39:25.3129662+00:00","endTime":"2021-03-31T18:39:25.8134425+00:00"}' + US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b","name":"fe923281-5ef1-413a-a919-eb1d967a5d7b","status":"InProgress","startTime":"2022-05-31T11:58:23.0665859+00:00","endTime":"2022-05-31T11:58:24.6338771+00:00"}' headers: cache-control: - no-cache @@ -2162,7 +2288,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:41:25 GMT + - Tue, 31 May 2022 12:01:24 GMT expires: - '-1' pragma: @@ -2178,7 +2304,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2196,14 +2322,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133","name":"745ebaa8-bb38-4380-910a-ed5a5c18d133","status":"InProgress","startTime":"2021-03-31T18:39:25.3129662+00:00","endTime":"2021-03-31T18:39:25.8134425+00:00"}' + US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b","name":"fe923281-5ef1-413a-a919-eb1d967a5d7b","status":"InProgress","startTime":"2022-05-31T11:58:23.0665859+00:00","endTime":"2022-05-31T11:58:24.6338771+00:00"}' headers: cache-control: - no-cache @@ -2212,7 +2337,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:41:55 GMT + - Tue, 31 May 2022 12:01:54 GMT expires: - '-1' pragma: @@ -2228,7 +2353,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2246,14 +2371,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133","name":"745ebaa8-bb38-4380-910a-ed5a5c18d133","status":"InProgress","startTime":"2021-03-31T18:39:25.3129662+00:00","endTime":"2021-03-31T18:39:25.8134425+00:00"}' + US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b","name":"fe923281-5ef1-413a-a919-eb1d967a5d7b","status":"InProgress","startTime":"2022-05-31T11:58:23.0665859+00:00","endTime":"2022-05-31T11:58:24.6338771+00:00"}' headers: cache-control: - no-cache @@ -2262,7 +2386,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:42:26 GMT + - Tue, 31 May 2022 12:02:24 GMT expires: - '-1' pragma: @@ -2278,7 +2402,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2296,14 +2420,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133","name":"745ebaa8-bb38-4380-910a-ed5a5c18d133","status":"InProgress","startTime":"2021-03-31T18:39:25.3129662+00:00","endTime":"2021-03-31T18:39:25.8134425+00:00"}' + US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b","name":"fe923281-5ef1-413a-a919-eb1d967a5d7b","status":"InProgress","startTime":"2022-05-31T11:58:23.0665859+00:00","endTime":"2022-05-31T11:58:24.6338771+00:00"}' headers: cache-control: - no-cache @@ -2312,7 +2435,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:42:56 GMT + - Tue, 31 May 2022 12:02:55 GMT expires: - '-1' pragma: @@ -2328,7 +2451,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2346,14 +2469,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133","name":"745ebaa8-bb38-4380-910a-ed5a5c18d133","status":"InProgress","startTime":"2021-03-31T18:39:25.3129662+00:00","endTime":"2021-03-31T18:39:25.8134425+00:00"}' + US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b","name":"fe923281-5ef1-413a-a919-eb1d967a5d7b","status":"InProgress","startTime":"2022-05-31T11:58:23.0665859+00:00","endTime":"2022-05-31T11:58:24.6338771+00:00"}' headers: cache-control: - no-cache @@ -2362,7 +2484,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:43:26 GMT + - Tue, 31 May 2022 12:03:25 GMT expires: - '-1' pragma: @@ -2378,7 +2500,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2396,14 +2518,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133","name":"745ebaa8-bb38-4380-910a-ed5a5c18d133","status":"InProgress","startTime":"2021-03-31T18:39:25.3129662+00:00","endTime":"2021-03-31T18:39:25.8134425+00:00"}' + US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b","name":"fe923281-5ef1-413a-a919-eb1d967a5d7b","status":"InProgress","startTime":"2022-05-31T11:58:23.0665859+00:00","endTime":"2022-05-31T11:58:24.6338771+00:00"}' headers: cache-control: - no-cache @@ -2412,7 +2533,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:43:56 GMT + - Tue, 31 May 2022 12:03:56 GMT expires: - '-1' pragma: @@ -2428,7 +2549,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2446,14 +2567,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133","name":"745ebaa8-bb38-4380-910a-ed5a5c18d133","status":"InProgress","startTime":"2021-03-31T18:39:25.3129662+00:00","endTime":"2021-03-31T18:39:25.8134425+00:00"}' + US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b","name":"fe923281-5ef1-413a-a919-eb1d967a5d7b","status":"InProgress","startTime":"2022-05-31T11:58:23.0665859+00:00","endTime":"2022-05-31T11:58:24.6338771+00:00"}' headers: cache-control: - no-cache @@ -2462,7 +2582,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:44:26 GMT + - Tue, 31 May 2022 12:04:26 GMT expires: - '-1' pragma: @@ -2478,7 +2598,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2496,14 +2616,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133","name":"745ebaa8-bb38-4380-910a-ed5a5c18d133","status":"InProgress","startTime":"2021-03-31T18:39:25.3129662+00:00","endTime":"2021-03-31T18:39:25.8134425+00:00"}' + US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b","name":"fe923281-5ef1-413a-a919-eb1d967a5d7b","status":"InProgress","startTime":"2022-05-31T11:58:23.0665859+00:00","endTime":"2022-05-31T11:58:24.6338771+00:00"}' headers: cache-control: - no-cache @@ -2512,7 +2631,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:44:56 GMT + - Tue, 31 May 2022 12:04:57 GMT expires: - '-1' pragma: @@ -2528,7 +2647,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2546,14 +2665,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133","name":"745ebaa8-bb38-4380-910a-ed5a5c18d133","status":"InProgress","startTime":"2021-03-31T18:39:25.3129662+00:00","endTime":"2021-03-31T18:39:25.8134425+00:00"}' + US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b","name":"fe923281-5ef1-413a-a919-eb1d967a5d7b","status":"InProgress","startTime":"2022-05-31T11:58:23.0665859+00:00","endTime":"2022-05-31T11:58:24.6338771+00:00"}' headers: cache-control: - no-cache @@ -2562,7 +2680,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:45:27 GMT + - Tue, 31 May 2022 12:05:27 GMT expires: - '-1' pragma: @@ -2578,7 +2696,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2596,14 +2714,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133","name":"745ebaa8-bb38-4380-910a-ed5a5c18d133","status":"InProgress","startTime":"2021-03-31T18:39:25.3129662+00:00","endTime":"2021-03-31T18:39:25.8134425+00:00"}' + US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b","name":"fe923281-5ef1-413a-a919-eb1d967a5d7b","status":"InProgress","startTime":"2022-05-31T11:58:23.0665859+00:00","endTime":"2022-05-31T11:58:24.6338771+00:00"}' headers: cache-control: - no-cache @@ -2612,7 +2729,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:45:57 GMT + - Tue, 31 May 2022 12:05:58 GMT expires: - '-1' pragma: @@ -2628,7 +2745,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2646,14 +2763,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133","name":"745ebaa8-bb38-4380-910a-ed5a5c18d133","status":"InProgress","startTime":"2021-03-31T18:39:25.3129662+00:00","endTime":"2021-03-31T18:39:25.8134425+00:00"}' + US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b","name":"fe923281-5ef1-413a-a919-eb1d967a5d7b","status":"InProgress","startTime":"2022-05-31T11:58:23.0665859+00:00","endTime":"2022-05-31T11:58:24.6338771+00:00"}' headers: cache-control: - no-cache @@ -2662,7 +2778,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:46:27 GMT + - Tue, 31 May 2022 12:06:28 GMT expires: - '-1' pragma: @@ -2678,7 +2794,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2696,14 +2812,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133","name":"745ebaa8-bb38-4380-910a-ed5a5c18d133","status":"InProgress","startTime":"2021-03-31T18:39:25.3129662+00:00","endTime":"2021-03-31T18:39:25.8134425+00:00"}' + US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b","name":"fe923281-5ef1-413a-a919-eb1d967a5d7b","status":"InProgress","startTime":"2022-05-31T11:58:23.0665859+00:00","endTime":"2022-05-31T11:58:24.6338771+00:00"}' headers: cache-control: - no-cache @@ -2712,7 +2827,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:46:57 GMT + - Tue, 31 May 2022 12:06:59 GMT expires: - '-1' pragma: @@ -2728,7 +2843,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2746,14 +2861,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133","name":"745ebaa8-bb38-4380-910a-ed5a5c18d133","status":"InProgress","startTime":"2021-03-31T18:39:25.3129662+00:00","endTime":"2021-03-31T18:39:25.8134425+00:00"}' + US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b","name":"fe923281-5ef1-413a-a919-eb1d967a5d7b","status":"InProgress","startTime":"2022-05-31T11:58:23.0665859+00:00","endTime":"2022-05-31T11:58:24.6338771+00:00"}' headers: cache-control: - no-cache @@ -2762,7 +2876,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:47:27 GMT + - Tue, 31 May 2022 12:07:29 GMT expires: - '-1' pragma: @@ -2778,7 +2892,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2796,14 +2910,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133","name":"745ebaa8-bb38-4380-910a-ed5a5c18d133","status":"InProgress","startTime":"2021-03-31T18:39:25.3129662+00:00","endTime":"2021-03-31T18:39:25.8134425+00:00"}' + US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b","name":"fe923281-5ef1-413a-a919-eb1d967a5d7b","status":"InProgress","startTime":"2022-05-31T11:58:23.0665859+00:00","endTime":"2022-05-31T11:58:24.6338771+00:00"}' headers: cache-control: - no-cache @@ -2812,7 +2925,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:47:58 GMT + - Tue, 31 May 2022 12:07:59 GMT expires: - '-1' pragma: @@ -2828,7 +2941,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2846,14 +2959,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133","name":"745ebaa8-bb38-4380-910a-ed5a5c18d133","status":"InProgress","startTime":"2021-03-31T18:39:25.3129662+00:00","endTime":"2021-03-31T18:39:25.8134425+00:00"}' + US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b","name":"fe923281-5ef1-413a-a919-eb1d967a5d7b","status":"InProgress","startTime":"2022-05-31T11:58:23.0665859+00:00","endTime":"2022-05-31T11:58:24.6338771+00:00"}' headers: cache-control: - no-cache @@ -2862,7 +2974,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:48:28 GMT + - Tue, 31 May 2022 12:08:30 GMT expires: - '-1' pragma: @@ -2878,7 +2990,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2896,14 +3008,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133","name":"745ebaa8-bb38-4380-910a-ed5a5c18d133","status":"InProgress","startTime":"2021-03-31T18:39:25.3129662+00:00","endTime":"2021-03-31T18:39:25.8134425+00:00"}' + US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b","name":"fe923281-5ef1-413a-a919-eb1d967a5d7b","status":"InProgress","startTime":"2022-05-31T11:58:23.0665859+00:00","endTime":"2022-05-31T11:58:24.6338771+00:00"}' headers: cache-control: - no-cache @@ -2912,7 +3023,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:48:57 GMT + - Tue, 31 May 2022 12:08:59 GMT expires: - '-1' pragma: @@ -2928,7 +3039,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2946,14 +3057,13 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133","name":"745ebaa8-bb38-4380-910a-ed5a5c18d133","status":"InProgress","startTime":"2021-03-31T18:39:25.3129662+00:00","endTime":"2021-03-31T18:39:25.8134425+00:00"}' + US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b","name":"fe923281-5ef1-413a-a919-eb1d967a5d7b","status":"InProgress","startTime":"2022-05-31T11:58:23.0665859+00:00","endTime":"2022-05-31T11:58:24.6338771+00:00"}' headers: cache-control: - no-cache @@ -2962,7 +3072,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:49:28 GMT + - Tue, 31 May 2022 12:09:30 GMT expires: - '-1' pragma: @@ -2978,7 +3088,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK @@ -2996,23 +3106,22 @@ interactions: ParameterSetName: - -y --cluster-name --resource-group User-Agent: - - AZURECLI/2.21.0 (MSI) azsdk-python-mgmt-redisenterprise/1.0.0 Python/3.8.7 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b?api-version=2022-01-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East - US/operationsStatus/745ebaa8-bb38-4380-910a-ed5a5c18d133","name":"745ebaa8-bb38-4380-910a-ed5a5c18d133","status":"Succeeded","startTime":"2021-03-31T18:39:25.3129662+00:00","endTime":"2021-03-31T18:49:30.149169+00:00"}' + US/operationsStatus/fe923281-5ef1-413a-a919-eb1d967a5d7b","name":"fe923281-5ef1-413a-a919-eb1d967a5d7b","status":"Succeeded","startTime":"2022-05-31T11:58:23.0665859+00:00","endTime":"2022-05-31T12:09:52.8281691+00:00"}' headers: cache-control: - no-cache content-length: - - '318' + - '319' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 18:49:57 GMT + - Tue, 31 May 2022 12:10:00 GMT expires: - '-1' pragma: @@ -3028,7 +3137,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 791aee15-8953-41e6-ab52-085e4164442e + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 status: code: 200 message: OK diff --git a/src/redisenterprise/azext_redisenterprise/manual/tests/latest/recordings/test_redisenterprise_scenario3.yaml b/src/redisenterprise/azext_redisenterprise/manual/tests/latest/recordings/test_redisenterprise_scenario3.yaml new file mode 100644 index 00000000000..517bfe90602 --- /dev/null +++ b/src/redisenterprise/azext_redisenterprise/manual/tests/latest/recordings/test_redisenterprise_scenario3.yaml @@ -0,0 +1,5312 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --tags --no-database --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest-redisenterprise-rg31-000003?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg31-000003","name":"clitest-redisenterprise-rg31-000003","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-31T13:23:00Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '348' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:23:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"tags": {"tag1": "value1"}, "location": "eastus", "sku": {"name": "EnterpriseFlash_F300"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + Content-Length: + - '91' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --sku --tags --no-database --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg31-000003/providers/Microsoft.Cache/redisEnterprise/clitest-cache31-000001?api-version=2022-01-01 + response: + body: + string: "{\r\n \"location\": \"East US\",\r\n \"name\": \"clitest-cache31-000001\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg31-000003/providers/Microsoft.Cache/redisEnterprise/clitest-cache31-000001\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {\r\n \"tag1\": + \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n + \ \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"minimumTlsVersion\": + \"1.2\",\r\n \"hostName\": \"clitest-cache31-000001.eastus.redisenterprise.cache.azure.net\",\r\n + \ \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce?api-version=2022-01-01 + cache-control: + - no-cache + content-length: + - '618' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:23:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg31-000003/providers/Microsoft.Cache/redisEnterprise/clitest-cache31-000001?api-version=2022-01-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-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --tags --no-database --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","name":"1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","status":"InProgress","startTime":"2022-05-31T13:23:17.5510414+00:00","endTime":"2022-05-31T13:23:18.6013664+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:23:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --tags --no-database --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","name":"1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","status":"InProgress","startTime":"2022-05-31T13:23:17.5510414+00:00","endTime":"2022-05-31T13:23:18.6013664+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:24:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --tags --no-database --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","name":"1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","status":"InProgress","startTime":"2022-05-31T13:23:17.5510414+00:00","endTime":"2022-05-31T13:23:18.6013664+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:24:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --tags --no-database --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","name":"1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","status":"InProgress","startTime":"2022-05-31T13:23:17.5510414+00:00","endTime":"2022-05-31T13:23:18.6013664+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:25:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --tags --no-database --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","name":"1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","status":"InProgress","startTime":"2022-05-31T13:23:17.5510414+00:00","endTime":"2022-05-31T13:23:18.6013664+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:25:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --tags --no-database --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","name":"1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","status":"InProgress","startTime":"2022-05-31T13:23:17.5510414+00:00","endTime":"2022-05-31T13:23:18.6013664+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:26:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --tags --no-database --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","name":"1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","status":"InProgress","startTime":"2022-05-31T13:23:17.5510414+00:00","endTime":"2022-05-31T13:23:18.6013664+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:26:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --tags --no-database --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","name":"1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","status":"InProgress","startTime":"2022-05-31T13:23:17.5510414+00:00","endTime":"2022-05-31T13:23:18.6013664+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:27:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --tags --no-database --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","name":"1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","status":"InProgress","startTime":"2022-05-31T13:23:17.5510414+00:00","endTime":"2022-05-31T13:23:18.6013664+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:27:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --tags --no-database --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","name":"1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","status":"InProgress","startTime":"2022-05-31T13:23:17.5510414+00:00","endTime":"2022-05-31T13:23:18.6013664+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:28: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 + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --tags --no-database --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","name":"1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","status":"InProgress","startTime":"2022-05-31T13:23:17.5510414+00:00","endTime":"2022-05-31T13:23:18.6013664+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:28:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --tags --no-database --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","name":"1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","status":"InProgress","startTime":"2022-05-31T13:23:17.5510414+00:00","endTime":"2022-05-31T13:23:18.6013664+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:29:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --tags --no-database --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","name":"1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","status":"InProgress","startTime":"2022-05-31T13:23:17.5510414+00:00","endTime":"2022-05-31T13:23:18.6013664+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:29: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-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --tags --no-database --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","name":"1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","status":"InProgress","startTime":"2022-05-31T13:23:17.5510414+00:00","endTime":"2022-05-31T13:23:18.6013664+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:30:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --tags --no-database --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","name":"1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","status":"InProgress","startTime":"2022-05-31T13:23:17.5510414+00:00","endTime":"2022-05-31T13:23:18.6013664+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:30:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --tags --no-database --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","name":"1a2fd8bc-3c43-49e6-a0ba-d2def0b7e4ce","status":"Succeeded","startTime":"2022-05-31T13:23:17.5510414+00:00","endTime":"2022-05-31T13:31:22.2289255+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '319' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:31:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --sku --tags --no-database --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg31-000003/providers/Microsoft.Cache/redisEnterprise/clitest-cache31-000001?api-version=2022-01-01 + response: + body: + string: "{\r\n \"location\": \"East US\",\r\n \"name\": \"clitest-cache31-000001\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg31-000003/providers/Microsoft.Cache/redisEnterprise/clitest-cache31-000001\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {\r\n \"tag1\": + \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n + \ \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"minimumTlsVersion\": + \"1.2\",\r\n \"hostName\": \"clitest-cache31-000001.eastus.redisenterprise.cache.azure.net\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n + \ \"privateEndpointConnections\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '657' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:31:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: '{"properties": {"clientProtocol": "Encrypted", "port": 10000, "clusteringPolicy": + "EnterpriseCluster", "evictionPolicy": "NoEviction", "geoReplication": {"groupNickname": + "groupName", "linkedDatabases": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg31-000003/providers/Microsoft.Cache/redisEnterprise/clitest-cache31-000001/databases/default"}]}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise database create + Connection: + - keep-alive + Content-Length: + - '403' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --client-protocol --clustering-policy --eviction-policy --group-nickname + --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg31-000003/providers/Microsoft.Cache/redisEnterprise/clitest-cache31-000001/databases/default?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg31-000003/providers/Microsoft.Cache/redisEnterprise/clitest-cache31-000001/databases/default\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": + {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"port\": 10000,\r\n \"provisioningState\": + \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"clusteringPolicy\": + \"EnterpriseCluster\",\r\n \"evictionPolicy\": \"NoEviction\",\r\n \"geoReplication\": + {\r\n \"linkedDatabases\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg31-000003/providers/Microsoft.Cache/redisEnterprise/clitest-cache31-000001/databases/default\",\r\n + \ \"state\": \"Linking\"\r\n }\r\n ],\r\n \"groupNickname\": + \"groupName\"\r\n }\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fb411742-fa91-478d-8d40-c0996e2d3907?api-version=2022-01-01 + cache-control: + - no-cache + content-length: + - '879' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:31:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg31-000003/providers/Microsoft.Cache/redisEnterprise/clitest-cache31-000001/databases/default?api-version=2022-01-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-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise database create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --client-protocol --clustering-policy --eviction-policy --group-nickname + --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fb411742-fa91-478d-8d40-c0996e2d3907?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/fb411742-fa91-478d-8d40-c0996e2d3907","name":"fb411742-fa91-478d-8d40-c0996e2d3907","status":"InProgress","startTime":"2022-05-31T13:31:31.0597415+00:00","endTime":"2022-05-31T13:31:33.5680913+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:32:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise database create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --client-protocol --clustering-policy --eviction-policy --group-nickname + --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fb411742-fa91-478d-8d40-c0996e2d3907?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/fb411742-fa91-478d-8d40-c0996e2d3907","name":"fb411742-fa91-478d-8d40-c0996e2d3907","status":"InProgress","startTime":"2022-05-31T13:31:31.0597415+00:00","endTime":"2022-05-31T13:31:33.5680913+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:32:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise database create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --client-protocol --clustering-policy --eviction-policy --group-nickname + --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fb411742-fa91-478d-8d40-c0996e2d3907?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/fb411742-fa91-478d-8d40-c0996e2d3907","name":"fb411742-fa91-478d-8d40-c0996e2d3907","status":"Succeeded","startTime":"2022-05-31T13:31:31.0597415+00:00","endTime":"2022-05-31T13:33:01.924778+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '318' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:33:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise database create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --client-protocol --clustering-policy --eviction-policy --group-nickname + --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg31-000003/providers/Microsoft.Cache/redisEnterprise/clitest-cache31-000001/databases/default?api-version=2022-01-01 + response: + body: + string: '{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg31-000003/providers/Microsoft.Cache/redisEnterprise/clitest-cache31-000001/databases/default","type":"Microsoft.Cache/redisEnterprise/databases","properties":{"clientProtocol":"Encrypted","port":10000,"provisioningState":"Succeeded","resourceState":"Running","clusteringPolicy":"EnterpriseCluster","evictionPolicy":"NoEviction","geoReplication":{"linkedDatabases":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg31-000003/providers/Microsoft.Cache/redisEnterprise/clitest-cache31-000001/databases/default","state":"Linked"}],"groupNickname":"groupName"}}}' + headers: + cache-control: + - no-cache + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:33:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise database create + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --client-protocol --clustering-policy --eviction-policy --group-nickname + --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-11-01 + response: + body: + string: "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\",\"name\":\"eastus\",\"displayName\":\"East + US\",\"regionalDisplayName\":\"(US) East US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"westus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\",\"name\":\"eastus2\",\"displayName\":\"East + US 2\",\"regionalDisplayName\":\"(US) East US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"centralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\",\"name\":\"southcentralus\",\"displayName\":\"South + Central US\",\"regionalDisplayName\":\"(US) South Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\":\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"northcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\",\"name\":\"westus2\",\"displayName\":\"West + US 2\",\"regionalDisplayName\":\"(US) West US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-119.852\",\"latitude\":\"47.233\",\"physicalLocation\":\"Washington\",\"pairedRegion\":[{\"name\":\"westcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus3\",\"name\":\"westus3\",\"displayName\":\"West + US 3\",\"regionalDisplayName\":\"(US) West US 3\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-112.074036\",\"latitude\":\"33.448376\",\"physicalLocation\":\"Phoenix\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\",\"name\":\"australiaeast\",\"displayName\":\"Australia + East\",\"regionalDisplayName\":\"(Asia Pacific) Australia East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"151.2094\",\"latitude\":\"-33.86\",\"physicalLocation\":\"New + South Wales\",\"pairedRegion\":[{\"name\":\"australiasoutheast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\",\"name\":\"southeastasia\",\"displayName\":\"Southeast + Asia\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"103.833\",\"latitude\":\"1.283\",\"physicalLocation\":\"Singapore\",\"pairedRegion\":[{\"name\":\"eastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\",\"name\":\"northeurope\",\"displayName\":\"North + Europe\",\"regionalDisplayName\":\"(Europe) North Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"-6.2597\",\"latitude\":\"53.3478\",\"physicalLocation\":\"Ireland\",\"pairedRegion\":[{\"name\":\"westeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedencentral\",\"name\":\"swedencentral\",\"displayName\":\"Sweden + Central\",\"regionalDisplayName\":\"(Europe) Sweden Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"17.14127\",\"latitude\":\"60.67488\",\"physicalLocation\":\"G\xE4vle\",\"pairedRegion\":[{\"name\":\"swedensouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedensouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\",\"name\":\"uksouth\",\"displayName\":\"UK + South\",\"regionalDisplayName\":\"(Europe) UK South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"-0.799\",\"latitude\":\"50.941\",\"physicalLocation\":\"London\",\"pairedRegion\":[{\"name\":\"ukwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\",\"name\":\"westeurope\",\"displayName\":\"West + Europe\",\"regionalDisplayName\":\"(Europe) West Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"4.9\",\"latitude\":\"52.3667\",\"physicalLocation\":\"Netherlands\",\"pairedRegion\":[{\"name\":\"northeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\",\"name\":\"centralus\",\"displayName\":\"Central + US\",\"regionalDisplayName\":\"(US) Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"physicalLocation\":\"Iowa\",\"pairedRegion\":[{\"name\":\"eastus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\",\"name\":\"southafricanorth\",\"displayName\":\"South + Africa North\",\"regionalDisplayName\":\"(Africa) South Africa North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Africa\",\"longitude\":\"28.218370\",\"latitude\":\"-25.731340\",\"physicalLocation\":\"Johannesburg\",\"pairedRegion\":[{\"name\":\"southafricawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\",\"name\":\"centralindia\",\"displayName\":\"Central + India\",\"regionalDisplayName\":\"(Asia Pacific) Central India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"73.9197\",\"latitude\":\"18.5822\",\"physicalLocation\":\"Pune\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\",\"name\":\"eastasia\",\"displayName\":\"East + Asia\",\"regionalDisplayName\":\"(Asia Pacific) East Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"114.188\",\"latitude\":\"22.267\",\"physicalLocation\":\"Hong + Kong\",\"pairedRegion\":[{\"name\":\"southeastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\",\"name\":\"japaneast\",\"displayName\":\"Japan + East\",\"regionalDisplayName\":\"(Asia Pacific) Japan East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"139.77\",\"latitude\":\"35.68\",\"physicalLocation\":\"Tokyo, + Saitama\",\"pairedRegion\":[{\"name\":\"japanwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\",\"name\":\"koreacentral\",\"displayName\":\"Korea + Central\",\"regionalDisplayName\":\"(Asia Pacific) Korea Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"126.9780\",\"latitude\":\"37.5665\",\"physicalLocation\":\"Seoul\",\"pairedRegion\":[{\"name\":\"koreasouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\",\"name\":\"canadacentral\",\"displayName\":\"Canada + Central\",\"regionalDisplayName\":\"(Canada) Canada Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Canada\",\"longitude\":\"-79.383\",\"latitude\":\"43.653\",\"physicalLocation\":\"Toronto\",\"pairedRegion\":[{\"name\":\"canadaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\",\"name\":\"francecentral\",\"displayName\":\"France + Central\",\"regionalDisplayName\":\"(Europe) France Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.3730\",\"latitude\":\"46.3772\",\"physicalLocation\":\"Paris\",\"pairedRegion\":[{\"name\":\"francesouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\",\"name\":\"germanywestcentral\",\"displayName\":\"Germany + West Central\",\"regionalDisplayName\":\"(Europe) Germany West Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.682127\",\"latitude\":\"50.110924\",\"physicalLocation\":\"Frankfurt\",\"pairedRegion\":[{\"name\":\"germanynorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\",\"name\":\"norwayeast\",\"displayName\":\"Norway + East\",\"regionalDisplayName\":\"(Europe) Norway East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"10.752245\",\"latitude\":\"59.913868\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwaywest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\",\"name\":\"switzerlandnorth\",\"displayName\":\"Switzerland + North\",\"regionalDisplayName\":\"(Europe) Switzerland North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.564572\",\"latitude\":\"47.451542\",\"physicalLocation\":\"Zurich\",\"pairedRegion\":[{\"name\":\"switzerlandwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\",\"name\":\"brazilsouth\",\"displayName\":\"Brazil + South\",\"regionalDisplayName\":\"(South America) Brazil South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"South + America\",\"longitude\":\"-46.633\",\"latitude\":\"-23.55\",\"physicalLocation\":\"Sao + Paulo State\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\",\"name\":\"eastus2euap\",\"displayName\":\"East + US 2 EUAP\",\"regionalDisplayName\":\"(US) East US 2 EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"pairedRegion\":[{\"name\":\"centraluseuap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralusstage\",\"name\":\"centralusstage\",\"displayName\":\"Central + US (Stage)\",\"regionalDisplayName\":\"(US) Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstage\",\"name\":\"eastusstage\",\"displayName\":\"East + US (Stage)\",\"regionalDisplayName\":\"(US) East US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2stage\",\"name\":\"eastus2stage\",\"displayName\":\"East + US 2 (Stage)\",\"regionalDisplayName\":\"(US) East US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralusstage\",\"name\":\"northcentralusstage\",\"displayName\":\"North + Central US (Stage)\",\"regionalDisplayName\":\"(US) North Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstage\",\"name\":\"southcentralusstage\",\"displayName\":\"South + Central US (Stage)\",\"regionalDisplayName\":\"(US) South Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westusstage\",\"name\":\"westusstage\",\"displayName\":\"West + US (Stage)\",\"regionalDisplayName\":\"(US) West US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2stage\",\"name\":\"westus2stage\",\"displayName\":\"West + US 2 (Stage)\",\"regionalDisplayName\":\"(US) West US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asia\",\"name\":\"asia\",\"displayName\":\"Asia\",\"regionalDisplayName\":\"Asia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asiapacific\",\"name\":\"asiapacific\",\"displayName\":\"Asia + Pacific\",\"regionalDisplayName\":\"Asia Pacific\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australia\",\"name\":\"australia\",\"displayName\":\"Australia\",\"regionalDisplayName\":\"Australia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazil\",\"name\":\"brazil\",\"displayName\":\"Brazil\",\"regionalDisplayName\":\"Brazil\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canada\",\"name\":\"canada\",\"displayName\":\"Canada\",\"regionalDisplayName\":\"Canada\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/europe\",\"name\":\"europe\",\"displayName\":\"Europe\",\"regionalDisplayName\":\"Europe\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/france\",\"name\":\"france\",\"displayName\":\"France\",\"regionalDisplayName\":\"France\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germany\",\"name\":\"germany\",\"displayName\":\"Germany\",\"regionalDisplayName\":\"Germany\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/global\",\"name\":\"global\",\"displayName\":\"Global\",\"regionalDisplayName\":\"Global\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/india\",\"name\":\"india\",\"displayName\":\"India\",\"regionalDisplayName\":\"India\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japan\",\"name\":\"japan\",\"displayName\":\"Japan\",\"regionalDisplayName\":\"Japan\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/korea\",\"name\":\"korea\",\"displayName\":\"Korea\",\"regionalDisplayName\":\"Korea\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norway\",\"name\":\"norway\",\"displayName\":\"Norway\",\"regionalDisplayName\":\"Norway\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafrica\",\"name\":\"southafrica\",\"displayName\":\"South + Africa\",\"regionalDisplayName\":\"South Africa\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerland\",\"name\":\"switzerland\",\"displayName\":\"Switzerland\",\"regionalDisplayName\":\"Switzerland\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uae\",\"name\":\"uae\",\"displayName\":\"United + Arab Emirates\",\"regionalDisplayName\":\"United Arab Emirates\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uk\",\"name\":\"uk\",\"displayName\":\"United + Kingdom\",\"regionalDisplayName\":\"United Kingdom\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstates\",\"name\":\"unitedstates\",\"displayName\":\"United + States\",\"regionalDisplayName\":\"United States\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstateseuap\",\"name\":\"unitedstateseuap\",\"displayName\":\"United + States EUAP\",\"regionalDisplayName\":\"United States EUAP\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasiastage\",\"name\":\"eastasiastage\",\"displayName\":\"East + Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) East Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasiastage\",\"name\":\"southeastasiastage\",\"displayName\":\"Southeast + Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\",\"name\":\"northcentralus\",\"displayName\":\"North + Central US\",\"regionalDisplayName\":\"(US) North Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-87.6278\",\"latitude\":\"41.8819\",\"physicalLocation\":\"Illinois\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\",\"name\":\"westus\",\"displayName\":\"West + US\",\"regionalDisplayName\":\"(US) West US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-122.417\",\"latitude\":\"37.783\",\"physicalLocation\":\"California\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest\",\"name\":\"jioindiawest\",\"displayName\":\"Jio + India West\",\"regionalDisplayName\":\"(Asia Pacific) Jio India West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"70.05773\",\"latitude\":\"22.470701\",\"physicalLocation\":\"Jamnagar\",\"pairedRegion\":[{\"name\":\"jioindiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\",\"name\":\"uaenorth\",\"displayName\":\"UAE + North\",\"regionalDisplayName\":\"(Middle East) UAE North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Middle + East\",\"longitude\":\"55.316666\",\"latitude\":\"25.266666\",\"physicalLocation\":\"Dubai\",\"pairedRegion\":[{\"name\":\"uaecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\",\"name\":\"centraluseuap\",\"displayName\":\"Central + US EUAP\",\"regionalDisplayName\":\"(US) Central US EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"pairedRegion\":[{\"name\":\"eastus2euap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\",\"name\":\"westcentralus\",\"displayName\":\"West + Central US\",\"regionalDisplayName\":\"(US) West Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-110.234\",\"latitude\":\"40.890\",\"physicalLocation\":\"Wyoming\",\"pairedRegion\":[{\"name\":\"westus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\",\"name\":\"southafricawest\",\"displayName\":\"South + Africa West\",\"regionalDisplayName\":\"(Africa) South Africa West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Africa\",\"longitude\":\"18.843266\",\"latitude\":\"-34.075691\",\"physicalLocation\":\"Cape + Town\",\"pairedRegion\":[{\"name\":\"southafricanorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\",\"name\":\"australiacentral\",\"displayName\":\"Australia + Central\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\",\"name\":\"australiacentral2\",\"displayName\":\"Australia + Central 2\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\",\"name\":\"australiasoutheast\",\"displayName\":\"Australia + Southeast\",\"regionalDisplayName\":\"(Asia Pacific) Australia Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"144.9631\",\"latitude\":\"-37.8136\",\"physicalLocation\":\"Victoria\",\"pairedRegion\":[{\"name\":\"australiaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\",\"name\":\"japanwest\",\"displayName\":\"Japan + West\",\"regionalDisplayName\":\"(Asia Pacific) Japan West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"135.5022\",\"latitude\":\"34.6939\",\"physicalLocation\":\"Osaka\",\"pairedRegion\":[{\"name\":\"japaneast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral\",\"name\":\"jioindiacentral\",\"displayName\":\"Jio + India Central\",\"regionalDisplayName\":\"(Asia Pacific) Jio India Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"79.08886\",\"latitude\":\"21.146633\",\"physicalLocation\":\"Nagpur\",\"pairedRegion\":[{\"name\":\"jioindiawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\",\"name\":\"koreasouth\",\"displayName\":\"Korea + South\",\"regionalDisplayName\":\"(Asia Pacific) Korea South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"129.0756\",\"latitude\":\"35.1796\",\"physicalLocation\":\"Busan\",\"pairedRegion\":[{\"name\":\"koreacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\",\"name\":\"southindia\",\"displayName\":\"South + India\",\"regionalDisplayName\":\"(Asia Pacific) South India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"80.1636\",\"latitude\":\"12.9822\",\"physicalLocation\":\"Chennai\",\"pairedRegion\":[{\"name\":\"centralindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westindia\",\"name\":\"westindia\",\"displayName\":\"West + India\",\"regionalDisplayName\":\"(Asia Pacific) West India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"72.868\",\"latitude\":\"19.088\",\"physicalLocation\":\"Mumbai\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\",\"name\":\"canadaeast\",\"displayName\":\"Canada + East\",\"regionalDisplayName\":\"(Canada) Canada East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Canada\",\"longitude\":\"-71.217\",\"latitude\":\"46.817\",\"physicalLocation\":\"Quebec\",\"pairedRegion\":[{\"name\":\"canadacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\",\"name\":\"francesouth\",\"displayName\":\"France + South\",\"regionalDisplayName\":\"(Europe) France South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.1972\",\"latitude\":\"43.8345\",\"physicalLocation\":\"Marseille\",\"pairedRegion\":[{\"name\":\"francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\",\"name\":\"germanynorth\",\"displayName\":\"Germany + North\",\"regionalDisplayName\":\"(Europe) Germany North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.806422\",\"latitude\":\"53.073635\",\"physicalLocation\":\"Berlin\",\"pairedRegion\":[{\"name\":\"germanywestcentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\",\"name\":\"norwaywest\",\"displayName\":\"Norway + West\",\"regionalDisplayName\":\"(Europe) Norway West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"5.733107\",\"latitude\":\"58.969975\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwayeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\",\"name\":\"switzerlandwest\",\"displayName\":\"Switzerland + West\",\"regionalDisplayName\":\"(Europe) Switzerland West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"6.143158\",\"latitude\":\"46.204391\",\"physicalLocation\":\"Geneva\",\"pairedRegion\":[{\"name\":\"switzerlandnorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\",\"name\":\"ukwest\",\"displayName\":\"UK + West\",\"regionalDisplayName\":\"(Europe) UK West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"-3.084\",\"latitude\":\"53.427\",\"physicalLocation\":\"Cardiff\",\"pairedRegion\":[{\"name\":\"uksouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\",\"name\":\"uaecentral\",\"displayName\":\"UAE + Central\",\"regionalDisplayName\":\"(Middle East) UAE Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Middle + East\",\"longitude\":\"54.366669\",\"latitude\":\"24.466667\",\"physicalLocation\":\"Abu + Dhabi\",\"pairedRegion\":[{\"name\":\"uaenorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsoutheast\",\"name\":\"brazilsoutheast\",\"displayName\":\"Brazil + Southeast\",\"regionalDisplayName\":\"(South America) Brazil Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"South + America\",\"longitude\":\"-43.2075\",\"latitude\":\"-22.90278\",\"physicalLocation\":\"Rio\",\"pairedRegion\":[{\"name\":\"brazilsouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\"}]}}]}" + headers: + cache-control: + - no-cache + content-length: + - '28764' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:33:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "sku": {"name": "EnterpriseFlash_F300"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + Content-Length: + - '63' + Content-Type: + - application/json + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg32-000004/providers/Microsoft.Cache/redisEnterprise/clitest-cache32-000002?api-version=2022-01-01 + response: + body: + string: "{\r\n \"location\": \"West US\",\r\n \"name\": \"clitest-cache32-000002\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg32-000004/providers/Microsoft.Cache/redisEnterprise/clitest-cache32-000002\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": null,\r\n + \ \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n \"capacity\": + 3\r\n },\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n + \ \"hostName\": \"clitest-cache32-000002.westus.redisenterprise.cache.azure.net\",\r\n + \ \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/407e0c33-70ac-4567-8505-f13bae2e18a7?api-version=2022-01-01 + cache-control: + - no-cache + content-length: + - '594' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:33:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg32-000004/providers/Microsoft.Cache/redisEnterprise/clitest-cache32-000002?api-version=2022-01-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-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 201 + message: Created +- request: + body: '{"properties": {"clientProtocol": "Encrypted", "port": 10000, "clusteringPolicy": + "EnterpriseCluster", "evictionPolicy": "NoEviction", "geoReplication": {"groupNickname": + "groupName", "linkedDatabases": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg31-000003/providers/Microsoft.Cache/redisEnterprise/clitest-cache31-000001/databases/default"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg32-000004/providers/Microsoft.Cache/redisEnterprise/clitest-cache32-000002/databases/default"}]}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + Content-Length: + - '600' + Content-Type: + - application/json + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg32-000004/providers/Microsoft.Cache/redisEnterprise/clitest-cache32-000002/databases/default?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg32-000004/providers/Microsoft.Cache/redisEnterprise/clitest-cache32-000002/databases/default\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": + {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"port\": 10000,\r\n \"provisioningState\": + \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"clusteringPolicy\": + \"EnterpriseCluster\",\r\n \"evictionPolicy\": \"NoEviction\",\r\n \"geoReplication\": + {\r\n \"linkedDatabases\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg31-000003/providers/Microsoft.Cache/redisEnterprise/clitest-cache31-000001/databases/default\",\r\n + \ \"state\": \"Linking\"\r\n },\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg32-000004/providers/Microsoft.Cache/redisEnterprise/clitest-cache32-000002/databases/default\",\r\n + \ \"state\": \"Linking\"\r\n }\r\n ],\r\n \"groupNickname\": + \"groupName\"\r\n }\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01?api-version=2022-01-01 + cache-control: + - no-cache + content-length: + - '1138' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:33:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg32-000004/providers/Microsoft.Cache/redisEnterprise/clitest-cache32-000002/databases/default?api-version=2022-01-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-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/407e0c33-70ac-4567-8505-f13bae2e18a7?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/407e0c33-70ac-4567-8505-f13bae2e18a7","name":"407e0c33-70ac-4567-8505-f13bae2e18a7","status":"InProgress","startTime":"2022-05-31T13:33:13.5526292+00:00","endTime":"2022-05-31T13:33:14.1400335+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:33:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01","name":"c180294f-4e65-4ff7-8b6b-81c6e00afd01","status":"Pending","startTime":"2022-05-31T13:33:25.4863543+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '309' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:33:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/407e0c33-70ac-4567-8505-f13bae2e18a7?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/407e0c33-70ac-4567-8505-f13bae2e18a7","name":"407e0c33-70ac-4567-8505-f13bae2e18a7","status":"InProgress","startTime":"2022-05-31T13:33:13.5526292+00:00","endTime":"2022-05-31T13:33:14.1400335+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:34:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01","name":"c180294f-4e65-4ff7-8b6b-81c6e00afd01","status":"Pending","startTime":"2022-05-31T13:33:25.4863543+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '309' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:34:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/407e0c33-70ac-4567-8505-f13bae2e18a7?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/407e0c33-70ac-4567-8505-f13bae2e18a7","name":"407e0c33-70ac-4567-8505-f13bae2e18a7","status":"InProgress","startTime":"2022-05-31T13:33:13.5526292+00:00","endTime":"2022-05-31T13:33:14.1400335+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:34:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01","name":"c180294f-4e65-4ff7-8b6b-81c6e00afd01","status":"Pending","startTime":"2022-05-31T13:33:25.4863543+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '309' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:34: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 + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/407e0c33-70ac-4567-8505-f13bae2e18a7?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/407e0c33-70ac-4567-8505-f13bae2e18a7","name":"407e0c33-70ac-4567-8505-f13bae2e18a7","status":"InProgress","startTime":"2022-05-31T13:33:13.5526292+00:00","endTime":"2022-05-31T13:33:14.1400335+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:35:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01","name":"c180294f-4e65-4ff7-8b6b-81c6e00afd01","status":"Pending","startTime":"2022-05-31T13:33:25.4863543+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '309' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:35:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/407e0c33-70ac-4567-8505-f13bae2e18a7?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/407e0c33-70ac-4567-8505-f13bae2e18a7","name":"407e0c33-70ac-4567-8505-f13bae2e18a7","status":"InProgress","startTime":"2022-05-31T13:33:13.5526292+00:00","endTime":"2022-05-31T13:33:14.1400335+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:35:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01","name":"c180294f-4e65-4ff7-8b6b-81c6e00afd01","status":"Pending","startTime":"2022-05-31T13:33:25.4863543+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '309' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:35:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/407e0c33-70ac-4567-8505-f13bae2e18a7?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/407e0c33-70ac-4567-8505-f13bae2e18a7","name":"407e0c33-70ac-4567-8505-f13bae2e18a7","status":"InProgress","startTime":"2022-05-31T13:33:13.5526292+00:00","endTime":"2022-05-31T13:33:14.1400335+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:36:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01","name":"c180294f-4e65-4ff7-8b6b-81c6e00afd01","status":"Pending","startTime":"2022-05-31T13:33:25.4863543+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '309' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:36:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/407e0c33-70ac-4567-8505-f13bae2e18a7?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/407e0c33-70ac-4567-8505-f13bae2e18a7","name":"407e0c33-70ac-4567-8505-f13bae2e18a7","status":"InProgress","startTime":"2022-05-31T13:33:13.5526292+00:00","endTime":"2022-05-31T13:33:14.1400335+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:36:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01","name":"c180294f-4e65-4ff7-8b6b-81c6e00afd01","status":"Pending","startTime":"2022-05-31T13:33:25.4863543+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '309' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:36:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/407e0c33-70ac-4567-8505-f13bae2e18a7?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/407e0c33-70ac-4567-8505-f13bae2e18a7","name":"407e0c33-70ac-4567-8505-f13bae2e18a7","status":"InProgress","startTime":"2022-05-31T13:33:13.5526292+00:00","endTime":"2022-05-31T13:33:14.1400335+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:37:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01","name":"c180294f-4e65-4ff7-8b6b-81c6e00afd01","status":"Pending","startTime":"2022-05-31T13:33:25.4863543+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '309' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:37:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/407e0c33-70ac-4567-8505-f13bae2e18a7?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/407e0c33-70ac-4567-8505-f13bae2e18a7","name":"407e0c33-70ac-4567-8505-f13bae2e18a7","status":"InProgress","startTime":"2022-05-31T13:33:13.5526292+00:00","endTime":"2022-05-31T13:33:14.1400335+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:37:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01","name":"c180294f-4e65-4ff7-8b6b-81c6e00afd01","status":"Pending","startTime":"2022-05-31T13:33:25.4863543+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '309' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:37:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/407e0c33-70ac-4567-8505-f13bae2e18a7?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/407e0c33-70ac-4567-8505-f13bae2e18a7","name":"407e0c33-70ac-4567-8505-f13bae2e18a7","status":"InProgress","startTime":"2022-05-31T13:33:13.5526292+00:00","endTime":"2022-05-31T13:33:14.1400335+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:38:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01","name":"c180294f-4e65-4ff7-8b6b-81c6e00afd01","status":"Pending","startTime":"2022-05-31T13:33:25.4863543+00:00","endTime":"0001-01-01T00:00:00+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '309' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:38:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/407e0c33-70ac-4567-8505-f13bae2e18a7?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/407e0c33-70ac-4567-8505-f13bae2e18a7","name":"407e0c33-70ac-4567-8505-f13bae2e18a7","status":"Succeeded","startTime":"2022-05-31T13:33:13.5526292+00:00","endTime":"2022-05-31T13:38:34.9465865+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '319' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:38:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg32-000004/providers/Microsoft.Cache/redisEnterprise/clitest-cache32-000002?api-version=2022-01-01 + response: + body: + string: "{\r\n \"location\": \"West US\",\r\n \"name\": \"clitest-cache32-000002\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg32-000004/providers/Microsoft.Cache/redisEnterprise/clitest-cache32-000002\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": + {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n + \ \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"hostName\": + \"clitest-cache32-000002.westus.redisenterprise.cache.azure.net\",\r\n \"provisioningState\": + \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"privateEndpointConnections\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '631' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:38:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01","name":"c180294f-4e65-4ff7-8b6b-81c6e00afd01","status":"InProgress","startTime":"2022-05-31T13:33:25.4863543+00:00","endTime":"2022-05-31T13:38:59.4912783+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:38:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01","name":"c180294f-4e65-4ff7-8b6b-81c6e00afd01","status":"InProgress","startTime":"2022-05-31T13:33:25.4863543+00:00","endTime":"2022-05-31T13:38:59.4912783+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:39:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01","name":"c180294f-4e65-4ff7-8b6b-81c6e00afd01","status":"InProgress","startTime":"2022-05-31T13:33:25.4863543+00:00","endTime":"2022-05-31T13:38:59.4912783+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:40:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/c180294f-4e65-4ff7-8b6b-81c6e00afd01","name":"c180294f-4e65-4ff7-8b6b-81c6e00afd01","status":"Succeeded","startTime":"2022-05-31T13:33:25.4863543+00:00","endTime":"2022-05-31T13:40:01.7233238+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '319' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:40:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise create + Connection: + - keep-alive + ParameterSetName: + - --location --cluster-name --sku --client-protocol --clustering-policy --eviction-policy + --group-nickname --linked-databases --linked-databases --port --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg32-000004/providers/Microsoft.Cache/redisEnterprise/clitest-cache32-000002/databases/default?api-version=2022-01-01 + response: + body: + string: '{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg32-000004/providers/Microsoft.Cache/redisEnterprise/clitest-cache32-000002/databases/default","type":"Microsoft.Cache/redisEnterprise/databases","properties":{"clientProtocol":"Encrypted","port":10000,"provisioningState":"Succeeded","resourceState":"Running","clusteringPolicy":"EnterpriseCluster","evictionPolicy":"NoEviction","geoReplication":{"linkedDatabases":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg31-000003/providers/Microsoft.Cache/redisEnterprise/clitest-cache31-000001/databases/default","state":"Linked"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg32-000004/providers/Microsoft.Cache/redisEnterprise/clitest-cache32-000002/databases/default","state":"Linked"}],"groupNickname":"groupName"}}}' + headers: + cache-control: + - no-cache + content-length: + - '937' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:40:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: '{"ids": ["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg31-000003/providers/Microsoft.Cache/redisEnterprise/clitest-cache31-000001/databases/default"]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise database force-unlink + Connection: + - keep-alive + Content-Length: + - '198' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --unlink-ids --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg32-000004/providers/Microsoft.Cache/redisEnterprise/clitest-cache32-000002/databases/default/forceUnlink?api-version=2022-01-01 + response: + body: + string: "{\r\n \"StatusCode\": 202\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/6a8f424f-157f-4a7e-a3f3-7acb36cd3c01?api-version=2022-01-01 + cache-control: + - no-cache + content-length: + - '25' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:40:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg32-000004/providers/Microsoft.Cache/redisEnterprise/clitest-cache32-000002/databases/default/operationresults/6a8f424f-157f-4a7e-a3f3-7acb36cd3c01?api-version=2022-01-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-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise database force-unlink + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --unlink-ids --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/6a8f424f-157f-4a7e-a3f3-7acb36cd3c01?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/6a8f424f-157f-4a7e-a3f3-7acb36cd3c01","name":"6a8f424f-157f-4a7e-a3f3-7acb36cd3c01","status":"Succeeded","startTime":"2022-05-31T13:40:36.1947226+00:00","endTime":"2022-05-31T13:40:50.0438718+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '319' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:41:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg32-000004/providers/Microsoft.Cache/redisEnterprise/clitest-cache32-000002?api-version=2022-01-01 + response: + body: + string: "{\r\n \"location\": \"West US\",\r\n \"name\": \"clitest-cache32-000002\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg32-000004/providers/Microsoft.Cache/redisEnterprise/clitest-cache32-000002\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": + {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n + \ \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"hostName\": + \"clitest-cache32-000002.westus.redisenterprise.cache.azure.net\",\r\n \"provisioningState\": + \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"privateEndpointConnections\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '631' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:41:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise show + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg32-000004/providers/Microsoft.Cache/redisEnterprise/clitest-cache32-000002/databases?api-version=2022-01-01 + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg32-000004/providers/Microsoft.Cache/redisEnterprise/clitest-cache32-000002/databases/default\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": + {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"port\": 10000,\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": + \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": + \"NoEviction\",\r\n \"geoReplication\": {\r\n \"linkedDatabases\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg32-000004/providers/Microsoft.Cache/redisEnterprise/clitest-cache32-000002/databases/default\",\r\n + \ \"state\": \"Linked\"\r\n }\r\n ],\r\n \"groupNickname\": + \"groupName\"\r\n }\r\n }\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '991' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:41:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg31-000003/providers/Microsoft.Cache/redisEnterprise/clitest-cache31-000001?api-version=2022-01-01 + response: + body: + string: "{\r\n \"location\": \"East US\",\r\n \"name\": \"clitest-cache31-000001\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg31-000003/providers/Microsoft.Cache/redisEnterprise/clitest-cache31-000001\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {\r\n \"tag1\": + \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n + \ \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"minimumTlsVersion\": + \"1.2\",\r\n \"hostName\": \"clitest-cache31-000001.eastus.redisenterprise.cache.azure.net\",\r\n + \ \"provisioningState\": \"Deleting\",\r\n \"resourceState\": \"Deleting\",\r\n + \ \"privateEndpointConnections\": []\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + cache-control: + - no-cache + content-length: + - '657' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:41:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg31-000003/providers/Microsoft.Cache/redisEnterprise/clitest-cache31-000001/operationresults/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524","name":"e0a53ad2-99af-4eeb-8ab4-c87c834d2524","status":"InProgress","startTime":"2022-05-31T13:41:15.4027559+00:00","endTime":"2022-05-31T13:41:16.5784067+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:41:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524","name":"e0a53ad2-99af-4eeb-8ab4-c87c834d2524","status":"InProgress","startTime":"2022-05-31T13:41:15.4027559+00:00","endTime":"2022-05-31T13:41:16.5784067+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:42:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524","name":"e0a53ad2-99af-4eeb-8ab4-c87c834d2524","status":"InProgress","startTime":"2022-05-31T13:41:15.4027559+00:00","endTime":"2022-05-31T13:41:16.5784067+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:42:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524","name":"e0a53ad2-99af-4eeb-8ab4-c87c834d2524","status":"InProgress","startTime":"2022-05-31T13:41:15.4027559+00:00","endTime":"2022-05-31T13:41:16.5784067+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:43:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524","name":"e0a53ad2-99af-4eeb-8ab4-c87c834d2524","status":"InProgress","startTime":"2022-05-31T13:41:15.4027559+00:00","endTime":"2022-05-31T13:41:16.5784067+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:43:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524","name":"e0a53ad2-99af-4eeb-8ab4-c87c834d2524","status":"InProgress","startTime":"2022-05-31T13:41:15.4027559+00:00","endTime":"2022-05-31T13:41:16.5784067+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:44:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524","name":"e0a53ad2-99af-4eeb-8ab4-c87c834d2524","status":"InProgress","startTime":"2022-05-31T13:41:15.4027559+00:00","endTime":"2022-05-31T13:41:16.5784067+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:44:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524","name":"e0a53ad2-99af-4eeb-8ab4-c87c834d2524","status":"InProgress","startTime":"2022-05-31T13:41:15.4027559+00:00","endTime":"2022-05-31T13:41:16.5784067+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:45:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524","name":"e0a53ad2-99af-4eeb-8ab4-c87c834d2524","status":"InProgress","startTime":"2022-05-31T13:41:15.4027559+00:00","endTime":"2022-05-31T13:41:16.5784067+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:45:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524","name":"e0a53ad2-99af-4eeb-8ab4-c87c834d2524","status":"InProgress","startTime":"2022-05-31T13:41:15.4027559+00:00","endTime":"2022-05-31T13:41:16.5784067+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:46:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524","name":"e0a53ad2-99af-4eeb-8ab4-c87c834d2524","status":"InProgress","startTime":"2022-05-31T13:41:15.4027559+00:00","endTime":"2022-05-31T13:41:16.5784067+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:46:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524","name":"e0a53ad2-99af-4eeb-8ab4-c87c834d2524","status":"InProgress","startTime":"2022-05-31T13:41:15.4027559+00:00","endTime":"2022-05-31T13:41:16.5784067+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:47:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524","name":"e0a53ad2-99af-4eeb-8ab4-c87c834d2524","status":"InProgress","startTime":"2022-05-31T13:41:15.4027559+00:00","endTime":"2022-05-31T13:41:16.5784067+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:47:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524","name":"e0a53ad2-99af-4eeb-8ab4-c87c834d2524","status":"InProgress","startTime":"2022-05-31T13:41:15.4027559+00:00","endTime":"2022-05-31T13:41:16.5784067+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:48:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524","name":"e0a53ad2-99af-4eeb-8ab4-c87c834d2524","status":"InProgress","startTime":"2022-05-31T13:41:15.4027559+00:00","endTime":"2022-05-31T13:41:16.5784067+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:48:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524","name":"e0a53ad2-99af-4eeb-8ab4-c87c834d2524","status":"InProgress","startTime":"2022-05-31T13:41:15.4027559+00:00","endTime":"2022-05-31T13:41:16.5784067+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:49: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 + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524","name":"e0a53ad2-99af-4eeb-8ab4-c87c834d2524","status":"InProgress","startTime":"2022-05-31T13:41:15.4027559+00:00","endTime":"2022-05-31T13:41:16.5784067+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:49:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524","name":"e0a53ad2-99af-4eeb-8ab4-c87c834d2524","status":"InProgress","startTime":"2022-05-31T13:41:15.4027559+00:00","endTime":"2022-05-31T13:41:16.5784067+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:50:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524","name":"e0a53ad2-99af-4eeb-8ab4-c87c834d2524","status":"InProgress","startTime":"2022-05-31T13:41:15.4027559+00:00","endTime":"2022-05-31T13:41:16.5784067+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:50: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-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524","name":"e0a53ad2-99af-4eeb-8ab4-c87c834d2524","status":"InProgress","startTime":"2022-05-31T13:41:15.4027559+00:00","endTime":"2022-05-31T13:41:16.5784067+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:51:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524","name":"e0a53ad2-99af-4eeb-8ab4-c87c834d2524","status":"InProgress","startTime":"2022-05-31T13:41:15.4027559+00:00","endTime":"2022-05-31T13:41:16.5784067+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:51:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East + US/operationsStatus/e0a53ad2-99af-4eeb-8ab4-c87c834d2524","name":"e0a53ad2-99af-4eeb-8ab4-c87c834d2524","status":"Succeeded","startTime":"2022-05-31T13:41:15.4027559+00:00","endTime":"2022-05-31T13:51:54.7569752+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '319' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:52:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg32-000004/providers/Microsoft.Cache/redisEnterprise/clitest-cache32-000002?api-version=2022-01-01 + response: + body: + string: "{\r\n \"location\": \"West US\",\r\n \"name\": \"clitest-cache32-000002\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg32-000004/providers/Microsoft.Cache/redisEnterprise/clitest-cache32-000002\",\r\n + \ \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": + {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n + \ \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"hostName\": + \"clitest-cache32-000002.westus.redisenterprise.cache.azure.net\",\r\n \"provisioningState\": + \"Deleting\",\r\n \"resourceState\": \"Deleting\",\r\n \"privateEndpointConnections\": + []\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + cache-control: + - no-cache + content-length: + - '631' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:52:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-redisenterprise-rg32-000004/providers/Microsoft.Cache/redisEnterprise/clitest-cache32-000002/operationresults/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","name":"5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","status":"InProgress","startTime":"2022-05-31T13:52:29.9817475+00:00","endTime":"2022-05-31T13:52:32.3413386+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:53:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","name":"5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","status":"InProgress","startTime":"2022-05-31T13:52:29.9817475+00:00","endTime":"2022-05-31T13:52:32.3413386+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:53:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","name":"5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","status":"InProgress","startTime":"2022-05-31T13:52:29.9817475+00:00","endTime":"2022-05-31T13:52:32.3413386+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:54:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","name":"5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","status":"InProgress","startTime":"2022-05-31T13:52:29.9817475+00:00","endTime":"2022-05-31T13:52:32.3413386+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:54:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","name":"5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","status":"InProgress","startTime":"2022-05-31T13:52:29.9817475+00:00","endTime":"2022-05-31T13:52:32.3413386+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:55:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","name":"5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","status":"InProgress","startTime":"2022-05-31T13:52:29.9817475+00:00","endTime":"2022-05-31T13:52:32.3413386+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:55:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","name":"5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","status":"InProgress","startTime":"2022-05-31T13:52:29.9817475+00:00","endTime":"2022-05-31T13:52:32.3413386+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:56:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","name":"5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","status":"InProgress","startTime":"2022-05-31T13:52:29.9817475+00:00","endTime":"2022-05-31T13:52:32.3413386+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:56:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","name":"5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","status":"InProgress","startTime":"2022-05-31T13:52:29.9817475+00:00","endTime":"2022-05-31T13:52:32.3413386+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:57:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","name":"5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","status":"InProgress","startTime":"2022-05-31T13:52:29.9817475+00:00","endTime":"2022-05-31T13:52:32.3413386+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:57: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 + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","name":"5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","status":"InProgress","startTime":"2022-05-31T13:52:29.9817475+00:00","endTime":"2022-05-31T13:52:32.3413386+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:58:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","name":"5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","status":"InProgress","startTime":"2022-05-31T13:52:29.9817475+00:00","endTime":"2022-05-31T13:52:32.3413386+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:58: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 + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","name":"5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","status":"InProgress","startTime":"2022-05-31T13:52:29.9817475+00:00","endTime":"2022-05-31T13:52:32.3413386+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:59:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","name":"5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","status":"InProgress","startTime":"2022-05-31T13:52:29.9817475+00:00","endTime":"2022-05-31T13:52:32.3413386+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 13:59: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 + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","name":"5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","status":"InProgress","startTime":"2022-05-31T13:52:29.9817475+00:00","endTime":"2022-05-31T13:52:32.3413386+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 14:00:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","name":"5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","status":"InProgress","startTime":"2022-05-31T13:52:29.9817475+00:00","endTime":"2022-05-31T13:52:32.3413386+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 14:00:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","name":"5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","status":"InProgress","startTime":"2022-05-31T13:52:29.9817475+00:00","endTime":"2022-05-31T13:52:32.3413386+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 14:01:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","name":"5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","status":"InProgress","startTime":"2022-05-31T13:52:29.9817475+00:00","endTime":"2022-05-31T13:52:32.3413386+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 14:01: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 + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","name":"5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","status":"InProgress","startTime":"2022-05-31T13:52:29.9817475+00:00","endTime":"2022-05-31T13:52:32.3413386+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 14:02: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 + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","name":"5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","status":"InProgress","startTime":"2022-05-31T13:52:29.9817475+00:00","endTime":"2022-05-31T13:52:32.3413386+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 14:02:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","name":"5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","status":"InProgress","startTime":"2022-05-31T13:52:29.9817475+00:00","endTime":"2022-05-31T13:52:32.3413386+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '320' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 14:03:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - redisenterprise delete + Connection: + - keep-alive + ParameterSetName: + - -y --cluster-name --resource-group + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-redisenterprise/2.0.0 Python/3.10.4 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb?api-version=2022-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West + US/operationsStatus/5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","name":"5edde1f3-e71c-4a73-bdfe-31c4026ab2eb","status":"Succeeded","startTime":"2022-05-31T13:52:29.9817475+00:00","endTime":"2022-05-31T14:03:21.7004921+00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '319' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 May 2022 14:03:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a3b3f693-6540-4e83-bb94-e0977b0ecae3 + status: + code: 200 + message: OK +version: 1 diff --git a/src/redisenterprise/azext_redisenterprise/manual/tests/latest/test_redisenterprise_scenario.py b/src/redisenterprise/azext_redisenterprise/manual/tests/latest/test_redisenterprise_scenario.py index cd715b94e69..ca37ba9f344 100644 --- a/src/redisenterprise/azext_redisenterprise/manual/tests/latest/test_redisenterprise_scenario.py +++ b/src/redisenterprise/azext_redisenterprise/manual/tests/latest/test_redisenterprise_scenario.py @@ -16,6 +16,8 @@ from .example_steps import step_delete from .example_steps import step_database_create from .example_steps import step_database_delete +from .example_steps import step_database_force_unlink + from .. import ( raise_if, calc_coverage @@ -25,8 +27,8 @@ # Testcase: scenario1 def call_scenario1(test, rg): from ....tests.latest import test_redisenterprise_scenario as g - g.setup_scenario1(test, rg) - step_create(test, rg, checks=[ + g.setup_scenario1(test) + step_create(test, checks=[ test.check("name", "default"), test.check("resourceGroup", "{rg}"), test.check("clientProtocol", "Encrypted"), @@ -38,7 +40,7 @@ def call_scenario1(test, rg): test.check("resourceState", "Running"), test.check("type", "Microsoft.Cache/redisEnterprise/databases") ]) - step_show(test, rg, checks=[ + step_show(test, checks=[ test.check("name", "{cluster}"), test.check("resourceGroup", "{rg}"), test.check("location", "East US"), @@ -61,11 +63,11 @@ def call_scenario1(test, rg): test.check("databases[0].resourceState", "Running"), test.check("databases[0].type", "Microsoft.Cache/redisEnterprise/databases") ]) - g.step_list(test, rg, checks=[]) - g.step_list2(test, rg, checks=[ + g.step_list(test, checks=[]) + g.step_list2(test, checks=[ test.check("length(@)", 1) ]) - step_database_show(test, rg, checks=[ + step_database_show(test, checks=[ test.check("name", "default"), test.check("resourceGroup", "{rg}"), test.check("clientProtocol", "Encrypted"), @@ -76,13 +78,13 @@ def call_scenario1(test, rg): test.check("resourceState", "Running"), test.check("type", "Microsoft.Cache/redisEnterprise/databases") ]) - step_database_list(test, rg, checks=[ + step_database_list(test, checks=[ test.check("length(@)", 1) ]) - step_database_list_keys(test, rg, checks=[]) - step_database_regenerate_key(test, rg, checks=[]) - step_delete(test, rg, checks=[]) - g.cleanup_scenario1(test, rg) + step_database_list_keys(test, checks=[]) + step_database_regenerate_key(test, checks=[]) + step_delete(test, checks=[]) + g.cleanup_scenario1(test) # Test class for scenario1 @@ -104,10 +106,10 @@ def test_redisenterprise_scenario1(self, rg): # Testcase: scenario2 -def call_scenario2(test, rg): +def call_scenario2(test): from ....tests.latest import test_redisenterprise_scenario as g - g.setup_scenario2(test, rg) - step_create(test, rg, checks=[ + g.setup_scenario2(test) + step_create(test, checks=[ test.check("name", "{cluster}"), test.check("resourceGroup", "{rg}"), test.check("location", "East US"), @@ -120,7 +122,7 @@ def call_scenario2(test, rg): test.check("resourceState", "Running"), test.check("type", "Microsoft.Cache/redisEnterprise") ]) - step_show(test, rg, checks=[ + step_show(test,checks=[ test.check("name", "{cluster}"), test.check("resourceGroup", "{rg}"), test.check("location", "East US"), @@ -134,11 +136,11 @@ def call_scenario2(test, rg): test.check("type", "Microsoft.Cache/redisEnterprise"), test.check("length(databases)", 0), ]) - g.step_list(test, rg, checks=[]) - g.step_list2(test, rg, checks=[ + g.step_list(test, checks=[]) + g.step_list2(test, checks=[ test.check("length(@)", 1) ]) - step_database_create(test, rg, checks=[ + step_database_create(test, checks=[ test.check("name", "default"), test.check("resourceGroup", "{rg}"), test.check("clientProtocol", "Plaintext"), @@ -149,7 +151,7 @@ def call_scenario2(test, rg): test.check("resourceState", "Running"), test.check("type", "Microsoft.Cache/redisEnterprise/databases") ]) - step_database_show(test, rg, checks=[ + step_database_show(test, checks=[ test.check("name", "default"), test.check("resourceGroup", "{rg}"), test.check("clientProtocol", "Plaintext"), @@ -160,14 +162,14 @@ def call_scenario2(test, rg): test.check("resourceState", "Running"), test.check("type", "Microsoft.Cache/redisEnterprise/databases") ]) - step_database_list(test, rg, checks=[ + step_database_list(test, checks=[ test.check("length(@)", 1) ]) - step_database_list_keys(test, rg, checks=[]) - step_database_regenerate_key(test, rg, checks=[]) - step_database_delete(test, rg, checks=[]) - step_delete(test, rg, checks=[]) - g.cleanup_scenario2(test, rg) + step_database_list_keys(test, checks=[]) + step_database_regenerate_key(test, checks=[]) + step_database_delete(test, checks=[]) + step_delete(test, checks=[]) + g.cleanup_scenario2(test) # Test class for scenario2 @@ -183,7 +185,72 @@ def __init__(self, *args, **kwargs): @ResourceGroupPreparer(name_prefix='clitest-redisenterprise-rg2-', key='rg', parameter_name='rg', location='eastus', random_name_length=34) - def test_redisenterprise_scenario2(self, rg): - call_scenario2(self, rg) + def test_redisenterprise_scenario2(self): + call_scenario2(self) calc_coverage(__file__) raise_if() + +# Testcase: scenario3. Testing active geo-replication scenarios +def call_scenario3(test): + from ....tests.latest import test_redisenterprise_scenario as g + # Create first georeplicated cache + step_create(test, checks=[ + test.check("name", "{cluster31}"), + test.check("resourceGroup", "{rg31}"), + test.check("sku.name", "EnterpriseFlash_F300"), + test.check("provisioningState", "Succeeded"), + test.check("resourceState", "Running"), + test.check("type", "Microsoft.Cache/redisEnterprise"), + ], cache_num=1) + step_database_create(test, checks=[ + test.check("clientProtocol", "Encrypted"), + test.check("evictionPolicy", "NoEviction"), + test.check("clusteringPolicy", "EnterpriseCluster"), + test.check("geoReplication.groupNickname", "groupName"), + test.check("geoReplication.linkedDatabases[0].id", "/subscriptions/{subscription}/resourceGroups/{rg31}/providers/Microsoft.Cache/redisEnterprise/{cluster31}/databases/{database}"), + ]) + # Create second georeplicated cache + step_create(test, checks=[ + test.check("name", "default"), + test.check("resourceGroup", "{rg32}"), + test.check("provisioningState", "Succeeded"), + test.check("resourceState", "Running"), + test.check("type", "Microsoft.Cache/redisEnterprise/databases"), + test.check("clientProtocol", "Encrypted"), + test.check("evictionPolicy", "NoEviction"), + test.check("clusteringPolicy", "EnterpriseCluster"), + test.check("geoReplication.groupNickname", "groupName"), + test.check("geoReplication.linkedDatabases[0].id", "/subscriptions/{subscription}/resourceGroups/{rg31}/providers/Microsoft.Cache/redisEnterprise/{cluster31}/databases/{database}"), + test.check("geoReplication.linkedDatabases[1].id", "/subscriptions/{subscription}/resourceGroups/{rg32}/providers/Microsoft.Cache/redisEnterprise/{cluster32}/databases/{database}"), + ], cache_num=2) + # Force unlink database 1 from active geo-replication group + step_database_force_unlink(test, checks=[]) + # Check if worked from database 2 + step_show(test, checks=[ + test.check("length(databases[0].geoReplication.linkedDatabases)", "1") + ]) + # placeholders for cleanup + step_delete(test, checks=[]) + + +# Test class for scenario3 +class Redisenterprisescenario3Test(ScenarioTest): + + def __init__(self, *args, **kwargs): + super(Redisenterprisescenario3Test, self).__init__(*args, **kwargs) + + self.kwargs.update({ + 'subscription': self.get_subscription_id(), + 'cluster31': self.create_random_name(prefix='clitest-cache31-', length=21), + 'cluster32': self.create_random_name(prefix='clitest-cache32-', length=21), + 'geo-replication': True, + 'database': 'default', + }) + @ResourceGroupPreparer(name_prefix='clitest-redisenterprise-rg31-', key='rg31', parameter_name='rg31', + location='eastus', random_name_length=34) + @ResourceGroupPreparer(name_prefix='clitest-redisenterprise-rg32-', key='rg32', parameter_name='rg32', + location='westus', random_name_length=34) + def test_redisenterprise_scenario3(self): + call_scenario3(self) + calc_coverage(__file__) + raise_if() \ No newline at end of file diff --git a/src/redisenterprise/azext_redisenterprise/tests/latest/example_steps.py b/src/redisenterprise/azext_redisenterprise/tests/latest/example_steps.py index ba09f155670..46a027d1946 100644 --- a/src/redisenterprise/azext_redisenterprise/tests/latest/example_steps.py +++ b/src/redisenterprise/azext_redisenterprise/tests/latest/example_steps.py @@ -7,205 +7,238 @@ # Changes may cause incorrect behavior and will be lost if the code is # regenerated. # -------------------------------------------------------------------------- -# pylint: disable=unused-argument from .. import try_manual -# EXAMPLE: /Databases/put/RedisEnterpriseDatabasesCreate +# EXAMPLE: /RedisEnterprise/put/RedisEnterpriseCreate @try_manual -def step_database_create(test, rg, checks=None): +def step_create(test, checks=None): if checks is None: checks = [] - test.cmd('az redisenterprise database create ' - '--cluster-name "cache1" ' - '--client-protocol "Encrypted" ' - '--clustering-policy "EnterpriseCluster" ' - '--eviction-policy "AllKeysLRU" ' - '--modules name="RedisBloom" args="ERROR_RATE 0.00 INITIAL_SIZE 400" ' - '--modules name="RedisTimeSeries" args="RETENTION_POLICY 20" ' - '--modules name="RediSearch" ' - '--persistence aof-enabled=true aof-frequency="1s" ' - '--port 10000 ' + test.cmd('az redisenterprise create ' + '--cluster-name "{myRedisEnterprise}" ' + '--location "West US" ' + '--minimum-tls-version "1.2" ' + '--sku "EnterpriseFlash_F300" ' + '--capacity 3 ' + '--tags tag1="value1" ' + '--zones "1" "2" "3" ' '--resource-group "{rg}"', checks=checks) -# EXAMPLE: /Databases/get/RedisEnterpriseDatabasesGet +# EXAMPLE: /RedisEnterprise/get/RedisEnterpriseGet @try_manual -def step_database_show(test, rg, checks=None): +def step_show(test, checks=None): if checks is None: checks = [] - test.cmd('az redisenterprise database show ' - '--cluster-name "cache1" ' + test.cmd('az redisenterprise show ' + '--cluster-name "{myRedisEnterprise}" ' '--resource-group "{rg}"', checks=checks) -# EXAMPLE: /Databases/get/RedisEnterpriseDatabasesListByCluster +# EXAMPLE: /RedisEnterprise/get/RedisEnterpriseList @try_manual -def step_database_list(test, rg, checks=None): +def step_list(test, checks=None): if checks is None: checks = [] - test.cmd('az redisenterprise database list ' - '--cluster-name "cache1" ' + test.cmd('az redisenterprise list ' + '-g ""', + checks=checks) + + +# EXAMPLE: /RedisEnterprise/get/RedisEnterpriseListByResourceGroup +@try_manual +def step_list2(test, checks=None): + if checks is None: + checks = [] + test.cmd('az redisenterprise list ' '--resource-group "{rg}"', checks=checks) -# EXAMPLE: /Databases/patch/RedisEnterpriseDatabasesUpdate +# EXAMPLE: /RedisEnterprise/patch/RedisEnterpriseUpdate @try_manual -def step_database_update(test, rg, checks=None): +def step_update(test, checks=None): if checks is None: checks = [] - test.cmd('az redisenterprise database update ' - '--cluster-name "cache1" ' + test.cmd('az redisenterprise update ' + '--cluster-name "{myRedisEnterprise}" ' + '--minimum-tls-version "1.2" ' + '--sku "EnterpriseFlash_F300" ' + '--capacity 9 ' + '--tags tag1="value1" ' + '--resource-group "{rg}"', + checks=checks) + + +# EXAMPLE: /Databases/put/RedisEnterpriseDatabasesCreate +@try_manual +def step_database_create(test, checks=None): + if checks is None: + checks = [] + test.cmd('az redisenterprise database create ' + '--cluster-name "{myRedisEnterprise}" ' '--client-protocol "Encrypted" ' + '--clustering-policy "EnterpriseCluster" ' '--eviction-policy "AllKeysLRU" ' - '--persistence rdb-enabled=true rdb-frequency="12h" ' + '--modules name="RedisBloom" args="ERROR_RATE 0.00 INITIAL_SIZE 400" ' + '--modules name="RedisTimeSeries" args="RETENTION_POLICY 20" ' + '--modules name="RediSearch" ' + '--persistence aof-enabled=true aof-frequency="1s" ' + '--port 10000 ' '--resource-group "{rg}"', checks=checks) -# EXAMPLE: /Databases/post/RedisEnterpriseDatabasesExport +# EXAMPLE: /Databases/put/RedisEnterpriseDatabasesCreate With Active Geo Replication @try_manual -def step_database_export(test, rg, checks=None): +def step_database_create2(test, checks=None): if checks is None: checks = [] - test.cmd('az redisenterprise database export ' - '--cluster-name "cache1" ' - '--sas-uri "https://contosostorage.blob.core.window.net/urlToBlobContainer?sasKeyParameters" ' + test.cmd('az redisenterprise database create ' + '--cluster-name "{myRedisEnterprise}" ' + '--client-protocol "Encrypted" ' + '--clustering-policy "EnterpriseCluster" ' + '--eviction-policy "NoEviction" ' + '--group-nickname "groupName" ' + '--linked-databases id="/subscriptions/{subscription_id}/resourceGroups/{rg}/providers/Microsoft.Cache/red' + 'isEnterprise/{myRedisEnterprise}/databases/{myDatabas}" ' + '--linked-databases id="/subscriptions/{subscription_id}/resourceGroups/{rg_2}/providers/Microsoft.Cache/r' + 'edisEnterprise/{myRedisEnterprise2}/databases/{myDatabas}" ' + '--port 10000 ' '--resource-group "{rg}"', checks=checks) -# EXAMPLE: /Databases/post/RedisEnterpriseDatabasesImport +# EXAMPLE: /Databases/get/RedisEnterpriseDatabasesGet @try_manual -def step_database_import(test, rg, checks=None): +def step_database_show(test, checks=None): if checks is None: checks = [] - test.cmd('az redisenterprise database import ' - '--cluster-name "cache1" ' - '--sas-uri "https://contosostorage.blob.core.window.net/urltoBlobFile?sasKeyParameters" ' + test.cmd('az redisenterprise database show ' + '--cluster-name "{myRedisEnterprise}" ' '--resource-group "{rg}"', checks=checks) -# EXAMPLE: /Databases/post/RedisEnterpriseDatabasesListKeys +# EXAMPLE: /Databases/get/RedisEnterpriseDatabasesListByCluster @try_manual -def step_database_list_keys(test, rg, checks=None): +def step_database_list(test, checks=None): if checks is None: checks = [] - test.cmd('az redisenterprise database list-keys ' - '--cluster-name "cache1" ' + test.cmd('az redisenterprise database list ' + '--cluster-name "{myRedisEnterprise}" ' '--resource-group "{rg}"', checks=checks) -# EXAMPLE: /Databases/post/RedisEnterpriseDatabasesRegenerateKey +# EXAMPLE: /Databases/patch/RedisEnterpriseDatabasesUpdate @try_manual -def step_database_regenerate_key(test, rg, checks=None): +def step_database_update(test, checks=None): if checks is None: checks = [] - test.cmd('az redisenterprise database regenerate-key ' - '--cluster-name "cache1" ' - '--key-type "Primary" ' + test.cmd('az redisenterprise database update ' + '--cluster-name "{myRedisEnterprise}" ' + '--client-protocol "Encrypted" ' + '--eviction-policy "AllKeysLRU" ' + '--persistence rdb-enabled=true rdb-frequency="12h" ' '--resource-group "{rg}"', checks=checks) -# EXAMPLE: /Databases/delete/RedisEnterpriseDatabasesDelete +# EXAMPLE: /Databases/post/How to unlink a database during a regional outage @try_manual -def step_database_delete(test, rg, checks=None): +def step_database_force_unlink(test, checks=None): if checks is None: checks = [] - test.cmd('az redisenterprise database delete -y ' - '--cluster-name "cache1" ' + test.cmd('az redisenterprise database force-unlink ' + '--cluster-name "{myRedisEnterprise}" ' + '--unlink-ids "/subscriptions/{subscription_id}/resourceGroups/{rg_2}/providers/Microsoft.Cache/redisEnterprise/{' + 'myRedisEnterprise2}/databases/{myDatabas}" ' '--resource-group "{rg}"', checks=checks) -# EXAMPLE: /OperationsStatus/get/OperationsStatusGet +# EXAMPLE: /Databases/post/RedisEnterpriseDatabasesExport @try_manual -def step_operation_status_show(test, rg, checks=None): +def step_database_export(test, checks=None): if checks is None: checks = [] - test.cmd('az redisenterprise operation-status show ' - '--operation-id "testoperationid" ' - '--location "West US"', + test.cmd('az redisenterprise database export ' + '--cluster-name "{myRedisEnterprise}" ' + '--sas-uri "https://contosostorage.blob.core.window.net/urlToBlobContainer?sasKeyParameters" ' + '--resource-group "{rg}"', checks=checks) -# EXAMPLE: /RedisEnterprise/put/RedisEnterpriseCreate +# EXAMPLE: /Databases/post/RedisEnterpriseDatabasesImport @try_manual -def step_create(test, rg, checks=None): +def step_database_import(test, checks=None): if checks is None: checks = [] - test.cmd('az redisenterprise create ' - '--cluster-name "cache1" ' - '--location "West US" ' - '--minimum-tls-version "1.2" ' - '--sku "EnterpriseFlash_F300" ' - '--capacity 3 ' - '--tags tag1="value1" ' - '--zones "1" "2" "3" ' + test.cmd('az redisenterprise database import ' + '--cluster-name "{myRedisEnterprise}" ' + '--sas-uris "https://contosostorage.blob.core.window.net/urltoBlobFile1?sasKeyParameters" ' + '"https://contosostorage.blob.core.window.net/urltoBlobFile2?sasKeyParameters" ' '--resource-group "{rg}"', checks=checks) -# EXAMPLE: /RedisEnterprise/get/RedisEnterpriseGet +# EXAMPLE: /Databases/post/RedisEnterpriseDatabasesListKeys @try_manual -def step_show(test, rg, checks=None): +def step_database_list_keys(test, checks=None): if checks is None: checks = [] - test.cmd('az redisenterprise show ' - '--cluster-name "cache1" ' + test.cmd('az redisenterprise database list-keys ' + '--cluster-name "{myRedisEnterprise}" ' '--resource-group "{rg}"', checks=checks) -# EXAMPLE: /RedisEnterprise/get/RedisEnterpriseList +# EXAMPLE: /Databases/post/RedisEnterpriseDatabasesRegenerateKey @try_manual -def step_list(test, rg, checks=None): +def step_database_regenerate_key(test, checks=None): if checks is None: checks = [] - test.cmd('az redisenterprise list ' - '-g ""', + test.cmd('az redisenterprise database regenerate-key ' + '--cluster-name "{myRedisEnterprise}" ' + '--key-type "Primary" ' + '--resource-group "{rg}"', checks=checks) -# EXAMPLE: /RedisEnterprise/get/RedisEnterpriseListByResourceGroup +# EXAMPLE: /Databases/delete/RedisEnterpriseDatabasesDelete @try_manual -def step_list2(test, rg, checks=None): +def step_database_delete(test, checks=None): if checks is None: checks = [] - test.cmd('az redisenterprise list ' + test.cmd('az redisenterprise database delete -y ' + '--cluster-name "{myRedisEnterprise}" ' '--resource-group "{rg}"', checks=checks) -# EXAMPLE: /RedisEnterprise/patch/RedisEnterpriseUpdate +# EXAMPLE: /OperationsStatus/get/OperationsStatusGet @try_manual -def step_update(test, rg, checks=None): +def step_operation_status_show(test, checks=None): if checks is None: checks = [] - test.cmd('az redisenterprise update ' - '--cluster-name "cache1" ' - '--minimum-tls-version "1.2" ' - '--sku "EnterpriseFlash_F300" ' - '--capacity 9 ' - '--tags tag1="value1" ' - '--resource-group "{rg}"', + test.cmd('az redisenterprise operation-status show ' + '--operation-id "testoperationid" ' + '--location "West US"', checks=checks) # EXAMPLE: /RedisEnterprise/delete/RedisEnterpriseDelete @try_manual -def step_delete(test, rg, checks=None): +def step_delete(test, checks=None): if checks is None: checks = [] test.cmd('az redisenterprise delete -y ' - '--cluster-name "cache1" ' + '--cluster-name "{myRedisEnterprise}" ' '--resource-group "{rg}"', checks=checks) diff --git a/src/redisenterprise/azext_redisenterprise/tests/latest/test_redisenterprise_scenario.py b/src/redisenterprise/azext_redisenterprise/tests/latest/test_redisenterprise_scenario.py index cb4e596e70c..193caaf8d2d 100644 --- a/src/redisenterprise/azext_redisenterprise/tests/latest/test_redisenterprise_scenario.py +++ b/src/redisenterprise/azext_redisenterprise/tests/latest/test_redisenterprise_scenario.py @@ -34,85 +34,112 @@ # Env setup_scenario1 @try_manual -def setup_scenario1(test, rg): +def setup_scenario1(test): pass # Env cleanup_scenario1 @try_manual -def cleanup_scenario1(test, rg): +def cleanup_scenario1(test): pass # Testcase: scenario1 @try_manual -def call_scenario1(test, rg): - setup_scenario1(test, rg) - step_create(test, rg, checks=[]) - step_show(test, rg, checks=[]) - step_list(test, rg, checks=[]) - step_list2(test, rg, checks=[]) - step_database_show(test, rg, checks=[]) - step_database_list(test, rg, checks=[]) - step_database_list_keys(test, rg, checks=[]) - step_database_regenerate_key(test, rg, checks=[]) - step_delete(test, rg, checks=[]) - cleanup_scenario1(test, rg) +def call_scenario1(test): + setup_scenario1(test) + step_create(test, checks=[]) + step_show(test, checks=[]) + step_list(test, checks=[]) + step_list2(test, checks=[]) + step_database_show(test, checks=[]) + step_database_list(test, checks=[]) + step_database_list_keys(test, checks=[]) + step_database_regenerate_key(test, checks=[]) + step_delete(test, checks=[]) + cleanup_scenario1(test) # Test class for scenario1 @try_manual class Redisenterprisescenario1Test(ScenarioTest): - def __init__(self, *args, **kwargs): super(Redisenterprisescenario1Test, self).__init__(*args, **kwargs) + self.kwargs.update({ + 'subscription_id': self.get_subscription_id() + }) + + self.kwargs.update({ + 'myRedisEnterprise': 'cache1', + 'myRedisEnterprise2': 'cache2', + 'myDatabas': 'default', + }) @ResourceGroupPreparer(name_prefix='clitestredisenterprise_rg1'[:7], key='rg', parameter_name='rg') - def test_redisenterprise_scenario1(self, rg): - call_scenario1(self, rg) + @ResourceGroupPreparer(name_prefix='clitestredisenterprise_rg2'[:7], key='rg_2', parameter_name='rg_2') + def test_redisenterprise_scenario1(self, rg, rg_2): + call_scenario1(self) calc_coverage(__file__) raise_if() - # Env setup_scenario2 @try_manual -def setup_scenario2(test, rg): +def setup_scenario2(test): pass # Env cleanup_scenario2 @try_manual -def cleanup_scenario2(test, rg): +def cleanup_scenario2(test): pass # Testcase: scenario2 @try_manual -def call_scenario2(test, rg): - setup_scenario2(test, rg) - step_create(test, rg, checks=[]) - step_show(test, rg, checks=[]) - step_list(test, rg, checks=[]) - step_list2(test, rg, checks=[]) - step_database_create(test, rg, checks=[]) - step_database_show(test, rg, checks=[]) - step_database_list(test, rg, checks=[]) - step_database_list_keys(test, rg, checks=[]) - step_database_regenerate_key(test, rg, checks=[]) - step_database_delete(test, rg, checks=[]) - step_delete(test, rg, checks=[]) - cleanup_scenario2(test, rg) +def call_scenario2(test): + setup_scenario2(test) + step_create(test, checks=[]) + step_show(test, checks=[]) + step_list(test, checks=[]) + step_list2(test, checks=[]) + step_database_create(test, checks=[]) + step_database_show(test, checks=[]) + step_database_list(test, checks=[]) + step_database_list_keys(test, checks=[]) + step_database_regenerate_key(test, checks=[]) + step_database_delete(test, checks=[]) + step_delete(test, checks=[]) + cleanup_scenario2(test) # Test class for scenario2 @try_manual class Redisenterprisescenario2Test(ScenarioTest): - def __init__(self, *args, **kwargs): super(Redisenterprisescenario2Test, self).__init__(*args, **kwargs) + self.kwargs.update({ + 'subscription_id': self.get_subscription_id() + }) + + self.kwargs.update({ + 'myRedisEnterprise': 'cache1', + 'myRedisEnterprise2': 'cache2', + 'myDatabas': 'default', + }) @ResourceGroupPreparer(name_prefix='clitestredisenterprise_rg1'[:7], key='rg', parameter_name='rg') - def test_redisenterprise_scenario2(self, rg): - call_scenario2(self, rg) + @ResourceGroupPreparer(name_prefix='clitestredisenterprise_rg2'[:7], key='rg_2', parameter_name='rg_2') + def test_redisenterprise_scenario2(self, rg, rg_2): + call_scenario2(self) calc_coverage(__file__) raise_if() + +# Testcase: scenario3 +@try_manual +def call_scenario3(test): + pass + +@try_manual +class Redisenterprisescenario3Test(ScenarioTest): + pass + diff --git a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/_configuration.py b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/_configuration.py index 284a0182c77..3006fd00ab8 100644 --- a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/_configuration.py +++ b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/_configuration.py @@ -48,7 +48,7 @@ def __init__( self.credential = credential self.subscription_id = subscription_id - self.api_version = "2021-03-01" + self.api_version = "2022-01-01" self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) kwargs.setdefault('sdk_moniker', 'mgmt-redisenterprise/{}'.format(VERSION)) self._configure(**kwargs) diff --git a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/_version.py b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/_version.py index c47f66669f1..48944bf3938 100644 --- a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/_version.py +++ b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/_version.py @@ -6,4 +6,4 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -VERSION = "1.0.0" +VERSION = "2.0.0" diff --git a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/_configuration.py b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/_configuration.py index ce5c61e781f..91438e04f36 100644 --- a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/_configuration.py +++ b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/_configuration.py @@ -45,7 +45,7 @@ def __init__( self.credential = credential self.subscription_id = subscription_id - self.api_version = "2021-03-01" + self.api_version = "2022-01-01" self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) kwargs.setdefault('sdk_moniker', 'mgmt-redisenterprise/{}'.format(VERSION)) self._configure(**kwargs) diff --git a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_databases_operations.py b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_databases_operations.py index 7346ef055a0..c13963fcfce 100644 --- a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_databases_operations.py +++ b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_databases_operations.py @@ -65,7 +65,7 @@ def list_by_cluster( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" def prepare_request(next_link=None): @@ -78,7 +78,7 @@ def prepare_request(next_link=None): url = self.list_by_cluster.metadata['url'] # type: ignore path_format_arguments = { 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) @@ -131,14 +131,14 @@ async def _create_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" # Construct URL url = self._create_initial.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -234,7 +234,7 @@ def get_long_running_output(pipeline_response): return deserialized path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -267,14 +267,14 @@ async def _update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" # Construct URL url = self._update_initial.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -368,7 +368,7 @@ def get_long_running_output(pipeline_response): return deserialized path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -413,13 +413,13 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" # Construct URL url = self.get.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -463,13 +463,13 @@ async def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" # Construct URL url = self._delete_initial.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -547,7 +547,7 @@ def get_long_running_output(pipeline_response): return cls(pipeline_response, None, {}) path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -592,13 +592,13 @@ async def list_keys( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" # Construct URL url = self.list_keys.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -643,14 +643,14 @@ async def _regenerate_key_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" # Construct URL url = self._regenerate_key_initial.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -744,7 +744,7 @@ def get_long_running_output(pipeline_response): return deserialized path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -777,14 +777,14 @@ async def _import_method_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" # Construct URL url = self._import_method_initial.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -825,7 +825,7 @@ async def begin_import_method( parameters: "models.ImportClusterParameters", **kwargs ) -> AsyncLROPoller[None]: - """Imports a database file to target database. + """Imports database files to target database. :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str @@ -870,7 +870,7 @@ def get_long_running_output(pipeline_response): return cls(pipeline_response, None, {}) path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -903,14 +903,14 @@ async def _export_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" # Construct URL url = self._export_initial.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -996,7 +996,7 @@ def get_long_running_output(pipeline_response): return cls(pipeline_response, None, {}) path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -1015,3 +1015,129 @@ def get_long_running_output(pipeline_response): else: return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) begin_export.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redisEnterprise/{clusterName}/databases/{databaseName}/export'} # type: ignore + + async def _force_unlink_initial( + self, + resource_group_name: str, + cluster_name: str, + database_name: str, + parameters: "models.ForceUnlinkParameters", + **kwargs + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2022-01-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._force_unlink_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'databaseName': self._serialize.url("database_name", database_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(parameters, 'ForceUnlinkParameters') + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.ErrorResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _force_unlink_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redisEnterprise/{clusterName}/databases/{databaseName}/forceUnlink'} # type: ignore + + async def begin_force_unlink( + self, + resource_group_name: str, + cluster_name: str, + database_name: str, + parameters: "models.ForceUnlinkParameters", + **kwargs + ) -> AsyncLROPoller[None]: + """Forcibly removes the link to the specified database resource. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param cluster_name: The name of the RedisEnterprise cluster. + :type cluster_name: str + :param database_name: The name of the database. + :type database_name: str + :param parameters: Information identifying the database to be unlinked. + :type parameters: ~azure.mgmt.redisenterprise.models.ForceUnlinkParameters + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._force_unlink_initial( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + database_name=database_name, + parameters=parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'databaseName': self._serialize.url("database_name", database_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_force_unlink.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redisEnterprise/{clusterName}/databases/{databaseName}/forceUnlink'} # type: ignore diff --git a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_operations.py b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_operations.py index d66303e4cde..9c9f38dec45 100644 --- a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_operations.py +++ b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_operations.py @@ -57,7 +57,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_operations_status_operations.py b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_operations_status_operations.py index 02b019ef96e..65cf64027c1 100644 --- a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_operations_status_operations.py +++ b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_operations_status_operations.py @@ -62,7 +62,7 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" # Construct URL diff --git a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_private_endpoint_connections_operations.py b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_private_endpoint_connections_operations.py index 27834293c11..5cbf1130f8d 100644 --- a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_private_endpoint_connections_operations.py +++ b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_private_endpoint_connections_operations.py @@ -65,7 +65,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" def prepare_request(next_link=None): @@ -77,7 +77,7 @@ def prepare_request(next_link=None): # Construct URL url = self.list.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), } @@ -144,13 +144,13 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" # Construct URL url = self.get.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'privateEndpointConnectionName': self._serialize.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -195,14 +195,14 @@ async def _put_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" # Construct URL url = self._put_initial.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), 'privateEndpointConnectionName': self._serialize.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), @@ -296,7 +296,7 @@ def get_long_running_output(pipeline_response): return deserialized path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), 'privateEndpointConnectionName': self._serialize.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), @@ -342,13 +342,13 @@ async def delete( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" # Construct URL url = self.delete.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), 'privateEndpointConnectionName': self._serialize.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), diff --git a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_private_link_resources_operations.py b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_private_link_resources_operations.py index eb7b0d44174..8b02304abcf 100644 --- a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_private_link_resources_operations.py +++ b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_private_link_resources_operations.py @@ -63,7 +63,7 @@ def list_by_cluster( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" def prepare_request(next_link=None): @@ -75,7 +75,7 @@ def prepare_request(next_link=None): # Construct URL url = self.list_by_cluster.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), } diff --git a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_redis_enterprise_operations.py b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_redis_enterprise_operations.py index 3f098b75a03..7748cf76281 100644 --- a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_redis_enterprise_operations.py +++ b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/aio/operations/_redis_enterprise_operations.py @@ -55,14 +55,14 @@ async def _create_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" # Construct URL url = self._create_initial.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), } @@ -153,7 +153,7 @@ def get_long_running_output(pipeline_response): return deserialized path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), } @@ -184,14 +184,14 @@ async def _update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" # Construct URL url = self._update_initial.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), } @@ -280,7 +280,7 @@ def get_long_running_output(pipeline_response): return deserialized path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), } @@ -310,13 +310,13 @@ async def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" # Construct URL url = self._delete_initial.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), } @@ -389,7 +389,7 @@ def get_long_running_output(pipeline_response): return cls(pipeline_response, None, {}) path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), } @@ -430,13 +430,13 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" # Construct URL url = self.get.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), } @@ -486,7 +486,7 @@ def list_by_resource_group( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" def prepare_request(next_link=None): @@ -498,7 +498,7 @@ def prepare_request(next_link=None): # Construct URL url = self.list_by_resource_group.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), } url = self._client.format_url(url, **path_format_arguments) @@ -554,7 +554,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/models/__init__.py b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/models/__init__.py index d523be3efff..24541961b5a 100644 --- a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/models/__init__.py +++ b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/models/__init__.py @@ -13,12 +13,15 @@ from ._models_py3 import ClusterUpdate from ._models_py3 import Database from ._models_py3 import DatabaseList + from ._models_py3 import DatabasePropertiesGeoReplication from ._models_py3 import DatabaseUpdate from ._models_py3 import ErrorAdditionalInfo from ._models_py3 import ErrorDetail from ._models_py3 import ErrorResponse from ._models_py3 import ExportClusterParameters + from ._models_py3 import ForceUnlinkParameters from ._models_py3 import ImportClusterParameters + from ._models_py3 import LinkedDatabase from ._models_py3 import Module from ._models_py3 import Operation from ._models_py3 import OperationDisplay @@ -43,12 +46,15 @@ from ._models import ClusterUpdate # type: ignore from ._models import Database # type: ignore from ._models import DatabaseList # type: ignore + from ._models import DatabasePropertiesGeoReplication # type: ignore from ._models import DatabaseUpdate # type: ignore from ._models import ErrorAdditionalInfo # type: ignore from ._models import ErrorDetail # type: ignore from ._models import ErrorResponse # type: ignore from ._models import ExportClusterParameters # type: ignore + from ._models import ForceUnlinkParameters # type: ignore from ._models import ImportClusterParameters # type: ignore + from ._models import LinkedDatabase # type: ignore from ._models import Module # type: ignore from ._models import Operation # type: ignore from ._models import OperationDisplay # type: ignore @@ -73,6 +79,7 @@ AofFrequency, ClusteringPolicy, EvictionPolicy, + LinkState, Origin, PrivateEndpointConnectionProvisioningState, PrivateEndpointServiceConnectionStatus, @@ -91,12 +98,15 @@ 'ClusterUpdate', 'Database', 'DatabaseList', + 'DatabasePropertiesGeoReplication', 'DatabaseUpdate', 'ErrorAdditionalInfo', 'ErrorDetail', 'ErrorResponse', 'ExportClusterParameters', + 'ForceUnlinkParameters', 'ImportClusterParameters', + 'LinkedDatabase', 'Module', 'Operation', 'OperationDisplay', @@ -119,6 +129,7 @@ 'AofFrequency', 'ClusteringPolicy', 'EvictionPolicy', + 'LinkState', 'Origin', 'PrivateEndpointConnectionProvisioningState', 'PrivateEndpointServiceConnectionStatus', diff --git a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/models/_models.py b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/models/_models.py index 43947f741b6..da489ff65b5 100644 --- a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/models/_models.py +++ b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/models/_models.py @@ -340,6 +340,9 @@ class Database(Resource): :param modules: Optional set of redis modules to enable in this database - modules can only be added at creation time. :type modules: list[~azure.mgmt.redisenterprise.models.Module] + :param geo_replication: Optional set of properties to configure geo replication for this + database. + :type geo_replication: ~azure.mgmt.redisenterprise.models.DatabasePropertiesGeoReplication """ _validation = { @@ -362,6 +365,7 @@ class Database(Resource): 'eviction_policy': {'key': 'properties.evictionPolicy', 'type': 'str'}, 'persistence': {'key': 'properties.persistence', 'type': 'Persistence'}, 'modules': {'key': 'properties.modules', 'type': '[Module]'}, + 'geo_replication': {'key': 'properties.geoReplication', 'type': 'DatabasePropertiesGeoReplication'}, } def __init__( @@ -377,6 +381,7 @@ def __init__( self.eviction_policy = kwargs.get('eviction_policy', None) self.persistence = kwargs.get('persistence', None) self.modules = kwargs.get('modules', None) + self.geo_replication = kwargs.get('geo_replication', None) class DatabaseList(msrest.serialization.Model): @@ -408,6 +413,29 @@ def __init__( self.next_link = None +class DatabasePropertiesGeoReplication(msrest.serialization.Model): + """Optional set of properties to configure geo replication for this database. + + :param group_nickname: Name for the group of linked database resources. + :type group_nickname: str + :param linked_databases: List of database resources to link with this database. + :type linked_databases: list[~azure.mgmt.redisenterprise.models.LinkedDatabase] + """ + + _attribute_map = { + 'group_nickname': {'key': 'groupNickname', 'type': 'str'}, + 'linked_databases': {'key': 'linkedDatabases', 'type': '[LinkedDatabase]'}, + } + + def __init__( + self, + **kwargs + ): + super(DatabasePropertiesGeoReplication, self).__init__(**kwargs) + self.group_nickname = kwargs.get('group_nickname', None) + self.linked_databases = kwargs.get('linked_databases', None) + + class DatabaseUpdate(msrest.serialization.Model): """A partial update to the RedisEnterprise database. @@ -439,6 +467,9 @@ class DatabaseUpdate(msrest.serialization.Model): :param modules: Optional set of redis modules to enable in this database - modules can only be added at creation time. :type modules: list[~azure.mgmt.redisenterprise.models.Module] + :param geo_replication: Optional set of properties to configure geo replication for this + database. + :type geo_replication: ~azure.mgmt.redisenterprise.models.DatabasePropertiesGeoReplication """ _validation = { @@ -455,6 +486,7 @@ class DatabaseUpdate(msrest.serialization.Model): 'eviction_policy': {'key': 'properties.evictionPolicy', 'type': 'str'}, 'persistence': {'key': 'properties.persistence', 'type': 'Persistence'}, 'modules': {'key': 'properties.modules', 'type': '[Module]'}, + 'geo_replication': {'key': 'properties.geoReplication', 'type': 'DatabasePropertiesGeoReplication'}, } def __init__( @@ -470,6 +502,7 @@ def __init__( self.eviction_policy = kwargs.get('eviction_policy', None) self.persistence = kwargs.get('persistence', None) self.modules = kwargs.get('modules', None) + self.geo_replication = kwargs.get('geo_replication', None) class ErrorAdditionalInfo(msrest.serialization.Model): @@ -591,21 +624,46 @@ def __init__( self.sas_uri = kwargs['sas_uri'] +class ForceUnlinkParameters(msrest.serialization.Model): + """Parameters for a Redis Enterprise Active Geo Replication Force Unlink operation. + + All required parameters must be populated in order to send to Azure. + + :param ids: Required. The resource IDs of the database resources to be unlinked. + :type ids: list[str] + """ + + _validation = { + 'ids': {'required': True}, + } + + _attribute_map = { + 'ids': {'key': 'ids', 'type': '[str]'}, + } + + def __init__( + self, + **kwargs + ): + super(ForceUnlinkParameters, self).__init__(**kwargs) + self.ids = kwargs['ids'] + + class ImportClusterParameters(msrest.serialization.Model): """Parameters for a Redis Enterprise import operation. All required parameters must be populated in order to send to Azure. - :param sas_uri: Required. SAS URI for the target blob to import from. - :type sas_uri: str + :param sas_uris: Required. SAS URIs for the target blobs to import from. + :type sas_uris: list[str] """ _validation = { - 'sas_uri': {'required': True}, + 'sas_uris': {'required': True}, } _attribute_map = { - 'sas_uri': {'key': 'sasUri', 'type': 'str'}, + 'sas_uris': {'key': 'sasUris', 'type': '[str]'}, } def __init__( @@ -613,7 +671,37 @@ def __init__( **kwargs ): super(ImportClusterParameters, self).__init__(**kwargs) - self.sas_uri = kwargs['sas_uri'] + self.sas_uris = kwargs['sas_uris'] + + +class LinkedDatabase(msrest.serialization.Model): + """Specifies details of a linked database resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :param id: Resource ID of a database resource to link with this database. + :type id: str + :ivar state: State of the link between the database resources. Possible values include: + "Linked", "Linking", "Unlinking", "LinkFailed", "UnlinkFailed". + :vartype state: str or ~azure.mgmt.redisenterprise.models.LinkState + """ + + _validation = { + 'state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'state': {'key': 'state', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(LinkedDatabase, self).__init__(**kwargs) + self.id = kwargs.get('id', None) + self.state = None class Module(msrest.serialization.Model): @@ -626,7 +714,7 @@ class Module(msrest.serialization.Model): :param name: Required. The name of the module, e.g. 'RedisBloom', 'RediSearch', 'RedisTimeSeries'. :type name: str - :param args: Configuration options for the module, e.g. 'ERROR_RATE 0.00 INITIAL_SIZE 400'. + :param args: Configuration options for the module, e.g. 'ERROR_RATE 0.01 INITIAL_SIZE 400'. :type args: str :ivar version: The version of the module, e.g. '1.0'. :vartype version: str diff --git a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/models/_models_py3.py b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/models/_models_py3.py index 701f2e49726..4545d280136 100644 --- a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/models/_models_py3.py +++ b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/models/_models_py3.py @@ -359,6 +359,9 @@ class Database(Resource): :param modules: Optional set of redis modules to enable in this database - modules can only be added at creation time. :type modules: list[~azure.mgmt.redisenterprise.models.Module] + :param geo_replication: Optional set of properties to configure geo replication for this + database. + :type geo_replication: ~azure.mgmt.redisenterprise.models.DatabasePropertiesGeoReplication """ _validation = { @@ -381,6 +384,7 @@ class Database(Resource): 'eviction_policy': {'key': 'properties.evictionPolicy', 'type': 'str'}, 'persistence': {'key': 'properties.persistence', 'type': 'Persistence'}, 'modules': {'key': 'properties.modules', 'type': '[Module]'}, + 'geo_replication': {'key': 'properties.geoReplication', 'type': 'DatabasePropertiesGeoReplication'}, } def __init__( @@ -392,6 +396,7 @@ def __init__( eviction_policy: Optional[Union[str, "EvictionPolicy"]] = None, persistence: Optional["Persistence"] = None, modules: Optional[List["Module"]] = None, + geo_replication: Optional["DatabasePropertiesGeoReplication"] = None, **kwargs ): super(Database, self).__init__(**kwargs) @@ -403,6 +408,7 @@ def __init__( self.eviction_policy = eviction_policy self.persistence = persistence self.modules = modules + self.geo_replication = geo_replication class DatabaseList(msrest.serialization.Model): @@ -436,6 +442,32 @@ def __init__( self.next_link = None +class DatabasePropertiesGeoReplication(msrest.serialization.Model): + """Optional set of properties to configure geo replication for this database. + + :param group_nickname: Name for the group of linked database resources. + :type group_nickname: str + :param linked_databases: List of database resources to link with this database. + :type linked_databases: list[~azure.mgmt.redisenterprise.models.LinkedDatabase] + """ + + _attribute_map = { + 'group_nickname': {'key': 'groupNickname', 'type': 'str'}, + 'linked_databases': {'key': 'linkedDatabases', 'type': '[LinkedDatabase]'}, + } + + def __init__( + self, + *, + group_nickname: Optional[str] = None, + linked_databases: Optional[List["LinkedDatabase"]] = None, + **kwargs + ): + super(DatabasePropertiesGeoReplication, self).__init__(**kwargs) + self.group_nickname = group_nickname + self.linked_databases = linked_databases + + class DatabaseUpdate(msrest.serialization.Model): """A partial update to the RedisEnterprise database. @@ -467,6 +499,9 @@ class DatabaseUpdate(msrest.serialization.Model): :param modules: Optional set of redis modules to enable in this database - modules can only be added at creation time. :type modules: list[~azure.mgmt.redisenterprise.models.Module] + :param geo_replication: Optional set of properties to configure geo replication for this + database. + :type geo_replication: ~azure.mgmt.redisenterprise.models.DatabasePropertiesGeoReplication """ _validation = { @@ -483,6 +518,7 @@ class DatabaseUpdate(msrest.serialization.Model): 'eviction_policy': {'key': 'properties.evictionPolicy', 'type': 'str'}, 'persistence': {'key': 'properties.persistence', 'type': 'Persistence'}, 'modules': {'key': 'properties.modules', 'type': '[Module]'}, + 'geo_replication': {'key': 'properties.geoReplication', 'type': 'DatabasePropertiesGeoReplication'}, } def __init__( @@ -494,6 +530,7 @@ def __init__( eviction_policy: Optional[Union[str, "EvictionPolicy"]] = None, persistence: Optional["Persistence"] = None, modules: Optional[List["Module"]] = None, + geo_replication: Optional["DatabasePropertiesGeoReplication"] = None, **kwargs ): super(DatabaseUpdate, self).__init__(**kwargs) @@ -505,6 +542,7 @@ def __init__( self.eviction_policy = eviction_policy self.persistence = persistence self.modules = modules + self.geo_replication = geo_replication class ErrorAdditionalInfo(msrest.serialization.Model): @@ -630,31 +668,90 @@ def __init__( self.sas_uri = sas_uri +class ForceUnlinkParameters(msrest.serialization.Model): + """Parameters for a Redis Enterprise Active Geo Replication Force Unlink operation. + + All required parameters must be populated in order to send to Azure. + + :param ids: Required. The resource IDs of the database resources to be unlinked. + :type ids: list[str] + """ + + _validation = { + 'ids': {'required': True}, + } + + _attribute_map = { + 'ids': {'key': 'ids', 'type': '[str]'}, + } + + def __init__( + self, + *, + ids: List[str], + **kwargs + ): + super(ForceUnlinkParameters, self).__init__(**kwargs) + self.ids = ids + + class ImportClusterParameters(msrest.serialization.Model): """Parameters for a Redis Enterprise import operation. All required parameters must be populated in order to send to Azure. - :param sas_uri: Required. SAS URI for the target blob to import from. - :type sas_uri: str + :param sas_uris: Required. SAS URIs for the target blobs to import from. + :type sas_uris: list[str] """ _validation = { - 'sas_uri': {'required': True}, + 'sas_uris': {'required': True}, } _attribute_map = { - 'sas_uri': {'key': 'sasUri', 'type': 'str'}, + 'sas_uris': {'key': 'sasUris', 'type': '[str]'}, } def __init__( self, *, - sas_uri: str, + sas_uris: List[str], **kwargs ): super(ImportClusterParameters, self).__init__(**kwargs) - self.sas_uri = sas_uri + self.sas_uris = sas_uris + + +class LinkedDatabase(msrest.serialization.Model): + """Specifies details of a linked database resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :param id: Resource ID of a database resource to link with this database. + :type id: str + :ivar state: State of the link between the database resources. Possible values include: + "Linked", "Linking", "Unlinking", "LinkFailed", "UnlinkFailed". + :vartype state: str or ~azure.mgmt.redisenterprise.models.LinkState + """ + + _validation = { + 'state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'state': {'key': 'state', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + **kwargs + ): + super(LinkedDatabase, self).__init__(**kwargs) + self.id = id + self.state = None class Module(msrest.serialization.Model): @@ -667,7 +764,7 @@ class Module(msrest.serialization.Model): :param name: Required. The name of the module, e.g. 'RedisBloom', 'RediSearch', 'RedisTimeSeries'. :type name: str - :param args: Configuration options for the module, e.g. 'ERROR_RATE 0.00 INITIAL_SIZE 400'. + :param args: Configuration options for the module, e.g. 'ERROR_RATE 0.01 INITIAL_SIZE 400'. :type args: str :ivar version: The version of the module, e.g. '1.0'. :vartype version: str diff --git a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/models/_redis_enterprise_management_client_enums.py b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/models/_redis_enterprise_management_client_enums.py index c19fa2c79c2..b1e9115c920 100644 --- a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/models/_redis_enterprise_management_client_enums.py +++ b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/models/_redis_enterprise_management_client_enums.py @@ -66,6 +66,16 @@ class EvictionPolicy(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): VOLATILE_RANDOM = "VolatileRandom" NO_EVICTION = "NoEviction" +class LinkState(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """State of the link between the database resources. + """ + + LINKED = "Linked" + LINKING = "Linking" + UNLINKING = "Unlinking" + LINK_FAILED = "LinkFailed" + UNLINK_FAILED = "UnlinkFailed" + class Origin(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit logs UX. Default value is "user,system" diff --git a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_databases_operations.py b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_databases_operations.py index a516b3c429f..c44ecec86e4 100644 --- a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_databases_operations.py +++ b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_databases_operations.py @@ -70,7 +70,7 @@ def list_by_cluster( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" def prepare_request(next_link=None): @@ -83,7 +83,7 @@ def prepare_request(next_link=None): url = self.list_by_cluster.metadata['url'] # type: ignore path_format_arguments = { 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) @@ -137,14 +137,14 @@ def _create_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" # Construct URL url = self._create_initial.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -241,7 +241,7 @@ def get_long_running_output(pipeline_response): return deserialized path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -275,14 +275,14 @@ def _update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" # Construct URL url = self._update_initial.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -377,7 +377,7 @@ def get_long_running_output(pipeline_response): return deserialized path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -423,13 +423,13 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" # Construct URL url = self.get.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -474,13 +474,13 @@ def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" # Construct URL url = self._delete_initial.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -559,7 +559,7 @@ def get_long_running_output(pipeline_response): return cls(pipeline_response, None, {}) path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -605,13 +605,13 @@ def list_keys( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" # Construct URL url = self.list_keys.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -657,14 +657,14 @@ def _regenerate_key_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" # Construct URL url = self._regenerate_key_initial.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -759,7 +759,7 @@ def get_long_running_output(pipeline_response): return deserialized path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -793,14 +793,14 @@ def _import_method_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" # Construct URL url = self._import_method_initial.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -842,7 +842,7 @@ def begin_import_method( **kwargs # type: Any ): # type: (...) -> LROPoller[None] - """Imports a database file to target database. + """Imports database files to target database. :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str @@ -887,7 +887,7 @@ def get_long_running_output(pipeline_response): return cls(pipeline_response, None, {}) path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -921,14 +921,14 @@ def _export_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" # Construct URL url = self._export_initial.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -1015,7 +1015,7 @@ def get_long_running_output(pipeline_response): return cls(pipeline_response, None, {}) path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'databaseName': self._serialize.url("database_name", database_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -1034,3 +1034,131 @@ def get_long_running_output(pipeline_response): else: return LROPoller(self._client, raw_result, get_long_running_output, polling_method) begin_export.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redisEnterprise/{clusterName}/databases/{databaseName}/export'} # type: ignore + + def _force_unlink_initial( + self, + resource_group_name, # type: str + cluster_name, # type: str + database_name, # type: str + parameters, # type: "models.ForceUnlinkParameters" + **kwargs # type: Any + ): + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2022-01-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._force_unlink_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'databaseName': self._serialize.url("database_name", database_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(parameters, 'ForceUnlinkParameters') + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.ErrorResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _force_unlink_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redisEnterprise/{clusterName}/databases/{databaseName}/forceUnlink'} # type: ignore + + def begin_force_unlink( + self, + resource_group_name, # type: str + cluster_name, # type: str + database_name, # type: str + parameters, # type: "models.ForceUnlinkParameters" + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """Forcibly removes the link to the specified database resource. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param cluster_name: The name of the RedisEnterprise cluster. + :type cluster_name: str + :param database_name: The name of the database. + :type database_name: str + :param parameters: Information identifying the database to be unlinked. + :type parameters: ~azure.mgmt.redisenterprise.models.ForceUnlinkParameters + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._force_unlink_initial( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + database_name=database_name, + parameters=parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), + 'databaseName': self._serialize.url("database_name", database_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + } + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_force_unlink.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redisEnterprise/{clusterName}/databases/{databaseName}/forceUnlink'} # type: ignore diff --git a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_operations.py b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_operations.py index a28b5cd823c..6c42480e7f6 100644 --- a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_operations.py +++ b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_operations.py @@ -62,7 +62,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_operations_status_operations.py b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_operations_status_operations.py index d2320a56bf4..56075bab92d 100644 --- a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_operations_status_operations.py +++ b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_operations_status_operations.py @@ -67,7 +67,7 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" # Construct URL diff --git a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_private_endpoint_connections_operations.py b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_private_endpoint_connections_operations.py index 2614e0db94b..54111311cc2 100644 --- a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_private_endpoint_connections_operations.py +++ b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_private_endpoint_connections_operations.py @@ -70,7 +70,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" def prepare_request(next_link=None): @@ -82,7 +82,7 @@ def prepare_request(next_link=None): # Construct URL url = self.list.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), } @@ -150,13 +150,13 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" # Construct URL url = self.get.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'privateEndpointConnectionName': self._serialize.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -202,14 +202,14 @@ def _put_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" # Construct URL url = self._put_initial.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), 'privateEndpointConnectionName': self._serialize.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), @@ -304,7 +304,7 @@ def get_long_running_output(pipeline_response): return deserialized path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), 'privateEndpointConnectionName': self._serialize.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), @@ -351,13 +351,13 @@ def delete( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" # Construct URL url = self.delete.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), 'privateEndpointConnectionName': self._serialize.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), diff --git a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_private_link_resources_operations.py b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_private_link_resources_operations.py index f36df7aba29..a85c3eb7fed 100644 --- a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_private_link_resources_operations.py +++ b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_private_link_resources_operations.py @@ -68,7 +68,7 @@ def list_by_cluster( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" def prepare_request(next_link=None): @@ -80,7 +80,7 @@ def prepare_request(next_link=None): # Construct URL url = self.list_by_cluster.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), } diff --git a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_redis_enterprise_operations.py b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_redis_enterprise_operations.py index c5b32a95700..993a23e4f57 100644 --- a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_redis_enterprise_operations.py +++ b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/operations/_redis_enterprise_operations.py @@ -60,14 +60,14 @@ def _create_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" # Construct URL url = self._create_initial.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), } @@ -159,7 +159,7 @@ def get_long_running_output(pipeline_response): return deserialized path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), } @@ -191,14 +191,14 @@ def _update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" # Construct URL url = self._update_initial.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), } @@ -288,7 +288,7 @@ def get_long_running_output(pipeline_response): return deserialized path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), } @@ -319,13 +319,13 @@ def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" # Construct URL url = self._delete_initial.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), } @@ -399,7 +399,7 @@ def get_long_running_output(pipeline_response): return cls(pipeline_response, None, {}) path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), } @@ -441,13 +441,13 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" # Construct URL url = self.get.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str'), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), } @@ -498,7 +498,7 @@ def list_by_resource_group( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" def prepare_request(next_link=None): @@ -510,7 +510,7 @@ def prepare_request(next_link=None): # Construct URL url = self.list_by_resource_group.metadata['url'] # type: ignore path_format_arguments = { - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), } url = self._client.format_url(url, **path_format_arguments) @@ -567,7 +567,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-03-01" + api_version = "2022-01-01" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/setup.py b/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/setup.py deleted file mode 100644 index 02c267497d8..00000000000 --- a/src/redisenterprise/azext_redisenterprise/vendored_sdks/redisenterprise/setup.py +++ /dev/null @@ -1,37 +0,0 @@ -# coding=utf-8 -# -------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is regenerated. -# -------------------------------------------------------------------------- -# coding: utf-8 - -from setuptools import setup, find_packages - -NAME = "azure-mgmt-redisenterprise" -VERSION = "1.0.0" - -# To install the library, run the following -# -# python setup.py install -# -# prerequisite: setuptools -# http://pypi.python.org/pypi/setuptools - -REQUIRES = ["msrest>=0.6.18", "azure-core<2.0.0,>=1.8.2", "azure-mgmt-core<2.0.0,>=1.2.1"] - -setup( - name=NAME, - version=VERSION, - description="azure-mgmt-redisenterprise", - author_email="", - url="", - keywords=["Swagger", "RedisEnterpriseManagementClient"], - install_requires=REQUIRES, - packages=find_packages(), - include_package_data=True, - long_description="""\ - REST API for managing Redis Enterprise resources in Azure. - """ -) diff --git a/src/redisenterprise/report.md b/src/redisenterprise/report.md index 3e8e38e8d7a..b7ae35c4909 100644 --- a/src/redisenterprise/report.md +++ b/src/redisenterprise/report.md @@ -9,9 +9,9 @@ ### Command groups in `az redisenterprise` extension |CLI Command Group|Group Swagger name|Commands| |---------|------------|--------| -|az redisenterprise operation-status|OperationsStatus|[commands](#CommandsInOperationsStatus)| |az redisenterprise|RedisEnterprise|[commands](#CommandsInRedisEnterprise)| |az redisenterprise database|Databases|[commands](#CommandsInDatabases)| +|az redisenterprise operation-status|OperationsStatus|[commands](#CommandsInOperationsStatus)| ## COMMANDS ### Commands in `az redisenterprise` group @@ -33,6 +33,7 @@ |[az redisenterprise database update](#DatabasesUpdate)|Update|[Parameters](#ParametersDatabasesUpdate)|[Example](#ExamplesDatabasesUpdate)| |[az redisenterprise database delete](#DatabasesDelete)|Delete|[Parameters](#ParametersDatabasesDelete)|[Example](#ExamplesDatabasesDelete)| |[az redisenterprise database export](#DatabasesExport)|Export|[Parameters](#ParametersDatabasesExport)|[Example](#ExamplesDatabasesExport)| +|[az redisenterprise database force-unlink](#DatabasesForceUnlink)|ForceUnlink|[Parameters](#ParametersDatabasesForceUnlink)|[Example](#ExamplesDatabasesForceUnlink)| |[az redisenterprise database import](#DatabasesImport)|Import|[Parameters](#ParametersDatabasesImport)|[Example](#ExamplesDatabasesImport)| |[az redisenterprise database list-keys](#DatabasesListKeys)|ListKeys|[Parameters](#ParametersDatabasesListKeys)|[Example](#ExamplesDatabasesListKeys)| |[az redisenterprise database regenerate-key](#DatabasesRegenerateKey)|RegenerateKey|[Parameters](#ParametersDatabasesRegenerateKey)|[Example](#ExamplesDatabasesRegenerateKey)| @@ -44,7 +45,6 @@ ## COMMAND DETAILS - ### group `az redisenterprise` #### Command `az redisenterprise list` @@ -66,6 +66,7 @@ az redisenterprise list ##### Parameters |Option|Type|Description|Path (SDK)|Swagger name| |------|----|-----------|----------|------------| + #### Command `az redisenterprise show` ##### Example @@ -159,6 +160,11 @@ az redisenterprise database create --cluster-name "cache1" --client-protocol "En "EnterpriseCluster" --eviction-policy "AllKeysLRU" --modules name="RedisBloom" args="ERROR_RATE 0.00 INITIAL_SIZE 400" \ --modules name="RedisTimeSeries" args="RETENTION_POLICY 20" --modules name="RediSearch" --persistence aof-enabled=true \ aof-frequency="1s" --port 10000 --resource-group "rg1" +az redisenterprise database create --cluster-name "cache1" --client-protocol "Encrypted" --clustering-policy \ +"EnterpriseCluster" --eviction-policy "NoEviction" --group-nickname "groupName" --linked-databases \ +id="/subscriptions/subid1/resourceGroups/rg1/providers/Microsoft.Cache/redisEnterprise/cache1/databases/default" \ +--linked-databases id="/subscriptions/subid2/resourceGroups/rg2/providers/Microsoft.Cache/redisEnterprise/cache2/databa\ +ses/default" --port 10000 --resource-group "rg1" ``` ##### Parameters |Option|Type|Description|Path (SDK)|Swagger name| @@ -171,6 +177,8 @@ aof-frequency="1s" --port 10000 --resource-group "rg1" |**--eviction-policy**|choice|Redis eviction policy - default is VolatileLRU|eviction_policy|evictionPolicy| |**--persistence**|object|Persistence settings|persistence|persistence| |**--modules**|array|Optional set of redis modules to enable in this database - modules can only be added at creation time.|modules|modules| +|**--group-nickname**|string|Name for the group of linked database resources|group_nickname|groupNickname| +|**--linked-databases**|array|List of database resources to link with this database|linked_databases|linkedDatabases| #### Command `az redisenterprise database update` @@ -187,6 +195,8 @@ az redisenterprise database update --cluster-name "cache1" --client-protocol "En |**--client-protocol**|choice|Specifies whether redis clients can connect using TLS-encrypted or plaintext redis protocols. Default is TLS-encrypted.|client_protocol|clientProtocol| |**--eviction-policy**|choice|Redis eviction policy - default is VolatileLRU|eviction_policy|evictionPolicy| |**--persistence**|object|Persistence settings|persistence|persistence| +|**--group-nickname**|string|Name for the group of linked database resources|group_nickname|groupNickname| +|**--linked-databases**|array|List of database resources to link with this database|linked_databases|linkedDatabases| #### Command `az redisenterprise database delete` @@ -214,19 +224,34 @@ BlobContainer?sasKeyParameters" --resource-group "rg1" |**--cluster-name**|string|The name of the RedisEnterprise cluster.|cluster_name|clusterName| |**--sas-uri**|string|SAS URI for the target directory to export to|sas_uri|sasUri| +#### Command `az redisenterprise database force-unlink` + +##### Example +``` +az redisenterprise database force-unlink --cluster-name "cache1" --unlink-ids "/subscriptions/subid2/resourceGroups/rg2/provid\ +ers/Microsoft.Cache/redisEnterprise/cache2/databases/default" --resource-group "rg1" +``` +##### Parameters +|Option|Type|Description|Path (SDK)|Swagger name| +|------|----|-----------|----------|------------| +|**--resource-group-name**|string|The name of the resource group. The name is case insensitive.|resource_group_name|resourceGroupName| +|**--cluster-name**|string|The name of the RedisEnterprise cluster.|cluster_name|clusterName| +|**--unlink-ids**|array|The resource IDs of the database resources to be unlinked.|unlink-ids|unlink-ids| + #### Command `az redisenterprise database import` ##### Example ``` -az redisenterprise database import --cluster-name "cache1" --sas-uri "https://contosostorage.blob.core.window.net/urlto\ -BlobFile?sasKeyParameters" --resource-group "rg1" +az redisenterprise database import --cluster-name "cache1" --sas-uris "https://contosostorage.blob.core.window.net/urlt\ +oBlobFile1?sasKeyParameters" "https://contosostorage.blob.core.window.net/urltoBlobFile2?sasKeyParameters" \ +--resource-group "rg1" ``` ##### Parameters |Option|Type|Description|Path (SDK)|Swagger name| |------|----|-----------|----------|------------| |**--resource-group-name**|string|The name of the resource group. The name is case insensitive.|resource_group_name|resourceGroupName| |**--cluster-name**|string|The name of the RedisEnterprise cluster.|cluster_name|clusterName| -|**--sas-uri**|string|SAS URI for the target blob to import from|sas_uri|sasUri| +|**--sas-uris**|array|SAS URIs for the target blobs to import from|sas_uris|sasUris| #### Command `az redisenterprise database list-keys` diff --git a/src/redisenterprise/setup.py b/src/redisenterprise/setup.py index 1d04316f3f3..decce8d17f4 100644 --- a/src/redisenterprise/setup.py +++ b/src/redisenterprise/setup.py @@ -10,7 +10,7 @@ from setuptools import setup, find_packages # HISTORY.rst entry. -VERSION = '0.1.1' +VERSION = '0.1.2' try: from azext_redisenterprise.manual.version import VERSION except ImportError: @@ -48,7 +48,7 @@ description='Microsoft Azure Command-Line Tools RedisEnterpriseManagementClient Extension', author='Microsoft Corporation', author_email='azpycli@microsoft.com', - url='https://github.com/Azure/azure-cli-extensions/tree/main/src/redisenterprise', + url='https://github.com/Azure/azure-cli-extensions/tree/master/src/redisenterprise', long_description=README + '\n\n' + HISTORY, license='MIT', classifiers=CLASSIFIERS,