From 388fb829a2c3dc764ebf4c7eb048aaddd887516c Mon Sep 17 00:00:00 2001 From: Matt <57731498+mattmsft@users.noreply.github.com> Date: Sun, 22 Oct 2023 19:45:54 -0700 Subject: [PATCH] [Search] Add 2023-11-01 support (#27632) * Demo for search * adding test and recording * rerunning tests * running tests * rerunning tests * more tests * tests * ip rules update; running tests * running tests * comment out test due to service issues * recording tests * update * addressing feedback * trying to fix ttests * working on tests * fix linter errors * more tests * record test --------- Co-authored-by: Kai Ru Co-authored-by: Matt Gotteiner --- .../cli/command_modules/search/__init__.py | 11 + .../command_modules/search/aaz/__init__.py | 6 + .../search/aaz/latest/__init__.py | 6 + .../search/aaz/latest/search/__cmd_group.py | 23 + .../search/aaz/latest/search/__init__.py | 11 + .../aaz/latest/search/service/__cmd_group.py | 23 + .../aaz/latest/search/service/__init__.py | 16 + .../aaz/latest/search/service/_create.py | 559 +++ .../aaz/latest/search/service/_delete.py | 136 + .../search/aaz/latest/search/service/_show.py | 355 ++ .../aaz/latest/search/service/_update.py | 685 +++ .../search/aaz/latest/search/service/_wait.py | 354 ++ .../cli/command_modules/search/commands.py | 14 +- .../cli/command_modules/search/custom.py | 198 +- .../recordings/test_admin_key_show_renew.yaml | 163 +- .../test_list_private_link_resources.yaml | 607 ++- ...test_private_endpoint_connection_crud.yaml | 1829 +++----- .../test_query_key_create_delete_list.yaml | 1359 +++++- .../recordings/test_service_create_auth.yaml | 1448 +------ .../test_service_create_delete_list.yaml | 233 +- .../test_service_create_delete_show.yaml | 1513 +------ .../test_service_create_ip_rules.yaml | 675 ++- .../recordings/test_service_create_msi.yaml | 743 ++-- .../test_service_create_multi_partition.yaml | 983 ++--- .../test_service_create_multi_replica.yaml | 777 ++-- .../test_service_create_private_endpoint.yaml | 898 ++-- .../test_service_create_semantic_search.yaml | 317 ++ .../recordings/test_service_create_skus.yaml | 802 +--- .../recordings/test_service_update.yaml | 3846 +++++++---------- .../test_service_update_ip_rules.yaml | 934 ++-- .../recordings/test_service_update_msi.yaml | 776 ++-- .../test_service_update_private_endpoint.yaml | 2696 ++++++++---- ...est_shared_private_link_resource_crud.yaml | 747 ++-- .../search/tests/latest/test_admin_key.py | 7 +- .../test_private_endpoint_connection.py | 7 +- .../latest/test_private_link_resources.py | 7 +- .../search/tests/latest/test_query_key.py | 7 +- .../search/tests/latest/test_service.py | 79 +- .../test_shared_private_link_resource.py | 8 +- 39 files changed, 11656 insertions(+), 12202 deletions(-) create mode 100644 src/azure-cli/azure/cli/command_modules/search/aaz/__init__.py create mode 100644 src/azure-cli/azure/cli/command_modules/search/aaz/latest/__init__.py create mode 100644 src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/__cmd_group.py create mode 100644 src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/__init__.py create mode 100644 src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/__cmd_group.py create mode 100644 src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/__init__.py create mode 100644 src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_create.py create mode 100644 src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_delete.py create mode 100644 src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_show.py create mode 100644 src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_update.py create mode 100644 src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_wait.py create mode 100644 src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_semantic_search.yaml diff --git a/src/azure-cli/azure/cli/command_modules/search/__init__.py b/src/azure-cli/azure/cli/command_modules/search/__init__.py index 4ed3990ea7c..7cdebba334b 100644 --- a/src/azure-cli/azure/cli/command_modules/search/__init__.py +++ b/src/azure-cli/azure/cli/command_modules/search/__init__.py @@ -21,6 +21,17 @@ def __init__(self, cli_ctx=None): def load_command_table(self, args): from azure.cli.command_modules.search.commands import load_command_table + from azure.cli.core.aaz import load_aaz_command_table + try: + from . import aaz + except ImportError: + aaz = None + if aaz: + load_aaz_command_table( + loader=self, + aaz_pkg_name=aaz.__name__, + args=args + ) load_command_table(self, args) return self.command_table diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/__init__.py b/src/azure-cli/azure/cli/command_modules/search/aaz/__init__.py new file mode 100644 index 00000000000..5757aea3175 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/__init__.py @@ -0,0 +1,6 @@ +# -------------------------------------------------------------------------------------------- +# 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 aaz-dev-tools +# -------------------------------------------------------------------------------------------- diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/__init__.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/__init__.py new file mode 100644 index 00000000000..5757aea3175 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/__init__.py @@ -0,0 +1,6 @@ +# -------------------------------------------------------------------------------------------- +# 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 aaz-dev-tools +# -------------------------------------------------------------------------------------------- diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/__cmd_group.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/__cmd_group.py new file mode 100644 index 00000000000..96e48ae0376 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/__cmd_group.py @@ -0,0 +1,23 @@ +# -------------------------------------------------------------------------------------------- +# 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 aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command_group( + "search", +) +class __CMDGroup(AAZCommandGroup): + """Manage Azure Search services, admin keys and query keys + """ + pass + + +__all__ = ["__CMDGroup"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/__init__.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/__init__.py new file mode 100644 index 00000000000..5a9d61963d6 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/__init__.py @@ -0,0 +1,11 @@ +# -------------------------------------------------------------------------------------------- +# 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 aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from .__cmd_group import * diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/__cmd_group.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/__cmd_group.py new file mode 100644 index 00000000000..f3bc154a807 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/__cmd_group.py @@ -0,0 +1,23 @@ +# -------------------------------------------------------------------------------------------- +# 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 aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command_group( + "search service", +) +class __CMDGroup(AAZCommandGroup): + """Manage Azure Search services + """ + pass + + +__all__ = ["__CMDGroup"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/__init__.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/__init__.py new file mode 100644 index 00000000000..a66fcaa1a56 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/__init__.py @@ -0,0 +1,16 @@ +# -------------------------------------------------------------------------------------------- +# 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 aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from .__cmd_group import * +from ._create import * +from ._delete import * +from ._show import * +from ._update import * +from ._wait import * diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_create.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_create.py new file mode 100644 index 00000000000..5ae92421eaa --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_create.py @@ -0,0 +1,559 @@ +# -------------------------------------------------------------------------------------------- +# 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 aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service create", +) +class Create(AAZCommand): + """Create a search service in the given resource group. If the search service already exists, all properties will be updated with the given values. + """ + + _aaz_info = { + "version": "2023-11-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2023-11-01"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["-n", "--name", "--search-service-name"], + help="The name of the Azure Cognitive Search service to create or update. Search service names must only contain lowercase letters, digits or dashes, cannot use dash as the first two or last one characters, cannot contain consecutive dashes, and must be between 2 and 60 characters in length. Search service names must be globally unique since they are part of the service URI (https://.search.windows.net). You cannot change the service name after the service is created.", + required=True, + ) + + # define Arg Group "AuthOptions" + + _args_schema = cls._args_schema + _args_schema.aad_auth_failure_mode = AAZStrArg( + options=["--aad-auth-failure-mode"], + arg_group="AuthOptions", + help="Describes what response the data plane API of a Search service would send for requests that failed authentication.", + enum={"http401WithBearerChallenge": "http401WithBearerChallenge", "http403": "http403"}, + ) + _args_schema.api_key_only = AAZObjectArg( + options=["--api-key-only"], + arg_group="AuthOptions", + help="Indicates that only the API key needs to be used for authentication.", + blank={}, + ) + + # define Arg Group "Identity" + + _args_schema = cls._args_schema + _args_schema.identity_type = AAZStrArg( + options=["--identity-type"], + arg_group="Identity", + help="The identity type.", + enum={"None": "None", "SystemAssigned": "SystemAssigned"}, + ) + + # define Arg Group "NetworkRuleSet" + + _args_schema = cls._args_schema + _args_schema.ip_rules_internal = AAZListArg( + options=["--ip-rules-internal"], + arg_group="NetworkRuleSet", + help="A list of IP restriction rules that defines the inbound network(s) with allowing access to the search service endpoint. At the meantime, all other public IP networks are blocked by the firewall. These restriction rules are applied only when the 'publicNetworkAccess' of the search service is 'enabled'; otherwise, traffic over public interface is not allowed even with any public IP rules, and private endpoint connections would be the exclusive access method.", + ) + + ip_rules_internal = cls._args_schema.ip_rules_internal + ip_rules_internal.Element = AAZObjectArg() + + _element = cls._args_schema.ip_rules_internal.Element + _element.value = AAZStrArg( + options=["value"], + help="Value corresponding to a single IPv4 address (eg., 123.1.2.3) or an IP range in CIDR format (eg., 123.1.2.3/24) to be allowed.", + ) + + # define Arg Group "Properties" + + _args_schema = cls._args_schema + _args_schema.disable_local_auth = AAZBoolArg( + options=["--disable-local-auth"], + arg_group="Properties", + help="When set to true, calls to the search service will not be permitted to utilize API keys for authentication. This cannot be set to true if 'dataPlaneAuthOptions' are defined.", + nullable=True, + ) + _args_schema.hosting_mode = AAZStrArg( + options=["--hosting-mode"], + arg_group="Properties", + help="Applicable only for the standard3 SKU. You can set this property to enable up to 3 high density partitions that allow up to 1000 indexes, which is much higher than the maximum indexes allowed for any other SKU. For the standard3 SKU, the value is either 'default' or 'highDensity'. For all other SKUs, this value must be 'default'.", + default="default", + enum={"default": "default", "highDensity": "highDensity"}, + ) + _args_schema.partition_count = AAZIntArg( + options=["--partition-count"], + arg_group="Properties", + help="The number of partitions in the search service; if specified, it can be 1, 2, 3, 4, 6, or 12. Values greater than 1 are only valid for standard SKUs. For 'standard3' services with hostingMode set to 'highDensity', the allowed values are between 1 and 3.", + default=1, + fmt=AAZIntArgFormat( + maximum=12, + minimum=1, + ), + ) + _args_schema.public_network_access = AAZStrArg( + options=["--public-access", "--public-network-access"], + arg_group="Properties", + help="This value can be set to 'enabled' to avoid breaking changes on existing customer resources and templates. If set to 'disabled', traffic over public interface is not allowed, and private endpoint connections would be the exclusive access method.", + default="enabled", + enum={"disabled": "disabled", "enabled": "enabled"}, + ) + _args_schema.replica_count = AAZIntArg( + options=["--replica-count"], + arg_group="Properties", + help="The number of replicas in the search service. If specified, it must be a value between 1 and 12 inclusive for standard SKUs or between 1 and 3 inclusive for basic SKU.", + default=1, + fmt=AAZIntArgFormat( + maximum=12, + minimum=1, + ), + ) + _args_schema.semantic_search = AAZStrArg( + options=["--semantic-search"], + arg_group="Properties", + help="Sets options that control the availability of semantic search. This configuration is only possible for certain Azure Cognitive Search SKUs in certain locations.", + nullable=True, + enum={"disabled": "disabled", "free": "free", "standard": "standard"}, + ) + + # define Arg Group "Service" + + _args_schema = cls._args_schema + _args_schema.location = AAZResourceLocationArg( + arg_group="Service", + help="The geo-location where the resource lives", + required=True, + fmt=AAZResourceLocationArgFormat( + resource_group_arg="resource_group", + ), + ) + _args_schema.tags = AAZDictArg( + options=["--tags"], + arg_group="Service", + help="Resource tags.", + ) + + tags = cls._args_schema.tags + tags.Element = AAZStrArg() + + # define Arg Group "Sku" + + _args_schema = cls._args_schema + _args_schema.sku = AAZStrArg( + options=["--sku"], + arg_group="Sku", + help="The SKU of the search service. Valid values include: 'free': Shared service. 'basic': Dedicated service with up to 3 replicas. 'standard': Dedicated service with up to 12 partitions and 12 replicas. 'standard2': Similar to standard, but with more capacity per search unit. 'standard3': The largest Standard offering with up to 12 partitions and 12 replicas (or up to 3 partitions with more indexes if you also set the hostingMode property to 'highDensity'). 'storage_optimized_l1': Supports 1TB per partition, up to 12 partitions. 'storage_optimized_l2': Supports 2TB per partition, up to 12 partitions.'", + required=True, + enum={"basic": "basic", "free": "free", "standard": "standard", "standard2": "standard2", "standard3": "standard3", "storage_optimized_l1": "storage_optimized_l1", "storage_optimized_l2": "storage_optimized_l2"}, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + yield self.ServicesCreateOrUpdate(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class ServicesCreateOrUpdate(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200, 201]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}", + **self.url_parameters + ) + + @property + def method(self): + return "PUT" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-11-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + typ=AAZObjectType, + typ_kwargs={"flags": {"required": True, "client_flatten": True}} + ) + _builder.set_prop("identity", AAZObjectType) + _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) + _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + _builder.set_prop("sku", AAZObjectType, ".", typ_kwargs={"flags": {"required": True}}) + _builder.set_prop("tags", AAZDictType, ".tags") + + identity = _builder.get(".identity") + if identity is not None: + identity.set_prop("type", AAZStrType, ".identity_type", typ_kwargs={"flags": {"required": True}}) + + properties = _builder.get(".properties") + if properties is not None: + properties.set_prop("authOptions", AAZObjectType) + properties.set_prop("disableLocalAuth", AAZBoolType, ".disable_local_auth", typ_kwargs={"nullable": True}) + properties.set_prop("hostingMode", AAZStrType, ".hosting_mode") + properties.set_prop("networkRuleSet", AAZObjectType) + properties.set_prop("partitionCount", AAZIntType, ".partition_count") + properties.set_prop("publicNetworkAccess", AAZStrType, ".public_network_access") + properties.set_prop("replicaCount", AAZIntType, ".replica_count") + properties.set_prop("semanticSearch", AAZStrType, ".semantic_search", typ_kwargs={"nullable": True}) + + auth_options = _builder.get(".properties.authOptions") + if auth_options is not None: + auth_options.set_prop("aadOrApiKey", AAZObjectType) + auth_options.set_prop("apiKeyOnly", AAZObjectType, ".api_key_only") + + aad_or_api_key = _builder.get(".properties.authOptions.aadOrApiKey") + if aad_or_api_key is not None: + aad_or_api_key.set_prop("aadAuthFailureMode", AAZStrType, ".aad_auth_failure_mode") + + network_rule_set = _builder.get(".properties.networkRuleSet") + if network_rule_set is not None: + network_rule_set.set_prop("ipRules", AAZListType, ".ip_rules_internal") + + ip_rules = _builder.get(".properties.networkRuleSet.ipRules") + if ip_rules is not None: + ip_rules.set_elements(AAZObjectType, ".") + + _elements = _builder.get(".properties.networkRuleSet.ipRules[]") + if _elements is not None: + _elements.set_prop("value", AAZStrType, ".value") + + sku = _builder.get(".sku") + if sku is not None: + sku.set_prop("name", AAZStrType, ".sku", typ_kwargs={"flags": {"required": True}}) + + tags = _builder.get(".tags") + if tags is not None: + tags.set_elements(AAZStrType, ".") + + return self.serialize_content(_content_value) + + def on_200_201(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200_201 + ) + + _schema_on_200_201 = None + + @classmethod + def _build_schema_on_200_201(cls): + if cls._schema_on_200_201 is not None: + return cls._schema_on_200_201 + + cls._schema_on_200_201 = AAZObjectType() + + _schema_on_200_201 = cls._schema_on_200_201 + _schema_on_200_201.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.identity = AAZObjectType() + _schema_on_200_201.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200_201.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + _schema_on_200_201.sku = AAZObjectType( + flags={"required": True}, + ) + _schema_on_200_201.tags = AAZDictType() + _schema_on_200_201.type = AAZStrType( + flags={"read_only": True}, + ) + + identity = cls._schema_on_200_201.identity + identity.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + identity.tenant_id = AAZStrType( + serialized_name="tenantId", + flags={"read_only": True}, + ) + identity.type = AAZStrType( + flags={"required": True}, + ) + + properties = cls._schema_on_200_201.properties + properties.auth_options = AAZObjectType( + serialized_name="authOptions", + ) + properties.disable_local_auth = AAZBoolType( + serialized_name="disableLocalAuth", + nullable=True, + ) + properties.encryption_with_cmk = AAZObjectType( + serialized_name="encryptionWithCmk", + ) + properties.hosting_mode = AAZStrType( + serialized_name="hostingMode", + ) + properties.network_rule_set = AAZObjectType( + serialized_name="networkRuleSet", + ) + properties.partition_count = AAZIntType( + serialized_name="partitionCount", + ) + properties.private_endpoint_connections = AAZListType( + serialized_name="privateEndpointConnections", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.public_network_access = AAZStrType( + serialized_name="publicNetworkAccess", + ) + properties.replica_count = AAZIntType( + serialized_name="replicaCount", + ) + properties.semantic_search = AAZStrType( + serialized_name="semanticSearch", + nullable=True, + ) + properties.shared_private_link_resources = AAZListType( + serialized_name="sharedPrivateLinkResources", + flags={"read_only": True}, + ) + properties.status = AAZStrType( + flags={"read_only": True}, + ) + properties.status_details = AAZStrType( + serialized_name="statusDetails", + flags={"read_only": True}, + ) + + auth_options = cls._schema_on_200_201.properties.auth_options + auth_options.aad_or_api_key = AAZObjectType( + serialized_name="aadOrApiKey", + ) + auth_options.api_key_only = AAZObjectType( + serialized_name="apiKeyOnly", + ) + + aad_or_api_key = cls._schema_on_200_201.properties.auth_options.aad_or_api_key + aad_or_api_key.aad_auth_failure_mode = AAZStrType( + serialized_name="aadAuthFailureMode", + ) + + encryption_with_cmk = cls._schema_on_200_201.properties.encryption_with_cmk + encryption_with_cmk.encryption_compliance_status = AAZStrType( + serialized_name="encryptionComplianceStatus", + flags={"read_only": True}, + ) + encryption_with_cmk.enforcement = AAZStrType() + + network_rule_set = cls._schema_on_200_201.properties.network_rule_set + network_rule_set.ip_rules = AAZListType( + serialized_name="ipRules", + ) + + ip_rules = cls._schema_on_200_201.properties.network_rule_set.ip_rules + ip_rules.Element = AAZObjectType() + + _element = cls._schema_on_200_201.properties.network_rule_set.ip_rules.Element + _element.value = AAZStrType() + + private_endpoint_connections = cls._schema_on_200_201.properties.private_endpoint_connections + private_endpoint_connections.Element = AAZObjectType() + + _element = cls._schema_on_200_201.properties.private_endpoint_connections.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200_201.properties.private_endpoint_connections.Element.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + ) + properties.private_endpoint = AAZObjectType( + serialized_name="privateEndpoint", + ) + properties.private_link_service_connection_state = AAZObjectType( + serialized_name="privateLinkServiceConnectionState", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + + private_endpoint = cls._schema_on_200_201.properties.private_endpoint_connections.Element.properties.private_endpoint + private_endpoint.id = AAZStrType() + + private_link_service_connection_state = cls._schema_on_200_201.properties.private_endpoint_connections.Element.properties.private_link_service_connection_state + private_link_service_connection_state.actions_required = AAZStrType( + serialized_name="actionsRequired", + ) + private_link_service_connection_state.description = AAZStrType() + private_link_service_connection_state.status = AAZStrType() + + shared_private_link_resources = cls._schema_on_200_201.properties.shared_private_link_resources + shared_private_link_resources.Element = AAZObjectType() + + _element = cls._schema_on_200_201.properties.shared_private_link_resources.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200_201.properties.shared_private_link_resources.Element.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + ) + properties.private_link_resource_id = AAZStrType( + serialized_name="privateLinkResourceId", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + properties.request_message = AAZStrType( + serialized_name="requestMessage", + ) + properties.resource_region = AAZStrType( + serialized_name="resourceRegion", + ) + properties.status = AAZStrType() + + sku = cls._schema_on_200_201.sku + sku.name = AAZStrType( + flags={"required": True}, + ) + + tags = cls._schema_on_200_201.tags + tags.Element = AAZStrType() + + return cls._schema_on_200_201 + + +class _CreateHelper: + """Helper class for Create""" + + +__all__ = ["Create"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_delete.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_delete.py new file mode 100644 index 00000000000..53b973864b4 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_delete.py @@ -0,0 +1,136 @@ +# -------------------------------------------------------------------------------------------- +# 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 aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service delete", + confirmation="Are you sure you want to perform this operation?", +) +class Delete(AAZCommand): + """Delete a search service in the given resource group, along with its associated resources. + """ + + _aaz_info = { + "version": "2022-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2022-09-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return None + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["-n", "--name", "--search-service-name"], + help="The name of the Azure Cognitive Search service associated with the specified resource group.", + required=True, + id_part="name", + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.ServicesDelete(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + class ServicesDelete(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + if session.http_response.status_code in [204]: + return self.on_204(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}", + **self.url_parameters + ) + + @property + def method(self): + return "DELETE" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2022-09-01", + required=True, + ), + } + return parameters + + def on_200(self, session): + pass + + def on_204(self, session): + pass + + +class _DeleteHelper: + """Helper class for Delete""" + + +__all__ = ["Delete"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_show.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_show.py new file mode 100644 index 00000000000..0ce7e08f32a --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_show.py @@ -0,0 +1,355 @@ +# -------------------------------------------------------------------------------------------- +# 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 aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service show", +) +class Show(AAZCommand): + """Get the search service with the given name in the given resource group. + """ + + _aaz_info = { + "version": "2023-11-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2023-11-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["-n", "--name", "--search-service-name"], + help="The name of the Azure Cognitive Search service associated with the specified resource group.", + required=True, + id_part="name", + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.ServicesGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class ServicesGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-11-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.identity = AAZObjectType() + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + _schema_on_200.sku = AAZObjectType( + flags={"required": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + identity = cls._schema_on_200.identity + identity.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + identity.tenant_id = AAZStrType( + serialized_name="tenantId", + flags={"read_only": True}, + ) + identity.type = AAZStrType( + flags={"required": True}, + ) + + properties = cls._schema_on_200.properties + properties.auth_options = AAZObjectType( + serialized_name="authOptions", + ) + properties.disable_local_auth = AAZBoolType( + serialized_name="disableLocalAuth", + nullable=True, + ) + properties.encryption_with_cmk = AAZObjectType( + serialized_name="encryptionWithCmk", + ) + properties.hosting_mode = AAZStrType( + serialized_name="hostingMode", + ) + properties.network_rule_set = AAZObjectType( + serialized_name="networkRuleSet", + ) + properties.partition_count = AAZIntType( + serialized_name="partitionCount", + ) + properties.private_endpoint_connections = AAZListType( + serialized_name="privateEndpointConnections", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.public_network_access = AAZStrType( + serialized_name="publicNetworkAccess", + ) + properties.replica_count = AAZIntType( + serialized_name="replicaCount", + ) + properties.semantic_search = AAZStrType( + serialized_name="semanticSearch", + nullable=True, + ) + properties.shared_private_link_resources = AAZListType( + serialized_name="sharedPrivateLinkResources", + flags={"read_only": True}, + ) + properties.status = AAZStrType( + flags={"read_only": True}, + ) + properties.status_details = AAZStrType( + serialized_name="statusDetails", + flags={"read_only": True}, + ) + + auth_options = cls._schema_on_200.properties.auth_options + auth_options.aad_or_api_key = AAZObjectType( + serialized_name="aadOrApiKey", + ) + auth_options.api_key_only = AAZObjectType( + serialized_name="apiKeyOnly", + ) + + aad_or_api_key = cls._schema_on_200.properties.auth_options.aad_or_api_key + aad_or_api_key.aad_auth_failure_mode = AAZStrType( + serialized_name="aadAuthFailureMode", + ) + + encryption_with_cmk = cls._schema_on_200.properties.encryption_with_cmk + encryption_with_cmk.encryption_compliance_status = AAZStrType( + serialized_name="encryptionComplianceStatus", + flags={"read_only": True}, + ) + encryption_with_cmk.enforcement = AAZStrType() + + network_rule_set = cls._schema_on_200.properties.network_rule_set + network_rule_set.ip_rules = AAZListType( + serialized_name="ipRules", + ) + + ip_rules = cls._schema_on_200.properties.network_rule_set.ip_rules + ip_rules.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.network_rule_set.ip_rules.Element + _element.value = AAZStrType() + + private_endpoint_connections = cls._schema_on_200.properties.private_endpoint_connections + private_endpoint_connections.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.private_endpoint_connections.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties.private_endpoint_connections.Element.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + ) + properties.private_endpoint = AAZObjectType( + serialized_name="privateEndpoint", + ) + properties.private_link_service_connection_state = AAZObjectType( + serialized_name="privateLinkServiceConnectionState", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + + private_endpoint = cls._schema_on_200.properties.private_endpoint_connections.Element.properties.private_endpoint + private_endpoint.id = AAZStrType() + + private_link_service_connection_state = cls._schema_on_200.properties.private_endpoint_connections.Element.properties.private_link_service_connection_state + private_link_service_connection_state.actions_required = AAZStrType( + serialized_name="actionsRequired", + ) + private_link_service_connection_state.description = AAZStrType() + private_link_service_connection_state.status = AAZStrType() + + shared_private_link_resources = cls._schema_on_200.properties.shared_private_link_resources + shared_private_link_resources.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.shared_private_link_resources.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties.shared_private_link_resources.Element.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + ) + properties.private_link_resource_id = AAZStrType( + serialized_name="privateLinkResourceId", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + properties.request_message = AAZStrType( + serialized_name="requestMessage", + ) + properties.resource_region = AAZStrType( + serialized_name="resourceRegion", + ) + properties.status = AAZStrType() + + sku = cls._schema_on_200.sku + sku.name = AAZStrType( + flags={"required": True}, + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() + + return cls._schema_on_200 + + +class _ShowHelper: + """Helper class for Show""" + + +__all__ = ["Show"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_update.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_update.py new file mode 100644 index 00000000000..eba8ef7fe20 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_update.py @@ -0,0 +1,685 @@ +# -------------------------------------------------------------------------------------------- +# 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 aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service update", +) +class Update(AAZCommand): + """Update a search service in the given resource group. If the search service already exists, all properties will be updated with the given values. + """ + + _aaz_info = { + "version": "2022-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2022-09-01"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + AZ_SUPPORT_GENERIC_UPDATE = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["-n", "--name", "--search-service-name"], + help="The name of the Azure Cognitive Search service associated with the specified resource group.", + required=True, + id_part="name", + ) + + # define Arg Group "AuthOptions" + + _args_schema = cls._args_schema + _args_schema.aad_auth_failure_mode = AAZStrArg( + options=["--aad-auth-failure-mode"], + arg_group="AuthOptions", + help="Describes what response the data plane API of a Search service would send for requests that failed authentication.", + nullable=True, + enum={"http401WithBearerChallenge": "http401WithBearerChallenge", "http403": "http403"}, + ) + _args_schema.api_key_only = AAZObjectArg( + options=["--api-key-only"], + arg_group="AuthOptions", + help="Indicates that only the API key needs to be used for authentication.", + nullable=True, + blank={}, + ) + + # define Arg Group "Identity" + + _args_schema = cls._args_schema + _args_schema.identity_type = AAZStrArg( + options=["--identity-type"], + arg_group="Identity", + help="The identity type.", + enum={"None": "None", "SystemAssigned": "SystemAssigned"}, + ) + + # define Arg Group "NetworkRuleSet" + + _args_schema = cls._args_schema + _args_schema.ip_rules_internal = AAZListArg( + options=["--ip-rules-internal"], + arg_group="NetworkRuleSet", + help="A list of IP restriction rules that defines the inbound network(s) with allowing access to the search service endpoint. At the meantime, all other public IP networks are blocked by the firewall. These restriction rules are applied only when the 'publicNetworkAccess' of the search service is 'enabled'; otherwise, traffic over public interface is not allowed even with any public IP rules, and private endpoint connections would be the exclusive access method.", + nullable=True, + ) + + ip_rules_internal = cls._args_schema.ip_rules_internal + ip_rules_internal.Element = AAZObjectArg( + nullable=True, + ) + + _element = cls._args_schema.ip_rules_internal.Element + _element.value = AAZStrArg( + options=["value"], + help="Value corresponding to a single IPv4 address (eg., 123.1.2.3) or an IP range in CIDR format (eg., 123.1.2.3/24) to be allowed.", + nullable=True, + ) + + # define Arg Group "Properties" + + _args_schema = cls._args_schema + _args_schema.disable_local_auth = AAZBoolArg( + options=["--disable-local-auth"], + arg_group="Properties", + help="When set to true, calls to the search service will not be permitted to utilize API keys for authentication. This cannot be set to true if 'dataPlaneAuthOptions' are defined.", + nullable=True, + ) + _args_schema.partition_count = AAZIntArg( + options=["--partition-count"], + arg_group="Properties", + help="The number of partitions in the search service; if specified, it can be 1, 2, 3, 4, 6, or 12. Values greater than 1 are only valid for standard SKUs. For 'standard3' services with hostingMode set to 'highDensity', the allowed values are between 1 and 3.", + nullable=True, + fmt=AAZIntArgFormat( + maximum=12, + minimum=1, + ), + ) + _args_schema.public_network_access = AAZStrArg( + options=["--public-access", "--public-network-access"], + arg_group="Properties", + help="This value can be set to 'enabled' to avoid breaking changes on existing customer resources and templates. If set to 'disabled', traffic over public interface is not allowed, and private endpoint connections would be the exclusive access method.", + nullable=True, + enum={"disabled": "disabled", "enabled": "enabled"}, + ) + _args_schema.replica_count = AAZIntArg( + options=["--replica-count"], + arg_group="Properties", + help="The number of replicas in the search service. If specified, it must be a value between 1 and 12 inclusive for standard SKUs or between 1 and 3 inclusive for basic SKU.", + nullable=True, + fmt=AAZIntArgFormat( + maximum=12, + minimum=1, + ), + ) + _args_schema.semantic_search = AAZStrArg( + options=["--semantic-search"], + arg_group="Properties", + help="Sets options that control the availability of semantic search. This configuration is only possible for certain Azure Cognitive Search SKUs in certain locations.", + nullable=True, + enum={"disabled": "disabled", "free": "free", "standard": "standard"}, + ) + + # define Arg Group "Service" + + _args_schema = cls._args_schema + _args_schema.tags = AAZDictArg( + options=["--tags"], + arg_group="Service", + help="Resource tags.", + nullable=True, + ) + + tags = cls._args_schema.tags + tags.Element = AAZStrArg( + nullable=True, + ) + + # define Arg Group "Sku" + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.ServicesGet(ctx=self.ctx)() + self.pre_instance_update(self.ctx.vars.instance) + self.InstanceUpdateByJson(ctx=self.ctx)() + self.InstanceUpdateByGeneric(ctx=self.ctx)() + self.post_instance_update(self.ctx.vars.instance) + yield self.ServicesCreateOrUpdate(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + @register_callback + def pre_instance_update(self, instance): + pass + + @register_callback + def post_instance_update(self, instance): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class ServicesGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2022-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + _UpdateHelper._build_schema_search_service_read(cls._schema_on_200) + + return cls._schema_on_200 + + class ServicesCreateOrUpdate(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200, 201]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}", + **self.url_parameters + ) + + @property + def method(self): + return "PUT" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2022-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + value=self.ctx.vars.instance, + ) + + return self.serialize_content(_content_value) + + def on_200_201(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200_201 + ) + + _schema_on_200_201 = None + + @classmethod + def _build_schema_on_200_201(cls): + if cls._schema_on_200_201 is not None: + return cls._schema_on_200_201 + + cls._schema_on_200_201 = AAZObjectType() + _UpdateHelper._build_schema_search_service_read(cls._schema_on_200_201) + + return cls._schema_on_200_201 + + class InstanceUpdateByJson(AAZJsonInstanceUpdateOperation): + + def __call__(self, *args, **kwargs): + self._update_instance(self.ctx.vars.instance) + + def _update_instance(self, instance): + _instance_value, _builder = self.new_content_builder( + self.ctx.args, + value=instance, + typ=AAZObjectType + ) + _builder.set_prop("identity", AAZObjectType) + _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + _builder.set_prop("sku", AAZObjectType, ".", typ_kwargs={"flags": {"required": True}}) + _builder.set_prop("tags", AAZDictType, ".tags") + + identity = _builder.get(".identity") + if identity is not None: + identity.set_prop("type", AAZStrType, ".identity_type", typ_kwargs={"flags": {"required": True}}) + + properties = _builder.get(".properties") + if properties is not None: + properties.set_prop("authOptions", AAZObjectType) + properties.set_prop("disableLocalAuth", AAZBoolType, ".disable_local_auth", typ_kwargs={"nullable": True}) + properties.set_prop("networkRuleSet", AAZObjectType) + properties.set_prop("partitionCount", AAZIntType, ".partition_count") + properties.set_prop("publicNetworkAccess", AAZStrType, ".public_network_access") + properties.set_prop("replicaCount", AAZIntType, ".replica_count") + properties.set_prop("semanticSearch", AAZStrType, ".semantic_search", typ_kwargs={"nullable": True}) + + auth_options = _builder.get(".properties.authOptions") + if auth_options is not None: + auth_options.set_prop("aadOrApiKey", AAZObjectType) + auth_options.set_prop("apiKeyOnly", AAZObjectType, ".api_key_only") + + aad_or_api_key = _builder.get(".properties.authOptions.aadOrApiKey") + if aad_or_api_key is not None: + aad_or_api_key.set_prop("aadAuthFailureMode", AAZStrType, ".aad_auth_failure_mode") + + network_rule_set = _builder.get(".properties.networkRuleSet") + if network_rule_set is not None: + network_rule_set.set_prop("ipRules", AAZListType, ".ip_rules_internal") + + ip_rules = _builder.get(".properties.networkRuleSet.ipRules") + if ip_rules is not None: + ip_rules.set_elements(AAZObjectType, ".") + + _elements = _builder.get(".properties.networkRuleSet.ipRules[]") + if _elements is not None: + _elements.set_prop("value", AAZStrType, ".value") + + tags = _builder.get(".tags") + if tags is not None: + tags.set_elements(AAZStrType, ".") + + return _instance_value + + class InstanceUpdateByGeneric(AAZGenericInstanceUpdateOperation): + + def __call__(self, *args, **kwargs): + self._update_instance_by_generic( + self.ctx.vars.instance, + self.ctx.generic_update_args + ) + + +class _UpdateHelper: + """Helper class for Update""" + + _schema_search_service_read = None + + @classmethod + def _build_schema_search_service_read(cls, _schema): + if cls._schema_search_service_read is not None: + _schema.id = cls._schema_search_service_read.id + _schema.identity = cls._schema_search_service_read.identity + _schema.location = cls._schema_search_service_read.location + _schema.name = cls._schema_search_service_read.name + _schema.properties = cls._schema_search_service_read.properties + _schema.sku = cls._schema_search_service_read.sku + _schema.tags = cls._schema_search_service_read.tags + _schema.type = cls._schema_search_service_read.type + return + + cls._schema_search_service_read = _schema_search_service_read = AAZObjectType() + + search_service_read = _schema_search_service_read + search_service_read.id = AAZStrType( + flags={"read_only": True}, + ) + search_service_read.identity = AAZObjectType() + search_service_read.location = AAZStrType( + flags={"required": True}, + ) + search_service_read.name = AAZStrType( + flags={"read_only": True}, + ) + search_service_read.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + search_service_read.sku = AAZObjectType( + flags={"required": True}, + ) + search_service_read.tags = AAZDictType() + search_service_read.type = AAZStrType( + flags={"read_only": True}, + ) + + identity = _schema_search_service_read.identity + identity.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + identity.tenant_id = AAZStrType( + serialized_name="tenantId", + flags={"read_only": True}, + ) + identity.type = AAZStrType( + flags={"required": True}, + ) + + properties = _schema_search_service_read.properties + properties.auth_options = AAZObjectType( + serialized_name="authOptions", + ) + properties.disable_local_auth = AAZBoolType( + serialized_name="disableLocalAuth", + nullable=True, + ) + properties.encryption_with_cmk = AAZObjectType( + serialized_name="encryptionWithCmk", + ) + properties.hosting_mode = AAZStrType( + serialized_name="hostingMode", + ) + properties.network_rule_set = AAZObjectType( + serialized_name="networkRuleSet", + ) + properties.partition_count = AAZIntType( + serialized_name="partitionCount", + ) + properties.private_endpoint_connections = AAZListType( + serialized_name="privateEndpointConnections", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.public_network_access = AAZStrType( + serialized_name="publicNetworkAccess", + ) + properties.replica_count = AAZIntType( + serialized_name="replicaCount", + ) + properties.semantic_search = AAZStrType( + serialized_name="semanticSearch", + nullable=True, + ) + properties.shared_private_link_resources = AAZListType( + serialized_name="sharedPrivateLinkResources", + flags={"read_only": True}, + ) + properties.status = AAZStrType( + flags={"read_only": True}, + ) + properties.status_details = AAZStrType( + serialized_name="statusDetails", + flags={"read_only": True}, + ) + + auth_options = _schema_search_service_read.properties.auth_options + auth_options.aad_or_api_key = AAZObjectType( + serialized_name="aadOrApiKey", + ) + auth_options.api_key_only = AAZObjectType( + serialized_name="apiKeyOnly", + ) + + aad_or_api_key = _schema_search_service_read.properties.auth_options.aad_or_api_key + aad_or_api_key.aad_auth_failure_mode = AAZStrType( + serialized_name="aadAuthFailureMode", + ) + + encryption_with_cmk = _schema_search_service_read.properties.encryption_with_cmk + encryption_with_cmk.encryption_compliance_status = AAZStrType( + serialized_name="encryptionComplianceStatus", + flags={"read_only": True}, + ) + encryption_with_cmk.enforcement = AAZStrType() + + network_rule_set = _schema_search_service_read.properties.network_rule_set + network_rule_set.ip_rules = AAZListType( + serialized_name="ipRules", + ) + + ip_rules = _schema_search_service_read.properties.network_rule_set.ip_rules + ip_rules.Element = AAZObjectType() + + _element = _schema_search_service_read.properties.network_rule_set.ip_rules.Element + _element.value = AAZStrType() + + private_endpoint_connections = _schema_search_service_read.properties.private_endpoint_connections + private_endpoint_connections.Element = AAZObjectType() + + _element = _schema_search_service_read.properties.private_endpoint_connections.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = _schema_search_service_read.properties.private_endpoint_connections.Element.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + ) + properties.private_endpoint = AAZObjectType( + serialized_name="privateEndpoint", + ) + properties.private_link_service_connection_state = AAZObjectType( + serialized_name="privateLinkServiceConnectionState", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + + private_endpoint = _schema_search_service_read.properties.private_endpoint_connections.Element.properties.private_endpoint + private_endpoint.id = AAZStrType() + + private_link_service_connection_state = _schema_search_service_read.properties.private_endpoint_connections.Element.properties.private_link_service_connection_state + private_link_service_connection_state.actions_required = AAZStrType( + serialized_name="actionsRequired", + ) + private_link_service_connection_state.description = AAZStrType() + private_link_service_connection_state.status = AAZStrType() + + shared_private_link_resources = _schema_search_service_read.properties.shared_private_link_resources + shared_private_link_resources.Element = AAZObjectType() + + _element = _schema_search_service_read.properties.shared_private_link_resources.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = _schema_search_service_read.properties.shared_private_link_resources.Element.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + ) + properties.private_link_resource_id = AAZStrType( + serialized_name="privateLinkResourceId", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + properties.request_message = AAZStrType( + serialized_name="requestMessage", + ) + properties.resource_region = AAZStrType( + serialized_name="resourceRegion", + ) + properties.status = AAZStrType() + + sku = _schema_search_service_read.sku + sku.name = AAZStrType( + flags={"required": True}, + ) + + tags = _schema_search_service_read.tags + tags.Element = AAZStrType() + + _schema.id = cls._schema_search_service_read.id + _schema.identity = cls._schema_search_service_read.identity + _schema.location = cls._schema_search_service_read.location + _schema.name = cls._schema_search_service_read.name + _schema.properties = cls._schema_search_service_read.properties + _schema.sku = cls._schema_search_service_read.sku + _schema.tags = cls._schema_search_service_read.tags + _schema.type = cls._schema_search_service_read.type + + +__all__ = ["Update"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_wait.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_wait.py new file mode 100644 index 00000000000..c1da7fc209f --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_wait.py @@ -0,0 +1,354 @@ +# -------------------------------------------------------------------------------------------- +# 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 aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service wait", +) +class Wait(AAZWaitCommand): + """Place the CLI in a waiting state until a condition is met. + """ + + _aaz_info = { + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2023-11-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["-n", "--name", "--search-service-name"], + help="The name of the Azure Cognitive Search service associated with the specified resource group.", + required=True, + id_part="name", + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.ServicesGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=False) + return result + + class ServicesGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-11-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.identity = AAZObjectType() + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + _schema_on_200.sku = AAZObjectType( + flags={"required": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + identity = cls._schema_on_200.identity + identity.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + identity.tenant_id = AAZStrType( + serialized_name="tenantId", + flags={"read_only": True}, + ) + identity.type = AAZStrType( + flags={"required": True}, + ) + + properties = cls._schema_on_200.properties + properties.auth_options = AAZObjectType( + serialized_name="authOptions", + ) + properties.disable_local_auth = AAZBoolType( + serialized_name="disableLocalAuth", + nullable=True, + ) + properties.encryption_with_cmk = AAZObjectType( + serialized_name="encryptionWithCmk", + ) + properties.hosting_mode = AAZStrType( + serialized_name="hostingMode", + ) + properties.network_rule_set = AAZObjectType( + serialized_name="networkRuleSet", + ) + properties.partition_count = AAZIntType( + serialized_name="partitionCount", + ) + properties.private_endpoint_connections = AAZListType( + serialized_name="privateEndpointConnections", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.public_network_access = AAZStrType( + serialized_name="publicNetworkAccess", + ) + properties.replica_count = AAZIntType( + serialized_name="replicaCount", + ) + properties.semantic_search = AAZStrType( + serialized_name="semanticSearch", + nullable=True, + ) + properties.shared_private_link_resources = AAZListType( + serialized_name="sharedPrivateLinkResources", + flags={"read_only": True}, + ) + properties.status = AAZStrType( + flags={"read_only": True}, + ) + properties.status_details = AAZStrType( + serialized_name="statusDetails", + flags={"read_only": True}, + ) + + auth_options = cls._schema_on_200.properties.auth_options + auth_options.aad_or_api_key = AAZObjectType( + serialized_name="aadOrApiKey", + ) + auth_options.api_key_only = AAZObjectType( + serialized_name="apiKeyOnly", + ) + + aad_or_api_key = cls._schema_on_200.properties.auth_options.aad_or_api_key + aad_or_api_key.aad_auth_failure_mode = AAZStrType( + serialized_name="aadAuthFailureMode", + ) + + encryption_with_cmk = cls._schema_on_200.properties.encryption_with_cmk + encryption_with_cmk.encryption_compliance_status = AAZStrType( + serialized_name="encryptionComplianceStatus", + flags={"read_only": True}, + ) + encryption_with_cmk.enforcement = AAZStrType() + + network_rule_set = cls._schema_on_200.properties.network_rule_set + network_rule_set.ip_rules = AAZListType( + serialized_name="ipRules", + ) + + ip_rules = cls._schema_on_200.properties.network_rule_set.ip_rules + ip_rules.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.network_rule_set.ip_rules.Element + _element.value = AAZStrType() + + private_endpoint_connections = cls._schema_on_200.properties.private_endpoint_connections + private_endpoint_connections.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.private_endpoint_connections.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties.private_endpoint_connections.Element.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + ) + properties.private_endpoint = AAZObjectType( + serialized_name="privateEndpoint", + ) + properties.private_link_service_connection_state = AAZObjectType( + serialized_name="privateLinkServiceConnectionState", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + + private_endpoint = cls._schema_on_200.properties.private_endpoint_connections.Element.properties.private_endpoint + private_endpoint.id = AAZStrType() + + private_link_service_connection_state = cls._schema_on_200.properties.private_endpoint_connections.Element.properties.private_link_service_connection_state + private_link_service_connection_state.actions_required = AAZStrType( + serialized_name="actionsRequired", + ) + private_link_service_connection_state.description = AAZStrType() + private_link_service_connection_state.status = AAZStrType() + + shared_private_link_resources = cls._schema_on_200.properties.shared_private_link_resources + shared_private_link_resources.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.shared_private_link_resources.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties.shared_private_link_resources.Element.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + ) + properties.private_link_resource_id = AAZStrType( + serialized_name="privateLinkResourceId", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + properties.request_message = AAZStrType( + serialized_name="requestMessage", + ) + properties.resource_region = AAZStrType( + serialized_name="resourceRegion", + ) + properties.status = AAZStrType() + + sku = cls._schema_on_200.sku + sku.name = AAZStrType( + flags={"required": True}, + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() + + return cls._schema_on_200 + + +class _WaitHelper: + """Helper class for Wait""" + + +__all__ = ["Wait"] diff --git a/src/azure-cli/azure/cli/command_modules/search/commands.py b/src/azure-cli/azure/cli/command_modules/search/commands.py index ad9bdf49b9e..7e1f79ca9a0 100644 --- a/src/azure-cli/azure/cli/command_modules/search/commands.py +++ b/src/azure-cli/azure/cli/command_modules/search/commands.py @@ -44,11 +44,15 @@ def load_command_table(self, _): with self.command_group('search service', search_services_sdk) as g: # right now list_by_resource_group is the only way to list, so directly map to list_by_resource_group. g.command('list', 'list_by_resource_group') - g.show_command('show', 'get') - g.command('delete', 'delete', confirmation=True) - g.generic_update_command('update', supports_no_wait=True, custom_func_name='update_search_service', setter_name='begin_create_or_update', setter_arg_name='service') - g.custom_command('create', 'create_search_service', supports_no_wait=True) - g.wait_command('wait') + # g.show_command('show', 'get') + # g.command('delete', 'delete', confirmation=True) + # g.generic_update_command('update', supports_no_wait=True, custom_func_name='update_search_service', setter_name='begin_create_or_update', setter_arg_name='service') + # g.custom_command('create', 'create_search_service', supports_no_wait=True) + # g.wait_command('wait') + + from .custom import SearchServiceCreate, SearchServiceUpdate + self.command_table["search service create"] = SearchServiceCreate(loader=self) + self.command_table["search service update"] = SearchServiceUpdate(loader=self) with self.command_group('search private-endpoint-connection', search_private_endpoint_connections_sdk) as g: g.command('list', 'list_by_service') diff --git a/src/azure-cli/azure/cli/command_modules/search/custom.py b/src/azure-cli/azure/cli/command_modules/search/custom.py index a5569fa9b03..5197a76aeac 100644 --- a/src/azure-cli/azure/cli/command_modules/search/custom.py +++ b/src/azure-cli/azure/cli/command_modules/search/custom.py @@ -4,7 +4,9 @@ # -------------------------------------------------------------------------------------------- from knack.log import get_logger from azure.cli.core.util import sdk_no_wait -from azure.cli.core.azclierror import UnrecognizedArgumentError +from azure.cli.core.azclierror import (UnrecognizedArgumentError, MutuallyExclusiveArgumentError, + RequiredArgumentMissingError) +from .aaz.latest.search.service import Create as _SearchServiceCreate, Update as _SearchServiceUpdate logger = get_logger(__name__) @@ -17,79 +19,121 @@ def _get_resource_group_location(cli_ctx, resource_group_name): return client.resource_groups.get(resource_group_name).location -# pylint: disable=too-many-locals -def create_search_service(cmd, resource_group_name, search_service_name, sku, location=None, partition_count=0, - replica_count=0, public_network_access="enabled", ip_rules=None, identity_type=None, - hosting_mode="default", disable_local_auth=None, auth_options=None, - aad_auth_failure_mode=None, no_wait=False): - """ - Creates a Search service in the given resource group. - - :param resource_group_name: Name of resource group. - :param search_service_name: Name of the search service. - :param sku: The SKU of the search service, which determines price tier and capacity limits. - :param location: Geographic location of the resource. - :param partition_count: Number of partitions in the search service. - :param replica_count: Number of replicas in the search service. - :param public_network_access: Public accessibility to the search service; - allowed values are "enabled" or "disabled". - :param ip_rules: Public IP(v4) addresses or CIDR ranges to the search service, seperated by comma or semicolon; - these IP rules are applicable only when --public-network-access is "enabled". - :param identity_type: The identity type; possible values include: "None", "SystemAssigned". - :param hosting_mode: The hosting mode; possible values include: "default", "highDensity"; - Note that "highDensity" is only applicable to the standard3 SKU. - :param disable_local_auth: If calls to the search service will not be permitted to utilize API keys for - authentication; - This cannot be combined with auth_options. - :param auth_options: Options for authenticating calls to the search service; - possible values include"aadOrApiKey", "apiKeyOnly"; - This cannot be combined with disable_local_auth. - :param aad_auth_failure_mode: Describes response code from calls to the search service that - failed authentication; possible values include "http401WithBearerChallenge", "http403"; - This cannot be combined with disable_local_auth. - """ - from azure.mgmt.search.models import SearchService, Sku, NetworkRuleSet, IpRule, Identity - from azure.cli.command_modules.search._client_factory import cf_search_services - import re - - _client = cf_search_services(cmd.cli_ctx, None) - if location is None: - location = _get_resource_group_location(cmd.cli_ctx, resource_group_name) - - _search = SearchService(location=location, sku=Sku(name=sku.lower())) - - replica_count = int(replica_count) - partition_count = int(partition_count) - if replica_count > 0: - _search.replica_count = replica_count - if partition_count > 0: - _search.partition_count = partition_count - if (public_network_access.lower() not in ["enabled", "disabled"]): - raise UnrecognizedArgumentError( - "SearchService.PublicNetworkAccess: only [""enabled"", ""disabled""] are allowed") - if (hosting_mode not in ["default", "highDensity"]): - raise UnrecognizedArgumentError( - "SearchService.HostingMode: only [""default"", ""highDensity""] are allowed") - if (hosting_mode == "highDensity" and sku.lower() != "standard3"): - raise UnrecognizedArgumentError( - "SearchService.HostingMode: ""highDensity"" is only allowed when sku is ""standard3""") - - _search.public_network_access = public_network_access - _search.hosting_mode = hosting_mode - - if ip_rules: - _ip_rules = [] - _ip_rules_array = re.split(';|,', ip_rules) - for _ip_rule in _ip_rules_array: - if _ip_rule: - _ip_rules.append(IpRule(value=_ip_rule)) - _search.network_rule_set = NetworkRuleSet(ip_rules=_ip_rules) - if identity_type: - _identity = Identity(type=identity_type) - _search.identity = _identity - setup_search_auth(_search, disable_local_auth, auth_options, aad_auth_failure_mode) - - return sdk_no_wait(no_wait, _client.begin_create_or_update, resource_group_name, search_service_name, _search) +class SearchServiceCreate(_SearchServiceCreate): + + # pylint: disable=protected-access + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + from azure.cli.core.aaz import AAZStrArg + args_schema = super()._build_arguments_schema(*args, **kwargs) + args_schema.ip_rules = AAZStrArg( + arg_group="Properties", + options=['--ip-rules'], + help="Some help" + ) + args_schema.auth_options = AAZStrArg( + arg_group="Properties", + options=['--auth-options'], + help="Some Help", + enum=["aadOrApiKey", "apiKeyOnly"], + ) + args_schema.ip_rules_internal._registered = False + args_schema.api_key_only._registered = False + return args_schema + + def pre_operations(self): + from azure.cli.core.aaz import has_value + import re + args = self.ctx.args + + if args.hosting_mode == "highDensity" and args.sku != "standard3": + raise UnrecognizedArgumentError( + "SearchService.HostingMode: ""highDensity"" is only allowed when sku is ""standard3""") + + if has_value(args.ip_rules): + ip_rules = re.split(';|,', args.ip_rules.to_serialized_data()) + args.ip_rules_internal = [{"value": ip_rule} for ip_rule in ip_rules] + + if has_value(args.disable_local_auth) and args.disable_local_auth.to_serialized_data() is True: + if has_value(args.auth_options): + raise MutuallyExclusiveArgumentError("Both the DisableLocalAuth and AuthOptions parameters " + "can't be given at the same time") + if has_value(args.aad_auth_failure_mode): + raise MutuallyExclusiveArgumentError("Both the DisableLocalAuth and AadAuthFailureMode parameters " + "can't be given at the same time") + if has_value(args.auth_options): + if args.auth_options == "apiKeyOnly": + if has_value(args.aad_auth_failure_mode): + raise MutuallyExclusiveArgumentError( + "Both an AuthOptions value of apiKeyOnly and an AadAuthFailureMode " + "can't be given at the same time") + args.api_key_only = {} + elif args.auth_options == "aadOrApiKey" and not has_value(args.aad_auth_failure_mode): + raise RequiredArgumentMissingError("An AuthOptions value of aadOrApiKey requires " + "an AadAuthFailureMode parameter") + + +class SearchServiceUpdate(_SearchServiceUpdate): + + # pylint: disable=protected-access + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + from azure.cli.core.aaz import AAZStrArg + args_schema = super()._build_arguments_schema(*args, **kwargs) + args_schema.ip_rules = AAZStrArg( + arg_group="Properties", + options=['--ip-rules'], + help="Some help", + nullable=True, # allow to remove all the value when it's assigned by null + ) + args_schema.auth_options = AAZStrArg( + arg_group="Properties", + options=['--auth-options'], + help="Some Help", + enum=["aadOrApiKey", "apiKeyOnly"], + ) + + args_schema.ip_rules_internal._registered = False + args_schema.api_key_only._registered = False + return args_schema + + def pre_operations(self): + from azure.cli.core.aaz import has_value + import re + args = self.ctx.args + + if has_value(args.ip_rules): + if args.ip_rules.to_serialized_data() is None or args.ip_rules in [';', ',']: + # cleanup all ip_rules + args.ip_rules_internal = None + else: + ip_rules = re.split(';|,', args.ip_rules.to_serialized_data()) + args.ip_rules_internal = [{"value": ip_rule} for ip_rule in ip_rules] + + if has_value(args.disable_local_auth) and args.disable_local_auth.to_serialized_data() is True: + if has_value(args.auth_options): + raise MutuallyExclusiveArgumentError("Both the DisableLocalAuth and AuthOptions parameters " + "can't be given at the same time") + if has_value(args.aad_auth_failure_mode): + raise MutuallyExclusiveArgumentError("Both the DisableLocalAuth and AadAuthFailureMode parameters " + "can't be given at the same time") + if has_value(args.auth_options): + if args.auth_options == "apiKeyOnly": + if has_value(args.aad_auth_failure_mode): + raise MutuallyExclusiveArgumentError( + "Both an AuthOptions value of apiKeyOnly and an AadAuthFailureMode " + "can't be given at the same time") + args.api_key_only = {} + elif args.auth_options == "aadOrApiKey" and not has_value(args.aad_auth_failure_mode): + raise RequiredArgumentMissingError("An AuthOptions value of aadOrApiKey requires " + "an AadAuthFailureMode parameter") + + def pre_instance_update(self, instance): + from azure.cli.core.aaz import has_value + args = self.ctx.args + if has_value(args.auth_options): + # clean up current auth_options + instance.properties.auth_options = {} def update_search_service(instance, partition_count=0, replica_count=0, public_network_access=None, @@ -267,19 +311,21 @@ def setup_search_auth(instance, disable_local_auth, auth_options, aad_auth_failu possible values include "http401WithBearerChallenge", "http403"; This cannot be combined with disable_local_auth. """ - from azure.cli.core.azclierror import MutuallyExclusiveArgumentError, RequiredArgumentMissingError - + # Done in aaz by default if (disable_local_auth is not None and disable_local_auth not in [True, False]): raise UnrecognizedArgumentError( "SearchService.DisableLocalAuth: only [True, False] are allowed") + # Done by argument define if (auth_options is not None and auth_options not in ["aadOrApiKey", "apiKeyOnly"]): raise UnrecognizedArgumentError( "SearchService.AuthOptions: only [""aadOrApiKey"", ""apiKeyOnly""] are allowed") + # Done in aaz by default if (aad_auth_failure_mode is not None and aad_auth_failure_mode not in ["http401WithBearerChallenge", "http403"]): raise UnrecognizedArgumentError( "SearchService.AuthOptions.AadAuthFailureMode: only " "[""http401WithBearerChallenge"", ""http403""] are allowed") + # Done in pre_operations if disable_local_auth and auth_options: raise MutuallyExclusiveArgumentError("Both the DisableLocalAuth and AuthOptions parameters " "can't be given at the same time") diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_admin_key_show_renew.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_admin_key_show_renew.yaml index d2491f09375..62ea5177bb9 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_admin_key_show_renew.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_admin_key_show_renew.yaml @@ -13,36 +13,39 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T10:38:22Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_admin_key_show_renew","date":"2023-10-18T18:47:40Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '390' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:38:23 GMT + - Wed, 18 Oct 2023 18:47:41 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 83F41182EE794C1EBDFF814A4C9239C6 Ref B: CO6AA3150220023 Ref C: 2023-10-18T18:47:41Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "sku": {"name": "standard"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "enabled"}}' + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": + 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "standard"}}' headers: Accept: - application/json @@ -53,45 +56,50 @@ interactions: Connection: - keep-alive Content-Length: - - '167' + - '172' Content-Type: - application/json ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '610' + - '732' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:38:32 GMT + - Wed, 18 Oct 2023 18:47:46 GMT elapsed-time: - - '7377' + - '3228' etag: - - W/"datetime'2023-03-13T10%3A38%3A32.6768217Z'" + - W/"datetime'2023-10-18T18%3A47%3A45.8907474Z'" expires: - '-1' pragma: - no-cache request-id: - - 2e6a4d9c-c18b-11ed-a808-b7b53f28d5a3 + - d158f85b-6de6-11ee-bfe3-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/41526a31-0677-4db4-be27-4562cda31c62 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1188' + x-msedge-ref: + - 'Ref A: 27B8F9C1DC7B4B16A5F8D7B6A6E2EB36 Ref B: CO6AA3150219049 Ref C: 2023-10-18T18:47:42Z' status: code: 201 message: Created @@ -111,13 +119,12 @@ interactions: ParameterSetName: - --service-name -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/listAdminKeys?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/listAdminKeys?api-version=2022-09-01 response: body: - string: '{"primaryKey":"rBOe8RlRMjGs3Z1yRt4DpT6BKLadmiz8eSmcUVBWwpAzSeCRh4ch","secondaryKey":"0AD5DaI169eawo3NXuXaHJyXolqoI7hUZH9ZXjFgwwAzSeCG4u16"}' + string: '{"primaryKey":"4wc7806EerlpS9tesmwSdzJrNGbC9ZjSf6sVHCLWg9AzSeCBEMWP","secondaryKey":"ESkVchc7ZfPOHlMMhboLE3ZI7ajWdImZz4v52qMGOKAzSeCao3qA"}' headers: cache-control: - no-cache @@ -126,25 +133,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:38:33 GMT + - Wed, 18 Oct 2023 18:47:47 GMT elapsed-time: - - '126' + - '207' expires: - '-1' pragma: - no-cache request-id: - - 33d4d02c-c18b-11ed-a808-b7b53f28d5a3 + - d469554d-6de6-11ee-bfc6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: 80C2AA592A64436B8BE217FE795BAC4F Ref B: CO6AA3150220009 Ref C: 2023-10-18T18:47:46Z' status: code: 200 message: OK @@ -164,13 +171,12 @@ interactions: ParameterSetName: - --service-name -g --key-kind User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/regenerateAdminKey/primary?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/regenerateAdminKey/primary?api-version=2022-09-01 response: body: - string: '{"primaryKey":"XObeEv0CidBII6QM2ZR5vOTuC7A9I4I0MYCMyddjlTAzSeA5WaHN","secondaryKey":"0AD5DaI169eawo3NXuXaHJyXolqoI7hUZH9ZXjFgwwAzSeCG4u16"}' + string: '{"primaryKey":"pea8tgKn8YUOpipJYQmCPJUenACknny7uPEWWryl44AzSeCqtGLr","secondaryKey":"ESkVchc7ZfPOHlMMhboLE3ZI7ajWdImZz4v52qMGOKAzSeCao3qA"}' headers: cache-control: - no-cache @@ -179,25 +185,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:38:33 GMT + - Wed, 18 Oct 2023 18:47:47 GMT elapsed-time: - - '293' + - '347' expires: - '-1' pragma: - no-cache request-id: - - 33d4d02d-c18b-11ed-a808-b7b53f28d5a3 + - d4ae83f2-6de6-11ee-85a9-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' + x-msedge-ref: + - 'Ref A: AE0F14E1ACAA4658B58BFBB11794399B Ref B: CO6AA3150218033 Ref C: 2023-10-18T18:47:47Z' status: code: 200 message: OK @@ -217,13 +223,12 @@ interactions: ParameterSetName: - --service-name -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/listAdminKeys?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/listAdminKeys?api-version=2022-09-01 response: body: - string: '{"primaryKey":"XObeEv0CidBII6QM2ZR5vOTuC7A9I4I0MYCMyddjlTAzSeA5WaHN","secondaryKey":"0AD5DaI169eawo3NXuXaHJyXolqoI7hUZH9ZXjFgwwAzSeCG4u16"}' + string: '{"primaryKey":"pea8tgKn8YUOpipJYQmCPJUenACknny7uPEWWryl44AzSeCqtGLr","secondaryKey":"ESkVchc7ZfPOHlMMhboLE3ZI7ajWdImZz4v52qMGOKAzSeCao3qA"}' headers: cache-control: - no-cache @@ -232,25 +237,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:38:34 GMT + - Wed, 18 Oct 2023 18:47:47 GMT elapsed-time: - - '110' + - '228' expires: - '-1' pragma: - no-cache request-id: - - 33d4d02e-c18b-11ed-a808-b7b53f28d5a3 + - d520eda0-6de6-11ee-a781-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' + x-msedge-ref: + - 'Ref A: 5911EAC6B4B84465A9A4DD89D2F3EC98 Ref B: CO6AA3150218019 Ref C: 2023-10-18T18:47:48Z' status: code: 200 message: OK @@ -270,13 +275,12 @@ interactions: ParameterSetName: - --service-name -g --key-kind User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/regenerateAdminKey/secondary?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/regenerateAdminKey/secondary?api-version=2022-09-01 response: body: - string: '{"primaryKey":"XObeEv0CidBII6QM2ZR5vOTuC7A9I4I0MYCMyddjlTAzSeA5WaHN","secondaryKey":"wuHmHBhyOJRoCE6xxp3VQXxqvF7HKvOAKCT49HH8feAzSeBF0NiA"}' + string: '{"primaryKey":"pea8tgKn8YUOpipJYQmCPJUenACknny7uPEWWryl44AzSeCqtGLr","secondaryKey":"d0B1ZJkGtjKHB86UKsX3cTD9KIPFlDPovM04jhlVzVAzSeAk45FI"}' headers: cache-control: - no-cache @@ -285,25 +289,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:38:35 GMT + - Wed, 18 Oct 2023 18:47:49 GMT elapsed-time: - - '348' + - '461' expires: - '-1' pragma: - no-cache request-id: - - 33d4d02f-c18b-11ed-a808-b7b53f28d5a3 + - d56ad347-6de6-11ee-aa9a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' + x-msedge-ref: + - 'Ref A: 9E48B2FCEAFB4004B77136408C2C74F3 Ref B: CO6AA3150217049 Ref C: 2023-10-18T18:47:48Z' status: code: 200 message: OK @@ -323,13 +327,12 @@ interactions: ParameterSetName: - --service-name -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/listAdminKeys?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/listAdminKeys?api-version=2022-09-01 response: body: - string: '{"primaryKey":"XObeEv0CidBII6QM2ZR5vOTuC7A9I4I0MYCMyddjlTAzSeA5WaHN","secondaryKey":"wuHmHBhyOJRoCE6xxp3VQXxqvF7HKvOAKCT49HH8feAzSeBF0NiA"}' + string: '{"primaryKey":"pea8tgKn8YUOpipJYQmCPJUenACknny7uPEWWryl44AzSeCqtGLr","secondaryKey":"d0B1ZJkGtjKHB86UKsX3cTD9KIPFlDPovM04jhlVzVAzSeAk45FI"}' headers: cache-control: - no-cache @@ -338,25 +341,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:38:36 GMT + - Wed, 18 Oct 2023 18:47:49 GMT elapsed-time: - - '110' + - '162' expires: - '-1' pragma: - no-cache request-id: - - 357b5c3e-c18b-11ed-a808-b7b53f28d5a3 + - d5edfb52-6de6-11ee-a959-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' + x-msedge-ref: + - 'Ref A: B0686234F10F4D85B0A2F1B6AE92FD11 Ref B: CO6AA3150219011 Ref C: 2023-10-18T18:47:49Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_list_private_link_resources.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_list_private_link_resources.yaml index e3eacd8776f..3039063a395 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_list_private_link_resources.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_list_private_link_resources.yaml @@ -13,38 +13,39 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T10:55:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_list_private_link_resources","date":"2023-10-18T19:07:59Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '397' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:55:48 GMT + - Wed, 18 Oct 2023 19:07:59 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3C3B85D173AC4560B4AA9031C96A2FE4 Ref B: CO6AA3150218037 Ref C: 2023-10-18T19:07:59Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "sku": {"name": "basic"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "Disabled"}}' + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": + 1, "publicNetworkAccess": "disabled", "replicaCount": 1}, "sku": {"name": "basic"}}' headers: Accept: - application/json @@ -55,45 +56,50 @@ interactions: Connection: - keep-alive Content-Length: - - '165' + - '170' Content-Type: - application/json ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:55:58 GMT + - Wed, 18 Oct 2023 19:08:05 GMT elapsed-time: - - '7062' + - '5685' etag: - - W/"datetime'2023-03-13T10%3A55%3A57.9553759Z'" + - W/"datetime'2023-10-18T19%3A08%3A05.526549Z'" expires: - '-1' pragma: - no-cache request-id: - - 9cb561c3-c18d-11ed-a808-b7b53f28d5a3 + - a74ffc06-6de9-11ee-8ba7-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/1847d5da-2916-431e-97e4-60bd9291f0b3 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + x-msedge-ref: + - 'Ref A: E6509977FBDC480CB54C0B51A2C3CABE Ref B: CO6AA3150217035 Ref C: 2023-10-18T19:08:00Z' status: code: 201 message: Created @@ -111,41 +117,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:56:28 GMT + - Wed, 18 Oct 2023 19:08:06 GMT elapsed-time: - - '184' + - '221' etag: - - W/"datetime'2023-03-13T10%3A55%3A57.9553759Z'" + - W/"datetime'2023-10-18T19%3A08%3A05.526549Z'" expires: - '-1' pragma: - no-cache request-id: - - 9cb561c3-c18d-11ed-a808-b7b53f28d5a3 + - a74ffc06-6de9-11ee-8ba7-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 271C8671EE0B475C87C8D073A1C59EF1 Ref B: CO6AA3150217035 Ref C: 2023-10-18T19:08:06Z' status: code: 200 message: OK @@ -163,41 +168,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:56:58 GMT + - Wed, 18 Oct 2023 19:08:36 GMT elapsed-time: - - '155' + - '224' etag: - - W/"datetime'2023-03-13T10%3A55%3A57.9553759Z'" + - W/"datetime'2023-10-18T19%3A08%3A05.526549Z'" expires: - '-1' pragma: - no-cache request-id: - - 9cb561c3-c18d-11ed-a808-b7b53f28d5a3 + - a74ffc06-6de9-11ee-8ba7-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 65932D19F6EC477A839D5104D8D310CE Ref B: CO6AA3150217035 Ref C: 2023-10-18T19:08:36Z' status: code: 200 message: OK @@ -215,41 +219,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:57:29 GMT + - Wed, 18 Oct 2023 19:09:06 GMT elapsed-time: - - '179' + - '253' etag: - - W/"datetime'2023-03-13T10%3A55%3A57.9553759Z'" + - W/"datetime'2023-10-18T19%3A08%3A05.526549Z'" expires: - '-1' pragma: - no-cache request-id: - - 9cb561c3-c18d-11ed-a808-b7b53f28d5a3 + - a74ffc06-6de9-11ee-8ba7-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: DA41D5DDC2764819BB75218EE3B77B0D Ref B: CO6AA3150217035 Ref C: 2023-10-18T19:09:06Z' status: code: 200 message: OK @@ -267,41 +270,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:57:59 GMT + - Wed, 18 Oct 2023 19:09:37 GMT elapsed-time: - - '180' + - '273' etag: - - W/"datetime'2023-03-13T10%3A55%3A57.9553759Z'" + - W/"datetime'2023-10-18T19%3A08%3A05.526549Z'" expires: - '-1' pragma: - no-cache request-id: - - 9cb561c3-c18d-11ed-a808-b7b53f28d5a3 + - a74ffc06-6de9-11ee-8ba7-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D0B7A6A2614B4220BBAC595521E4B98F Ref B: CO6AA3150217035 Ref C: 2023-10-18T19:09:37Z' status: code: 200 message: OK @@ -319,41 +321,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:58:29 GMT + - Wed, 18 Oct 2023 19:10:07 GMT elapsed-time: - - '149' + - '236' etag: - - W/"datetime'2023-03-13T10%3A55%3A57.9553759Z'" + - W/"datetime'2023-10-18T19%3A08%3A05.526549Z'" expires: - '-1' pragma: - no-cache request-id: - - 9cb561c3-c18d-11ed-a808-b7b53f28d5a3 + - a74ffc06-6de9-11ee-8ba7-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: FC5B88BD2D13427C917C095D56408415 Ref B: CO6AA3150217035 Ref C: 2023-10-18T19:10:07Z' status: code: 200 message: OK @@ -371,41 +372,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:59:00 GMT + - Wed, 18 Oct 2023 19:10:37 GMT elapsed-time: - - '160' + - '306' etag: - - W/"datetime'2023-03-13T10%3A55%3A57.9553759Z'" + - W/"datetime'2023-10-18T19%3A08%3A05.526549Z'" expires: - '-1' pragma: - no-cache request-id: - - 9cb561c3-c18d-11ed-a808-b7b53f28d5a3 + - a74ffc06-6de9-11ee-8ba7-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3095EA33CC1A4181819759A1EE3624D1 Ref B: CO6AA3150217035 Ref C: 2023-10-18T19:10:37Z' status: code: 200 message: OK @@ -423,41 +423,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:59:31 GMT + - Wed, 18 Oct 2023 19:11:08 GMT elapsed-time: - - '506' + - '347' etag: - - W/"datetime'2023-03-13T10%3A55%3A57.9553759Z'" + - W/"datetime'2023-10-18T19%3A08%3A05.526549Z'" expires: - '-1' pragma: - no-cache request-id: - - 9cb561c3-c18d-11ed-a808-b7b53f28d5a3 + - a74ffc06-6de9-11ee-8ba7-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 82C34A69E17E40AD8BFE99429DBB3DEA Ref B: CO6AA3150217035 Ref C: 2023-10-18T19:11:08Z' status: code: 200 message: OK @@ -475,41 +474,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:00:07 GMT + - Wed, 18 Oct 2023 19:11:38 GMT elapsed-time: - - '178' + - '212' etag: - - W/"datetime'2023-03-13T10%3A55%3A57.9553759Z'" + - W/"datetime'2023-10-18T19%3A08%3A05.526549Z'" expires: - '-1' pragma: - no-cache request-id: - - 9cb561c3-c18d-11ed-a808-b7b53f28d5a3 + - a74ffc06-6de9-11ee-8ba7-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9B14D292CF9045DA9C990928F7DCCC30 Ref B: CO6AA3150217035 Ref C: 2023-10-18T19:11:38Z' status: code: 200 message: OK @@ -527,41 +525,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:00:38 GMT + - Wed, 18 Oct 2023 19:12:09 GMT elapsed-time: - - '230' + - '225' etag: - - W/"datetime'2023-03-13T10%3A55%3A57.9553759Z'" + - W/"datetime'2023-10-18T19%3A08%3A05.526549Z'" expires: - '-1' pragma: - no-cache request-id: - - 9cb561c3-c18d-11ed-a808-b7b53f28d5a3 + - a74ffc06-6de9-11ee-8ba7-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 27D1EE3E51C048DFB30F6B84F2648683 Ref B: CO6AA3150217035 Ref C: 2023-10-18T19:12:09Z' status: code: 200 message: OK @@ -579,41 +576,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:01:08 GMT + - Wed, 18 Oct 2023 19:12:39 GMT elapsed-time: - - '256' + - '196' etag: - - W/"datetime'2023-03-13T10%3A55%3A57.9553759Z'" + - W/"datetime'2023-10-18T19%3A08%3A05.526549Z'" expires: - '-1' pragma: - no-cache request-id: - - 9cb561c3-c18d-11ed-a808-b7b53f28d5a3 + - a74ffc06-6de9-11ee-8ba7-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6A18CE3DB1264672AF53C8ACF4CA90FE Ref B: CO6AA3150217035 Ref C: 2023-10-18T19:12:39Z' status: code: 200 message: OK @@ -631,41 +627,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:01:39 GMT + - Wed, 18 Oct 2023 19:13:09 GMT elapsed-time: - - '252' + - '283' etag: - - W/"datetime'2023-03-13T10%3A55%3A57.9553759Z'" + - W/"datetime'2023-10-18T19%3A08%3A05.526549Z'" expires: - '-1' pragma: - no-cache request-id: - - 9cb561c3-c18d-11ed-a808-b7b53f28d5a3 + - a74ffc06-6de9-11ee-8ba7-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1A2683A4D0AE4BD08740B51DA9F2996A Ref B: CO6AA3150217035 Ref C: 2023-10-18T19:13:09Z' status: code: 200 message: OK @@ -683,41 +678,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:02:09 GMT + - Wed, 18 Oct 2023 19:13:40 GMT elapsed-time: - - '284' + - '208' etag: - - W/"datetime'2023-03-13T10%3A55%3A57.9553759Z'" + - W/"datetime'2023-10-18T19%3A08%3A05.526549Z'" expires: - '-1' pragma: - no-cache request-id: - - 9cb561c3-c18d-11ed-a808-b7b53f28d5a3 + - a74ffc06-6de9-11ee-8ba7-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D0C7BD1FDFEE47EB9F5049CD66107EE7 Ref B: CO6AA3150217035 Ref C: 2023-10-18T19:13:40Z' status: code: 200 message: OK @@ -735,41 +729,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:02:39 GMT + - Wed, 18 Oct 2023 19:14:10 GMT elapsed-time: - - '178' + - '265' etag: - - W/"datetime'2023-03-13T10%3A55%3A57.9553759Z'" + - W/"datetime'2023-10-18T19%3A08%3A05.526549Z'" expires: - '-1' pragma: - no-cache request-id: - - 9cb561c3-c18d-11ed-a808-b7b53f28d5a3 + - a74ffc06-6de9-11ee-8ba7-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: EB65DF0F5347408685BC059ABE164649 Ref B: CO6AA3150217035 Ref C: 2023-10-18T19:14:10Z' status: code: 200 message: OK @@ -787,41 +780,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:03:10 GMT + - Wed, 18 Oct 2023 19:14:40 GMT elapsed-time: - - '246' + - '199' etag: - - W/"datetime'2023-03-13T10%3A55%3A57.9553759Z'" + - W/"datetime'2023-10-18T19%3A08%3A05.526549Z'" expires: - '-1' pragma: - no-cache request-id: - - 9cb561c3-c18d-11ed-a808-b7b53f28d5a3 + - a74ffc06-6de9-11ee-8ba7-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 619072E3060E45739FDE310DD126BF7B Ref B: CO6AA3150217035 Ref C: 2023-10-18T19:14:41Z' status: code: 200 message: OK @@ -839,41 +831,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:03:40 GMT + - Wed, 18 Oct 2023 19:15:11 GMT elapsed-time: - - '161' + - '309' etag: - - W/"datetime'2023-03-13T10%3A55%3A57.9553759Z'" + - W/"datetime'2023-10-18T19%3A08%3A05.526549Z'" expires: - '-1' pragma: - no-cache request-id: - - 9cb561c3-c18d-11ed-a808-b7b53f28d5a3 + - a74ffc06-6de9-11ee-8ba7-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F6D9E14FD2134ADFA7DA939D82D3C70D Ref B: CO6AA3150217035 Ref C: 2023-10-18T19:15:11Z' status: code: 200 message: OK @@ -891,41 +882,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:04:11 GMT + - Wed, 18 Oct 2023 19:15:41 GMT elapsed-time: - - '281' + - '173' etag: - - W/"datetime'2023-03-13T10%3A55%3A57.9553759Z'" + - W/"datetime'2023-10-18T19%3A08%3A05.526549Z'" expires: - '-1' pragma: - no-cache request-id: - - 9cb561c3-c18d-11ed-a808-b7b53f28d5a3 + - a74ffc06-6de9-11ee-8ba7-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 82157598E9384D6485F848BD5BA6A748 Ref B: CO6AA3150217035 Ref C: 2023-10-18T19:15:41Z' status: code: 200 message: OK @@ -943,41 +933,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:04:41 GMT + - Wed, 18 Oct 2023 19:16:11 GMT elapsed-time: - - '171' + - '336' etag: - - W/"datetime'2023-03-13T10%3A55%3A57.9553759Z'" + - W/"datetime'2023-10-18T19%3A08%3A05.526549Z'" expires: - '-1' pragma: - no-cache request-id: - - 9cb561c3-c18d-11ed-a808-b7b53f28d5a3 + - a74ffc06-6de9-11ee-8ba7-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 60B3DE6F59A942AFA1DE4612979B8828 Ref B: CO6AA3150217035 Ref C: 2023-10-18T19:16:12Z' status: code: 200 message: OK @@ -995,93 +984,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '730' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:05:12 GMT + - Wed, 18 Oct 2023 19:16:42 GMT elapsed-time: - - '401' + - '297' etag: - - W/"datetime'2023-03-13T10%3A55%3A57.9553759Z'" + - W/"datetime'2023-10-18T19%3A08%3A05.526549Z'" expires: - '-1' pragma: - no-cache request-id: - - 9cb561c3-c18d-11ed-a808-b7b53f28d5a3 + - a74ffc06-6de9-11ee-8ba7-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '608' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:05:42 GMT - elapsed-time: - - '183' - etag: - - W/"datetime'2023-03-13T10%3A55%3A57.9553759Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9cb561c3-c18d-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A64FB099ADC740FCAAD678BAF0B37CDB Ref B: CO6AA3150217035 Ref C: 2023-10-18T19:16:42Z' status: code: 200 message: OK @@ -1099,10 +1035,9 @@ interactions: ParameterSetName: - --service-name -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateLinkResources?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateLinkResources?api-version=2022-09-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateLinkResources/searchService","name":"searchService","type":"Microsoft.Search/searchServices/privateLinkResources","properties":{"groupId":"searchService","requiredMembers":["searchService"],"requiredZoneNames":["privatelink.search.windows.net"],"shareablePrivateLinkResourceTypes":[{"name":"blob","properties":{"type":"Microsoft.Storage/storageAccounts","groupId":"blob","description":"Azure @@ -1132,23 +1067,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:05:43 GMT + - Wed, 18 Oct 2023 19:16:43 GMT elapsed-time: - - '74' + - '97' expires: - '-1' pragma: - no-cache request-id: - - ff7f7bc0-c18e-11ed-a808-b7b53f28d5a3 + - df5d7aef-6dea-11ee-8e0d-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 847613C108594E0FA057A51B8E54CACA Ref B: CO6AA3150219053 Ref C: 2023-10-18T19:16:43Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_private_endpoint_connection_crud.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_private_endpoint_connection_crud.yaml index 68fa2c9fab6..94470a9d577 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_private_endpoint_connection_crud.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_private_endpoint_connection_crud.yaml @@ -13,40 +13,39 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T10:38:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_crud","date":"2023-10-19T17:37:53Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache - connection: - - close content-length: - - '332' + - '402' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:38:40 GMT + - Thu, 19 Oct 2023 17:37:55 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8A2313744CFC473CA7629ACAA766B9A7 Ref B: CO6AA3150220051 Ref C: 2023-10-19T17:37:54Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "sku": {"name": "basic"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "Disabled"}}' + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": + 1, "publicNetworkAccess": "disabled", "replicaCount": 1}, "sku": {"name": "basic"}}' headers: Accept: - application/json @@ -57,45 +56,50 @@ interactions: Connection: - keep-alive Content-Length: - - '165' + - '170' Content-Type: - application/json ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:38:50 GMT + - Thu, 19 Oct 2023 17:37:59 GMT elapsed-time: - - '7129' + - '4017' etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - W/"datetime'2023-10-19T17%3A37%3A59.6644457Z'" expires: - '-1' pragma: - no-cache request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 + - 3c30ae90-6ea6-11ee-9851-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/9a735c6b-970d-4683-adf3-bfec4fd25a6e x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' + x-msedge-ref: + - 'Ref A: E298F7C557C94DBD8CEDEB67D1FDF4A9 Ref B: CO6AA3150217027 Ref C: 2023-10-19T17:37:55Z' status: code: 201 message: Created @@ -113,249 +117,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '616' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 10:39:20 GMT - elapsed-time: - - '218' - etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '616' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 10:39:51 GMT - elapsed-time: - - '310' - etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '616' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 10:40:21 GMT - elapsed-time: - - '348' - etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '616' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 10:40:51 GMT - elapsed-time: - - '276' - etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:41:22 GMT + - Thu, 19 Oct 2023 17:38:00 GMT elapsed-time: - - '273' + - '206' etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - W/"datetime'2023-10-19T17%3A37%3A59.6644457Z'" expires: - '-1' pragma: - no-cache request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 + - 3c30ae90-6ea6-11ee-9851-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B9B9891C4D294827AA9F1C67776CC511 Ref B: CO6AA3150217027 Ref C: 2023-10-19T17:37:59Z' status: code: 200 message: OK @@ -373,41 +168,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:41:52 GMT + - Thu, 19 Oct 2023 17:38:30 GMT elapsed-time: - - '147' + - '174' etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - W/"datetime'2023-10-19T17%3A37%3A59.6644457Z'" expires: - '-1' pragma: - no-cache request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 + - 3c30ae90-6ea6-11ee-9851-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 0467EAFCD4C24050B7EB0EDF6D81F3DC Ref B: CO6AA3150217027 Ref C: 2023-10-19T17:38:30Z' status: code: 200 message: OK @@ -425,41 +219,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:42:22 GMT + - Thu, 19 Oct 2023 17:39:00 GMT elapsed-time: - - '194' + - '193' etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - W/"datetime'2023-10-19T17%3A37%3A59.6644457Z'" expires: - '-1' pragma: - no-cache request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 + - 3c30ae90-6ea6-11ee-9851-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1AB214CCDEDB4AB8AE6275894FEB8625 Ref B: CO6AA3150217027 Ref C: 2023-10-19T17:39:00Z' status: code: 200 message: OK @@ -477,41 +270,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:42:53 GMT + - Thu, 19 Oct 2023 17:39:30 GMT elapsed-time: - - '276' + - '266' etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - W/"datetime'2023-10-19T17%3A37%3A59.6644457Z'" expires: - '-1' pragma: - no-cache request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 + - 3c30ae90-6ea6-11ee-9851-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8EE0EF12CA3B407DB3F00267E6A4B481 Ref B: CO6AA3150217027 Ref C: 2023-10-19T17:39:30Z' status: code: 200 message: OK @@ -529,145 +321,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:43:24 GMT + - Thu, 19 Oct 2023 17:40:01 GMT elapsed-time: - - '164' - etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '616' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 10:43:54 GMT - elapsed-time: - - '161' - etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '616' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 10:44:24 GMT - elapsed-time: - - '184' + - '175' etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - W/"datetime'2023-10-19T17%3A37%3A59.6644457Z'" expires: - '-1' pragma: - no-cache request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 + - 3c30ae90-6ea6-11ee-9851-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6AFEAAAC397646A28E1A195220C9E3E7 Ref B: CO6AA3150217027 Ref C: 2023-10-19T17:40:01Z' status: code: 200 message: OK @@ -685,41 +372,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:44:55 GMT + - Thu, 19 Oct 2023 17:40:31 GMT elapsed-time: - - '152' + - '198' etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - W/"datetime'2023-10-19T17%3A37%3A59.6644457Z'" expires: - '-1' pragma: - no-cache request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 + - 3c30ae90-6ea6-11ee-9851-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: CBF40563D4614B898F28DF712A6A0BF5 Ref B: CO6AA3150217027 Ref C: 2023-10-19T17:40:31Z' status: code: 200 message: OK @@ -737,41 +423,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:45:25 GMT + - Thu, 19 Oct 2023 17:41:01 GMT elapsed-time: - - '159' + - '251' etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - W/"datetime'2023-10-19T17%3A37%3A59.6644457Z'" expires: - '-1' pragma: - no-cache request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 + - 3c30ae90-6ea6-11ee-9851-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: AB61C0A7306540E09DD541652FADAE55 Ref B: CO6AA3150217027 Ref C: 2023-10-19T17:41:01Z' status: code: 200 message: OK @@ -789,41 +474,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:45:56 GMT + - Thu, 19 Oct 2023 17:41:32 GMT elapsed-time: - - '225' + - '168' etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - W/"datetime'2023-10-19T17%3A37%3A59.6644457Z'" expires: - '-1' pragma: - no-cache request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 + - 3c30ae90-6ea6-11ee-9851-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5E17050911AC4374B2C9D09B0BB8EDE7 Ref B: CO6AA3150217027 Ref C: 2023-10-19T17:41:32Z' status: code: 200 message: OK @@ -841,41 +525,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:46:27 GMT + - Thu, 19 Oct 2023 17:42:02 GMT elapsed-time: - - '198' + - '405' etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - W/"datetime'2023-10-19T17%3A37%3A59.6644457Z'" expires: - '-1' pragma: - no-cache request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 + - 3c30ae90-6ea6-11ee-9851-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 02F78370AC1F41BE8D5552F5BA8BAA95 Ref B: CO6AA3150217027 Ref C: 2023-10-19T17:42:02Z' status: code: 200 message: OK @@ -893,41 +576,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:46:57 GMT + - Thu, 19 Oct 2023 17:42:32 GMT elapsed-time: - - '216' + - '213' etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - W/"datetime'2023-10-19T17%3A37%3A59.6644457Z'" expires: - '-1' pragma: - no-cache request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 + - 3c30ae90-6ea6-11ee-9851-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 21C451AAABD24FE5BFD6022126C8711D Ref B: CO6AA3150217027 Ref C: 2023-10-19T17:42:33Z' status: code: 200 message: OK @@ -945,41 +627,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:47:28 GMT + - Thu, 19 Oct 2023 17:43:03 GMT elapsed-time: - - '168' + - '333' etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - W/"datetime'2023-10-19T17%3A37%3A59.6644457Z'" expires: - '-1' pragma: - no-cache request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 + - 3c30ae90-6ea6-11ee-9851-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A866DF84F4C04632AA028587E32D8847 Ref B: CO6AA3150217027 Ref C: 2023-10-19T17:43:03Z' status: code: 200 message: OK @@ -997,41 +678,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:47:58 GMT + - Thu, 19 Oct 2023 17:43:33 GMT elapsed-time: - - '158' + - '326' etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - W/"datetime'2023-10-19T17%3A37%3A59.6644457Z'" expires: - '-1' pragma: - no-cache request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 + - 3c30ae90-6ea6-11ee-9851-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 593B3EF191874F9BA5293357BD360014 Ref B: CO6AA3150217027 Ref C: 2023-10-19T17:43:33Z' status: code: 200 message: OK @@ -1049,41 +729,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:48:28 GMT + - Thu, 19 Oct 2023 17:44:04 GMT elapsed-time: - - '179' + - '281' etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - W/"datetime'2023-10-19T17%3A37%3A59.6644457Z'" expires: - '-1' pragma: - no-cache request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 + - 3c30ae90-6ea6-11ee-9851-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D93D08C80FFB415B92E25413DBC53222 Ref B: CO6AA3150217027 Ref C: 2023-10-19T17:44:04Z' status: code: 200 message: OK @@ -1101,41 +780,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:48:58 GMT + - Thu, 19 Oct 2023 17:44:34 GMT elapsed-time: - - '175' + - '207' etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - W/"datetime'2023-10-19T17%3A37%3A59.6644457Z'" expires: - '-1' pragma: - no-cache request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 + - 3c30ae90-6ea6-11ee-9851-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C6E67AB087EF408D9D512ED6F594038D Ref B: CO6AA3150217027 Ref C: 2023-10-19T17:44:34Z' status: code: 200 message: OK @@ -1153,41 +831,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:49:29 GMT + - Thu, 19 Oct 2023 17:45:04 GMT elapsed-time: - - '153' + - '284' etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - W/"datetime'2023-10-19T17%3A37%3A59.6644457Z'" expires: - '-1' pragma: - no-cache request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 + - 3c30ae90-6ea6-11ee-9851-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: FE24982653584B4EA884D4D6BF366168 Ref B: CO6AA3150217027 Ref C: 2023-10-19T17:45:05Z' status: code: 200 message: OK @@ -1205,41 +882,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:50:05 GMT + - Thu, 19 Oct 2023 17:45:35 GMT elapsed-time: - - '209' + - '229' etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - W/"datetime'2023-10-19T17%3A37%3A59.6644457Z'" expires: - '-1' pragma: - no-cache request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 + - 3c30ae90-6ea6-11ee-9851-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 75B4A7A730C04297AD26144165C72522 Ref B: CO6AA3150217027 Ref C: 2023-10-19T17:45:35Z' status: code: 200 message: OK @@ -1257,41 +933,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:50:35 GMT + - Thu, 19 Oct 2023 17:46:05 GMT elapsed-time: - - '188' + - '481' etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - W/"datetime'2023-10-19T17%3A37%3A59.6644457Z'" expires: - '-1' pragma: - no-cache request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 + - 3c30ae90-6ea6-11ee-9851-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 170338B0CCAA4A3A878D61BCCA914BEB Ref B: CO6AA3150217027 Ref C: 2023-10-19T17:46:05Z' status: code: 200 message: OK @@ -1309,41 +984,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:51:07 GMT + - Thu, 19 Oct 2023 17:46:36 GMT elapsed-time: - - '251' + - '210' etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - W/"datetime'2023-10-19T17%3A37%3A59.6644457Z'" expires: - '-1' pragma: - no-cache request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 + - 3c30ae90-6ea6-11ee-9851-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 66859889E45546A48EB55E49D8077518 Ref B: CO6AA3150217027 Ref C: 2023-10-19T17:46:36Z' status: code: 200 message: OK @@ -1361,41 +1035,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '730' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:51:37 GMT + - Thu, 19 Oct 2023 17:47:06 GMT elapsed-time: - - '163' + - '412' etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - W/"datetime'2023-10-19T17%3A37%3A59.6644457Z'" expires: - '-1' pragma: - no-cache request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 + - 3c30ae90-6ea6-11ee-9851-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 315CD530E236471A8BBD238E815BE12E Ref B: CO6AA3150217027 Ref C: 2023-10-19T17:47:06Z' status: code: 200 message: OK @@ -1403,106 +1076,112 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - search service create + - network vnet create Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - --resource-group --name --address-prefix User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_crud","date":"2023-10-19T17:37:53Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '616' + - '402' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:52:07 GMT - elapsed-time: - - '186' - etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - Thu, 19 Oct 2023 17:47:08 GMT expires: - '-1' pragma: - no-cache - request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8190CA974AAE48FF9A2A8E1F2EFAFFAE Ref B: CO6AA3150220047 Ref C: 2023-10-19T17:47:08Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "eastus2euap", "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "enableDdosProtection": false, "enableVmProtection": false}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - search service create + - network vnet create Connection: - keep-alive + Content-Length: + - '157' + Content-Type: + - application/json ParameterSetName: - - -n -g --sku --public-access + - --resource-group --name --address-prefix User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003?api-version=2022-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: "{\r\n \"name\": \"vnet000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003\",\r\n + \ \"etag\": \"W/\\\"122c20f5-905b-4b40-b9c0-50af36e9acaa\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": + \"83cfdd21-281a-4742-9cd4-2c6ca910d2a3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n + \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n + \ }\r\n}" headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/12ddb632-fc92-428f-b282-eafe47fc5adf?api-version=2022-01-01 cache-control: - no-cache content-length: - - '616' + - '630' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:52:38 GMT - elapsed-time: - - '155' - etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - Thu, 19 Oct 2023 17:47:10 GMT expires: - '-1' pragma: - no-cache - request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 621fff4e-7f8b-4907-b444-0924c705239c + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/a3168a17-357e-493a-9b1d-b2d4d1cff7b6 + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + x-msedge-ref: + - 'Ref A: 2BA37C303C1D483DA0A8027AE2AD1BF2 Ref B: CO6AA3150217017 Ref C: 2023-10-19T17:47:09Z' status: - code: 200 - message: OK + code: 201 + message: '' - request: body: null headers: @@ -1511,50 +1190,44 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service create + - network vnet create Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - --resource-group --name --address-prefix User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/12ddb632-fc92-428f-b282-eafe47fc5adf?api-version=2022-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '616' + - '30' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:53:08 GMT - elapsed-time: - - '165' - etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - Thu, 19 Oct 2023 17:47:10 GMT expires: - '-1' pragma: - no-cache - request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - bee2bbb7-b52e-4876-aa34-2ae5eef6541d + x-msedge-ref: + - 'Ref A: 7D3BF900BA4C4023850BADD2F97127DD Ref B: CO6AA3150217017 Ref C: 2023-10-19T17:47:11Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -1563,50 +1236,44 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service create + - network vnet create Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - --resource-group --name --address-prefix User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/12ddb632-fc92-428f-b282-eafe47fc5adf?api-version=2022-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '616' + - '29' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:53:38 GMT - elapsed-time: - - '168' - etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" + - Thu, 19 Oct 2023 17:47:20 GMT expires: - '-1' pragma: - no-cache - request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 091baea5-e350-43a8-bfb9-578901c68df9 + x-msedge-ref: + - 'Ref A: 7404BF1BED824EEDA821B8668DA63810 Ref B: CO6AA3150217017 Ref C: 2023-10-19T17:47:21Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -1615,154 +1282,106 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '608' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 10:54:09 GMT - elapsed-time: - - '205' - etag: - - W/"datetime'2023-03-13T10%3A38%3A49.8452721Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 38878d76-c18b-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - network vnet create Connection: - keep-alive ParameterSetName: - --resource-group --name --address-prefix User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003?api-version=2022-01-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T10:38:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"name\": \"vnet000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003\",\r\n + \ \"etag\": \"W/\\\"eb726aca-817c-4715-99bb-0ebd6d649b01\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"83cfdd21-281a-4742-9cd4-2c6ca910d2a3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n + \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '332' + - '631' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:54:10 GMT + - Thu, 19 Oct 2023 17:47:20 GMT + etag: + - W/"eb726aca-817c-4715-99bb-0ebd6d649b01" expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - ff09c7ec-0f20-49b0-8643-19cbd118f122 + x-msedge-ref: + - 'Ref A: 43435EE867AE4CBD8B365A23600BF986 Ref B: CO6AA3150217017 Ref C: 2023-10-19T17:47:21Z' status: code: 200 - message: OK + message: '' - request: - body: '{"location": "westus", "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "enableDdosProtection": false, "enableVmProtection": false}}' + body: '{"name": "subnet000004", "properties": {"addressPrefix": "10.0.0.0/24"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - network vnet create + - network vnet subnet create Connection: - keep-alive Content-Length: - - '152' + - '72' Content-Type: - application/json ParameterSetName: - - --resource-group --name --address-prefix + - --resource-group --vnet-name --name --address-prefixes User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003?api-version=2022-01-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004?api-version=2023-05-01 response: body: - string: "{\r\n \"name\": \"vnet000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003\",\r\n - \ \"etag\": \"W/\\\"57f351c7-a3e9-4fc3-a126-52101a5325e6\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"982858b1-638d-478e-b836-e08bca8c9592\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n - \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n - \ }\r\n}" + string: '{"name":"subnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004","etag":"W/\"aa14933d-a045-4d7b-bcd8-637de83ed6d2\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/81367df0-794b-49ea-90b3-0b9fe4e05cfb?api-version=2022-01-01 + - https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/fbd5148e-00c4-4fcf-88a1-435e14d20548?api-version=2023-05-01 cache-control: - no-cache content-length: - - '625' + - '487' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:54:12 GMT + - Thu, 19 Oct 2023 17:47:22 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6a7970c6-b812-4dc3-a546-77b512aed86f + - 1a68fce8-c878-4fd7-ab74-0b2c96d691c1 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: 59D85F8E556C494FA4A460ACD919AF2A Ref B: CO6AA3150218039 Ref C: 2023-10-19T17:47:21Z' status: code: 201 message: '' @@ -1774,167 +1393,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --address-prefix - User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/81367df0-794b-49ea-90b3-0b9fe4e05cfb?api-version=2022-01-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 10:54:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - dcec1634-de46-4e2a-be70-be02fcb5c1f3 - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --address-prefix - User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003?api-version=2022-01-01 - response: - body: - string: "{\r\n \"name\": \"vnet000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003\",\r\n - \ \"etag\": \"W/\\\"811da81b-9749-422e-8f53-cb3e05d52714\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"982858b1-638d-478e-b836-e08bca8c9592\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n - \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n - \ }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '626' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 10:54:16 GMT - etag: - - W/"811da81b-9749-422e-8f53-cb3e05d52714" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 04aebfbb-8ea7-4bae-8058-14551b0ac8d6 - status: - code: 200 - message: '' -- request: - body: '{"name": "subnet000004", "properties": {"addressPrefix": "10.0.0.0/24"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - network vnet subnet create Connection: - keep-alive - Content-Length: - - '72' - Content-Type: - - application/json ParameterSetName: - --resource-group --vnet-name --name --address-prefixes User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004?api-version=2023-05-01 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/fbd5148e-00c4-4fcf-88a1-435e14d20548?api-version=2023-05-01 response: body: - string: "{\r\n \"name\": \"subnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004\",\r\n - \ \"etag\": \"W/\\\"c34c3b04-0388-4108-92f2-70c82b96d3f5\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: '{"status":"InProgress"}' headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/563e6de0-a5a6-4f2d-bda8-cd97e865ce2e?api-version=2022-01-01 cache-control: - no-cache content-length: - - '553' + - '23' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:54:16 GMT + - Thu, 19 Oct 2023 17:47:22 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0d085040-04ad-4159-9b9a-fc9d26d31772 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - e0fff072-4ebb-4419-9f7d-50e1ffa3c2b1 + x-msedge-ref: + - 'Ref A: 11C554A6C5B74F348A287C33D58A5E55 Ref B: CO6AA3150218039 Ref C: 2023-10-19T17:47:22Z' status: - code: 201 + code: 200 message: '' - request: body: null @@ -1950,35 +1445,35 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name --address-prefixes User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/563e6de0-a5a6-4f2d-bda8-cd97e865ce2e?api-version=2022-01-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/fbd5148e-00c4-4fcf-88a1-435e14d20548?api-version=2023-05-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:54:20 GMT + - Thu, 19 Oct 2023 17:47:33 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a1fb18dd-fb3e-4a8d-ae42-ee794777e74b + - 49a7dd90-43bd-43e7-a56e-db9eb15fcf6d + x-msedge-ref: + - 'Ref A: EA37E06BD53146698C7416328007A05E Ref B: CO6AA3150218039 Ref C: 2023-10-19T17:47:33Z' status: code: 200 message: '' @@ -1996,42 +1491,37 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name --address-prefixes User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004?api-version=2023-05-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004?api-version=2023-05-01 response: body: - string: "{\r\n \"name\": \"subnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004\",\r\n - \ \"etag\": \"W/\\\"127a53ee-a76a-41dc-8631-868b39fec3b2\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: '{"name":"subnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004","etag":"W/\"ca6a86d5-33dd-49fd-b968-449acbbade9e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '554' + - '488' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:54:20 GMT + - Thu, 19 Oct 2023 17:47:33 GMT etag: - - W/"127a53ee-a76a-41dc-8631-868b39fec3b2" + - W/"ca6a86d5-33dd-49fd-b968-449acbbade9e" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 83d2f67c-ffb5-4b03-91fe-e52781674c25 + - b33c3306-2872-4fcf-9527-af8efafd4ffd + x-msedge-ref: + - 'Ref A: 67CAEA79394D4F30ABAE374FB86E071E Ref B: CO6AA3150218039 Ref C: 2023-10-19T17:47:33Z' status: code: 200 message: '' @@ -2049,49 +1539,40 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004?api-version=2023-05-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004?api-version=2023-05-01 response: body: - string: "{\r\n \"name\": \"subnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004\",\r\n - \ \"etag\": \"W/\\\"127a53ee-a76a-41dc-8631-868b39fec3b2\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: '{"name":"subnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004","etag":"W/\"ca6a86d5-33dd-49fd-b968-449acbbade9e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '554' + - '488' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:54:20 GMT + - Thu, 19 Oct 2023 17:47:33 GMT etag: - - W/"127a53ee-a76a-41dc-8631-868b39fec3b2" + - W/"ca6a86d5-33dd-49fd-b968-449acbbade9e" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 39842a19-4796-4ac5-b24c-006e9e5d4125 + - 990889e2-319f-4b8e-ab38-c46011db997e + x-msedge-ref: + - 'Ref A: 97B31F74DBEB4045855C20C1A87ACA24 Ref B: CO6AA3150219025 Ref C: 2023-10-19T17:47:33Z' status: code: 200 - message: OK + message: '' - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004", "name": "subnet000004", "properties": {"addressPrefix": "10.0.0.0/24", "delegations": @@ -2113,53 +1594,44 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004?api-version=2023-05-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004?api-version=2023-05-01 response: body: - string: "{\r\n \"name\": \"subnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004\",\r\n - \ \"etag\": \"W/\\\"41d6b603-ea5e-48c2-ba48-a2e730b6986d\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: '{"name":"subnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004","etag":"W/\"1cbd0db1-706c-4d59-adb7-75a8815152ac\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/13318b53-8752-4ce3-92b3-9bfaf0a064cb?api-version=2022-01-01 + - https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/c3616c5e-097a-425e-b182-e24865c4242f?api-version=2023-05-01 cache-control: - no-cache content-length: - - '554' + - '488' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:54:21 GMT + - Thu, 19 Oct 2023 17:47:34 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 818a95fc-9465-4f15-b7b0-9d47942eaef1 + - 216dca3e-2e35-4a00-b686-a6559fb3964e x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' + x-msedge-ref: + - 'Ref A: 491314719F9241A897F3C5E0EFB8C16C Ref B: CO6AA3150219025 Ref C: 2023-10-19T17:47:34Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -2174,42 +1646,38 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/13318b53-8752-4ce3-92b3-9bfaf0a064cb?api-version=2022-01-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/c3616c5e-097a-425e-b182-e24865c4242f?api-version=2023-05-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:54:52 GMT + - Thu, 19 Oct 2023 17:47:34 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 24919b65-5f37-44b5-b5c8-ef05833f062d + - cc7f74fe-4bc4-4842-bedd-9579a3afda91 + x-msedge-ref: + - 'Ref A: 3D7CB0BA97084214B0938BFBA72E419B Ref B: CO6AA3150219025 Ref C: 2023-10-19T17:47:34Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -2224,49 +1692,40 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004?api-version=2023-05-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004?api-version=2023-05-01 response: body: - string: "{\r\n \"name\": \"subnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004\",\r\n - \ \"etag\": \"W/\\\"41d6b603-ea5e-48c2-ba48-a2e730b6986d\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: '{"name":"subnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004","etag":"W/\"1cbd0db1-706c-4d59-adb7-75a8815152ac\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '554' + - '488' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:54:52 GMT + - Thu, 19 Oct 2023 17:47:34 GMT etag: - - W/"41d6b603-ea5e-48c2-ba48-a2e730b6986d" + - W/"1cbd0db1-706c-4d59-adb7-75a8815152ac" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 00b08841-61cb-4c5f-88b0-267c342c648c + - c4a7c988-ce1d-494e-814e-b977fe82815d + x-msedge-ref: + - 'Ref A: 1E1D9EB3DF2A449088B509BFE1A40AF0 Ref B: CO6AA3150219025 Ref C: 2023-10-19T17:47:34Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -2282,37 +1741,38 @@ interactions: - --resource-group --name --vnet-name --subnet --private-connection-resource-id --connection-name --group-id User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T10:38:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_crud","date":"2023-10-19T17:37:53Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '402' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:54:51 GMT + - Thu, 19 Oct 2023 17:47:34 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7CDD41FEAED14A07A231FFC28D66C34F Ref B: CO6AA3150219053 Ref C: 2023-10-19T17:47:35Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "properties": {"privateLinkServiceConnections": + body: '{"location": "eastus2euap", "properties": {"privateLinkServiceConnections": [{"name": "testpec000006", "properties": {"groupIds": ["searchService"], "privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002"}}], "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004"}}}' @@ -2326,26 +1786,25 @@ interactions: Connection: - keep-alive Content-Length: - - '514' + - '519' Content-Type: - application/json ParameterSetName: - --resource-group --name --vnet-name --subnet --private-connection-resource-id --connection-name --group-id User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005?api-version=2022-01-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005?api-version=2022-01-01 response: body: string: "{\r\n \"name\": \"testpe000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005\",\r\n - \ \"etag\": \"W/\\\"1779f6d2-de86-448d-a400-c357ccf83d17\\\"\",\r\n \"type\": - \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus\",\r\n + \ \"etag\": \"W/\\\"d36f9465-4758-438f-8649-f1322833329c\\\"\",\r\n \"type\": + \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus2euap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"e401da98-1995-4609-b1f9-949ea43520f4\",\r\n \"privateLinkServiceConnections\": + \"f606e78a-34e5-4de6-be2a-6a18d0d973e2\",\r\n \"privateLinkServiceConnections\": [\r\n {\r\n \"name\": \"testpec000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005/privateLinkServiceConnections/testpec000006\",\r\n - \ \"etag\": \"W/\\\"1779f6d2-de86-448d-a400-c357ccf83d17\\\"\",\r\n + \ \"etag\": \"W/\\\"d36f9465-4758-438f-8649-f1322833329c\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002\",\r\n \ \"groupIds\": [\r\n \"searchService\"\r\n ],\r\n @@ -2356,36 +1815,39 @@ interactions: \ \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004\"\r\n \ },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n - \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/networkInterfaces/testpe000005.nic.c10715cc-c756-45c7-a151-28f2d5c935e5\"\r\n + \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/networkInterfaces/testpe000005.nic.b8ab909e-2bd0-499a-b45a-0301476d04f4\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bf2a48a2-3de3-4e3e-b836-8528bf0be1d5?api-version=2022-01-01 + - https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/7fd80b3d-8ab1-46d8-be3c-1a776602e547?api-version=2022-01-01 cache-control: - no-cache content-length: - - '2051' + - '2056' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:54:54 GMT + - Thu, 19 Oct 2023 17:47:38 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8d89f8c1-8cdb-4c8d-9fb9-37a8b6eb65f7 + - 10947660-9ab1-48c0-80ee-cee091012889 + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/04c4b8b7-039c-42a6-877a-35e55e3b6de5 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: E26653754DD2439CB69015A0715D0429 Ref B: CO6AA3150217029 Ref C: 2023-10-19T17:47:35Z' status: code: 201 message: '' @@ -2404,10 +1866,9 @@ interactions: - --resource-group --name --vnet-name --subnet --private-connection-resource-id --connection-name --group-id User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bf2a48a2-3de3-4e3e-b836-8528bf0be1d5?api-version=2022-01-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/7fd80b3d-8ab1-46d8-be3c-1a776602e547?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2419,24 +1880,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:55:04 GMT + - Thu, 19 Oct 2023 17:47:38 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0a737fa0-a23b-477e-869a-49537ef02686 + - d05b10c8-9f22-4348-a0a8-0b4f9b039706 + x-msedge-ref: + - 'Ref A: CF2D862A74164365AFFB9A454D1E0156 Ref B: CO6AA3150217029 Ref C: 2023-10-19T17:47:39Z' status: code: 200 message: '' @@ -2455,10 +1913,9 @@ interactions: - --resource-group --name --vnet-name --subnet --private-connection-resource-id --connection-name --group-id User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bf2a48a2-3de3-4e3e-b836-8528bf0be1d5?api-version=2022-01-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/7fd80b3d-8ab1-46d8-be3c-1a776602e547?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2470,24 +1927,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:55:15 GMT + - Thu, 19 Oct 2023 17:47:49 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - be9a0fd7-8e4b-46b9-90ca-78a16be6c76d + - df6ff092-4e0d-4409-8ebd-0b77470f49d2 + x-msedge-ref: + - 'Ref A: 4B55B73AC5FA4118AE88CD4CB98406F3 Ref B: CO6AA3150217029 Ref C: 2023-10-19T17:47:49Z' status: code: 200 message: '' @@ -2506,10 +1960,9 @@ interactions: - --resource-group --name --vnet-name --subnet --private-connection-resource-id --connection-name --group-id User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bf2a48a2-3de3-4e3e-b836-8528bf0be1d5?api-version=2022-01-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/7fd80b3d-8ab1-46d8-be3c-1a776602e547?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2521,24 +1974,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:55:35 GMT + - Thu, 19 Oct 2023 17:48:09 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2dd8b356-ca37-46d3-bd02-2850bc52347b + - 05069a9a-3016-4071-833f-1775e6461e4f + x-msedge-ref: + - 'Ref A: 84B4B60770F847C187471BBD180563E2 Ref B: CO6AA3150217029 Ref C: 2023-10-19T17:48:09Z' status: code: 200 message: '' @@ -2557,19 +2007,18 @@ interactions: - --resource-group --name --vnet-name --subnet --private-connection-resource-id --connection-name --group-id User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005?api-version=2022-01-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005?api-version=2022-01-01 response: body: string: "{\r\n \"name\": \"testpe000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005\",\r\n - \ \"etag\": \"W/\\\"21440546-69ea-4cf5-bb43-c505b16e45ba\\\"\",\r\n \"type\": - \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus\",\r\n + \ \"etag\": \"W/\\\"c326f27b-c230-43c2-9b85-074abb1f45f3\\\"\",\r\n \"type\": + \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus2euap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"e401da98-1995-4609-b1f9-949ea43520f4\",\r\n \"privateLinkServiceConnections\": + \"f606e78a-34e5-4de6-be2a-6a18d0d973e2\",\r\n \"privateLinkServiceConnections\": [\r\n {\r\n \"name\": \"testpec000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005/privateLinkServiceConnections/testpec000006\",\r\n - \ \"etag\": \"W/\\\"21440546-69ea-4cf5-bb43-c505b16e45ba\\\"\",\r\n + \ \"etag\": \"W/\\\"c326f27b-c230-43c2-9b85-074abb1f45f3\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002\",\r\n \ \"groupIds\": [\r\n \"searchService\"\r\n ],\r\n @@ -2580,7 +2029,7 @@ interactions: \ \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004\"\r\n \ },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n - \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/networkInterfaces/testpe000005.nic.c10715cc-c756-45c7-a151-28f2d5c935e5\"\r\n + \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/networkInterfaces/testpe000005.nic.b8ab909e-2bd0-499a-b45a-0301476d04f4\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": [\r\n {\r\n \"fqdn\": \"test000002.search.windows.net\",\r\n \"ipAddresses\": [\r\n \"10.0.0.4\"\r\n \ ]\r\n }\r\n ]\r\n }\r\n}" @@ -2588,30 +2037,27 @@ interactions: cache-control: - no-cache content-length: - - '2185' + - '2190' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:55:35 GMT + - Thu, 19 Oct 2023 17:48:09 GMT etag: - - W/"21440546-69ea-4cf5-bb43-c505b16e45ba" + - W/"c326f27b-c230-43c2-9b85-074abb1f45f3" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bc27f834-e720-457a-ae03-5e28627578fe + - 06862605-921c-4025-91d7-939e3a8b4893 + x-msedge-ref: + - 'Ref A: CE8BA1D010A949D4B06319D7404799E5 Ref B: CO6AA3150217029 Ref C: 2023-10-19T17:48:09Z' status: code: 200 message: '' @@ -2629,41 +2075,40 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.e401da98-1995-4609-b1f9-949ea43520f4","name":"testpe000005.e401da98-1995-4609-b1f9-949ea43520f4","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Succeeded","groupId":"searchService"}}],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.f606e78a-34e5-4de6-be2a-6a18d0d973e2","name":"testpe000005.f606e78a-34e5-4de6-be2a-6a18d0d973e2","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Succeeded","groupId":"searchService"}}],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '1334' + - '1456' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:55:36 GMT + - Thu, 19 Oct 2023 17:48:10 GMT elapsed-time: - - '177' + - '344' etag: - - W/"datetime'2023-03-13T10%3A55%3A07.5610563Z'" + - W/"datetime'2023-10-19T17%3A47%3A53.6642365Z'" expires: - '-1' pragma: - no-cache request-id: - - 95830300-c18d-11ed-a808-b7b53f28d5a3 + - aaca4c5b-6ea7-11ee-acde-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 011C121457274BEC95EB34279186D1AC Ref B: CO6AA3150217049 Ref C: 2023-10-19T17:48:09Z' status: code: 200 message: OK @@ -2681,13 +2126,12 @@ interactions: ParameterSetName: - -g --service-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections?api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.e401da98-1995-4609-b1f9-949ea43520f4","name":"testpe000005.e401da98-1995-4609-b1f9-949ea43520f4","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Succeeded","groupId":"searchService"}}],"nextLink":null}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.f606e78a-34e5-4de6-be2a-6a18d0d973e2","name":"testpe000005.f606e78a-34e5-4de6-be2a-6a18d0d973e2","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Succeeded","groupId":"searchService"}}],"nextLink":null}' headers: cache-control: - no-cache @@ -2696,23 +2140,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:55:36 GMT + - Thu, 19 Oct 2023 17:48:10 GMT elapsed-time: - - '66' + - '140' expires: - '-1' pragma: - no-cache request-id: - - 95830301-c18d-11ed-a808-b7b53f28d5a3 + - ab4e011c-6ea7-11ee-b39a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8C0ED4CC63A1487B8D4A0FB6C56D4CF4 Ref B: CO6AA3150217039 Ref C: 2023-10-19T17:48:10Z' status: code: 200 message: OK @@ -2730,13 +2174,12 @@ interactions: ParameterSetName: - --name -g --service-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.e401da98-1995-4609-b1f9-949ea43520f4?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.f606e78a-34e5-4de6-be2a-6a18d0d973e2?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.e401da98-1995-4609-b1f9-949ea43520f4","name":"testpe000005.e401da98-1995-4609-b1f9-949ea43520f4","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Succeeded","groupId":"searchService"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.f606e78a-34e5-4de6-be2a-6a18d0d973e2","name":"testpe000005.f606e78a-34e5-4de6-be2a-6a18d0d973e2","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Succeeded","groupId":"searchService"}}' headers: cache-control: - no-cache @@ -2745,21 +2188,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:55:37 GMT + - Thu, 19 Oct 2023 17:48:11 GMT elapsed-time: - - '79' + - '62' expires: - '-1' pragma: - no-cache request-id: - - 95830302-c18d-11ed-a808-b7b53f28d5a3 + - aba6e7d4-6ea7-11ee-a830-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: BD7F60118D67497BA6C7D74C7D11DC2C Ref B: CO6AA3150219027 Ref C: 2023-10-19T17:48:11Z' status: code: 200 message: OK @@ -2782,13 +2227,12 @@ interactions: ParameterSetName: - --service-name -g --name --status --description --actions-required User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.e401da98-1995-4609-b1f9-949ea43520f4?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.f606e78a-34e5-4de6-be2a-6a18d0d973e2?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.e401da98-1995-4609-b1f9-949ea43520f4","name":"testpe000005.e401da98-1995-4609-b1f9-949ea43520f4","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejected + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.f606e78a-34e5-4de6-be2a-6a18d0d973e2","name":"testpe000005.f606e78a-34e5-4de6-be2a-6a18d0d973e2","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejected by test","actionsRequired":"None"},"provisioningState":"Succeeded","groupId":"searchService"}}' headers: cache-control: @@ -2798,25 +2242,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:55:39 GMT + - Thu, 19 Oct 2023 17:48:13 GMT elapsed-time: - - '1221' + - '1419' expires: - '-1' pragma: - no-cache request-id: - - 96d0b8ce-c18d-11ed-a808-b7b53f28d5a3 + - abf670ab-6ea7-11ee-a392-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1198' + x-msedge-ref: + - 'Ref A: 81D20F1FF30F40DA92E17AD068558B45 Ref B: CO6AA3150218039 Ref C: 2023-10-19T17:48:11Z' status: code: 200 message: OK @@ -2839,13 +2283,12 @@ interactions: ParameterSetName: - --service-name -g --name --status --description --actions-required User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.e401da98-1995-4609-b1f9-949ea43520f4?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.f606e78a-34e5-4de6-be2a-6a18d0d973e2?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.e401da98-1995-4609-b1f9-949ea43520f4","name":"testpe000005.e401da98-1995-4609-b1f9-949ea43520f4","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Pending","description":"Pending + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.f606e78a-34e5-4de6-be2a-6a18d0d973e2","name":"testpe000005.f606e78a-34e5-4de6-be2a-6a18d0d973e2","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Pending","description":"Pending by test","actionsRequired":"None"},"provisioningState":"Succeeded","groupId":"searchService"}}' headers: cache-control: @@ -2855,25 +2298,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:55:42 GMT + - Thu, 19 Oct 2023 17:48:13 GMT elapsed-time: - - '1147' + - '1108' expires: - '-1' pragma: - no-cache request-id: - - 98160f40-c18d-11ed-a808-b7b53f28d5a3 + - acfed848-6ea7-11ee-a743-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' + x-msedge-ref: + - 'Ref A: 1FB31D57D92043DF8034998A17CD0E35 Ref B: CO6AA3150218017 Ref C: 2023-10-19T17:48:13Z' status: code: 200 message: OK @@ -2896,13 +2339,12 @@ interactions: ParameterSetName: - --service-name -g --name --status --description --actions-required User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.e401da98-1995-4609-b1f9-949ea43520f4?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.f606e78a-34e5-4de6-be2a-6a18d0d973e2?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.e401da98-1995-4609-b1f9-949ea43520f4","name":"testpe000005.e401da98-1995-4609-b1f9-949ea43520f4","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.f606e78a-34e5-4de6-be2a-6a18d0d973e2","name":"testpe000005.f606e78a-34e5-4de6-be2a-6a18d0d973e2","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved by test","actionsRequired":"None"},"provisioningState":"Succeeded","groupId":"searchService"}}' headers: cache-control: @@ -2912,25 +2354,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:55:42 GMT + - Thu, 19 Oct 2023 17:48:15 GMT elapsed-time: - - '728' + - '1160' expires: - '-1' pragma: - no-cache request-id: - - 9928dcc8-c18d-11ed-a808-b7b53f28d5a3 + - adc9e1d3-6ea7-11ee-8338-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + x-msedge-ref: + - 'Ref A: D855038D757640F58A18062C7DA13A21 Ref B: CO6AA3150220039 Ref C: 2023-10-19T17:48:15Z' status: code: 200 message: OK @@ -2950,13 +2392,12 @@ interactions: ParameterSetName: - --service-name -g --name -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.e401da98-1995-4609-b1f9-949ea43520f4?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.f606e78a-34e5-4de6-be2a-6a18d0d973e2?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.e401da98-1995-4609-b1f9-949ea43520f4","name":"testpe000005.e401da98-1995-4609-b1f9-949ea43520f4","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Disconnected","description":"Remove + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.f606e78a-34e5-4de6-be2a-6a18d0d973e2","name":"testpe000005.f606e78a-34e5-4de6-be2a-6a18d0d973e2","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Disconnected","description":"Remove request from customer.","actionsRequired":"None"},"provisioningState":"Succeeded","groupId":"searchService"}}' headers: cache-control: @@ -2966,25 +2407,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:55:44 GMT + - Thu, 19 Oct 2023 17:48:18 GMT elapsed-time: - - '834' + - '1616' expires: - '-1' pragma: - no-cache request-id: - - 9928dcc9-c18d-11ed-a808-b7b53f28d5a3 + - aec2ca41-6ea7-11ee-a8ce-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' + x-msedge-ref: + - 'Ref A: 2C19F91D586E4A2C98DC259955928617 Ref B: CO6AA3150220045 Ref C: 2023-10-19T17:48:16Z' status: code: 200 message: OK @@ -3002,17 +2443,16 @@ interactions: ParameterSetName: - --name -g --service-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.e401da98-1995-4609-b1f9-949ea43520f4?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.f606e78a-34e5-4de6-be2a-6a18d0d973e2?api-version=2022-09-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"Could not find private - endpoint connection ''testpe000005.e401da98-1995-4609-b1f9-949ea43520f4'' - in subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590'', resourceGroupName + endpoint connection ''testpe000005.f606e78a-34e5-4de6-be2a-6a18d0d973e2'' + in subscription ''ee787b9b-a25f-4d20-86e9-45fcea5253dd'', resourceGroupName ''azure_search_cli_test000001'', searchService ''test000002''. RequestId: - 81809d2f-6547-4688-9840-0c5469a89d47","target":null,"details":null}}' + 1180546d-0deb-40d7-93ed-6ecf0e5324f1","target":null,"details":null}}' headers: cache-control: - no-cache @@ -3023,19 +2463,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:55:45 GMT + - Thu, 19 Oct 2023 17:48:19 GMT elapsed-time: - - '93' + - '64' expires: - '-1' pragma: - no-cache request-id: - - 9af612e6-c18d-11ed-a808-b7b53f28d5a3 + - b063e05c-6ea7-11ee-8f90-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F46117CD561A4C409624C78139030D0B Ref B: CO6AA3150219025 Ref C: 2023-10-19T17:48:19Z' status: code: 404 message: Not Found @@ -3053,10 +2497,9 @@ interactions: ParameterSetName: - -g --service-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections?api-version=2022-09-01 response: body: string: '{"value":[],"nextLink":null}' @@ -3068,23 +2511,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 10:55:46 GMT + - Thu, 19 Oct 2023 17:48:19 GMT elapsed-time: - - '63' + - '98' expires: - '-1' pragma: - no-cache request-id: - - 9af612e7-c18d-11ed-a808-b7b53f28d5a3 + - b0972bb5-6ea7-11ee-a8f0-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 724915B97DC543778F95D531228024E6 Ref B: CO6AA3150218039 Ref C: 2023-10-19T17:48:19Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_query_key_create_delete_list.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_query_key_create_delete_list.yaml index 6ca53616e40..9450b8cdc0e 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_query_key_create_delete_list.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_query_key_create_delete_list.yaml @@ -13,38 +13,39 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T11:05:45Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_query_key_create_delete_list","date":"2023-10-18T19:16:43Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '398' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:05:46 GMT + - Wed, 18 Oct 2023 19:16:43 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9ED11C15759A49A6AE289E2F71A7C566 Ref B: CO6AA3150218031 Ref C: 2023-10-18T19:16:44Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "sku": {"name": "standard"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "enabled"}}' + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": + 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "standard"}}' headers: Accept: - application/json @@ -55,48 +56,1175 @@ interactions: Connection: - keep-alive Content-Length: - - '167' + - '172' Content-Type: - application/json ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '610' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:05:55 GMT + - Wed, 18 Oct 2023 19:16:53 GMT elapsed-time: - - '6944' + - '8103' etag: - - W/"datetime'2023-03-13T11%3A05%3A55.8692818Z'" + - W/"datetime'2023-10-18T19%3A16%3A52.9538904Z'" expires: - '-1' pragma: - no-cache request-id: - - 01bcbdf8-c18f-11ed-a808-b7b53f28d5a3 + - dffad61c-6dea-11ee-bc39-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/9c518381-d764-46f8-8d58-99f3c68b10b9 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 46E684EAD8744BD0AA62E2540BCC9D0B Ref B: CO6AA3150218023 Ref C: 2023-10-18T19:16:44Z' status: code: 201 message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 19:16:53 GMT + elapsed-time: + - '226' + etag: + - W/"datetime'2023-10-18T19%3A16%3A52.9538904Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dffad61c-6dea-11ee-bc39-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 5B65EF2F02044CDABA5A14F80A246EDF Ref B: CO6AA3150218023 Ref C: 2023-10-18T19:16:53Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 19:17:23 GMT + elapsed-time: + - '189' + etag: + - W/"datetime'2023-10-18T19%3A16%3A52.9538904Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dffad61c-6dea-11ee-bc39-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 11C782EFA06343349285C6CA6CE97652 Ref B: CO6AA3150218023 Ref C: 2023-10-18T19:17:23Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 19:17:54 GMT + elapsed-time: + - '279' + etag: + - W/"datetime'2023-10-18T19%3A16%3A52.9538904Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dffad61c-6dea-11ee-bc39-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: D02EE32BCA1643A1A85F5459AC99BF2F Ref B: CO6AA3150218023 Ref C: 2023-10-18T19:17:53Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 19:18:24 GMT + elapsed-time: + - '242' + etag: + - W/"datetime'2023-10-18T19%3A16%3A52.9538904Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dffad61c-6dea-11ee-bc39-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: B969FE1E43AC4A1DBE62CC284EB98924 Ref B: CO6AA3150218023 Ref C: 2023-10-18T19:18:24Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 19:18:54 GMT + elapsed-time: + - '177' + etag: + - W/"datetime'2023-10-18T19%3A16%3A52.9538904Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dffad61c-6dea-11ee-bc39-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 65869C985C9D45C9A3DCE4E6B98E3F1A Ref B: CO6AA3150218023 Ref C: 2023-10-18T19:18:54Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 19:19:24 GMT + elapsed-time: + - '217' + etag: + - W/"datetime'2023-10-18T19%3A16%3A52.9538904Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dffad61c-6dea-11ee-bc39-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: E004F8197C4C4BA1A9AFC8B3DFBE521F Ref B: CO6AA3150218023 Ref C: 2023-10-18T19:19:25Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 19:19:55 GMT + elapsed-time: + - '208' + etag: + - W/"datetime'2023-10-18T19%3A16%3A52.9538904Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dffad61c-6dea-11ee-bc39-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 151BB070953A46BA969FC5F345CE5549 Ref B: CO6AA3150218023 Ref C: 2023-10-18T19:19:55Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 19:20:25 GMT + elapsed-time: + - '272' + etag: + - W/"datetime'2023-10-18T19%3A16%3A52.9538904Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dffad61c-6dea-11ee-bc39-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 05996D685EBA44A5A34621E20F49262D Ref B: CO6AA3150218023 Ref C: 2023-10-18T19:20:25Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 19:20:55 GMT + elapsed-time: + - '249' + etag: + - W/"datetime'2023-10-18T19%3A16%3A52.9538904Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dffad61c-6dea-11ee-bc39-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 95368062E63948D89275E164F7697AD7 Ref B: CO6AA3150218023 Ref C: 2023-10-18T19:20:56Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 19:21:26 GMT + elapsed-time: + - '224' + etag: + - W/"datetime'2023-10-18T19%3A16%3A52.9538904Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dffad61c-6dea-11ee-bc39-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: E06DBBB371E74352B56243989B619F1E Ref B: CO6AA3150218023 Ref C: 2023-10-18T19:21:26Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 19:21:56 GMT + elapsed-time: + - '225' + etag: + - W/"datetime'2023-10-18T19%3A16%3A52.9538904Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dffad61c-6dea-11ee-bc39-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: B5CFC2EF27D14725A6AF82956F042C0A Ref B: CO6AA3150218023 Ref C: 2023-10-18T19:21:56Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 19:22:26 GMT + elapsed-time: + - '221' + etag: + - W/"datetime'2023-10-18T19%3A16%3A52.9538904Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dffad61c-6dea-11ee-bc39-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: CBAD1E31A2574E4CAA4E5BB1FFF8EA9F Ref B: CO6AA3150218023 Ref C: 2023-10-18T19:22:27Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 19:22:57 GMT + elapsed-time: + - '200' + etag: + - W/"datetime'2023-10-18T19%3A16%3A52.9538904Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dffad61c-6dea-11ee-bc39-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 6E848066E6A1494DA7B5DFC07AF68BDB Ref B: CO6AA3150218023 Ref C: 2023-10-18T19:22:57Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 19:23:27 GMT + elapsed-time: + - '225' + etag: + - W/"datetime'2023-10-18T19%3A16%3A52.9538904Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dffad61c-6dea-11ee-bc39-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: DA2C905F898D40FDAE612AEF1B8FDAD6 Ref B: CO6AA3150218023 Ref C: 2023-10-18T19:23:27Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 19:23:57 GMT + elapsed-time: + - '206' + etag: + - W/"datetime'2023-10-18T19%3A16%3A52.9538904Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dffad61c-6dea-11ee-bc39-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: CAFECF4DE3B24ED7B5693FB46322A7D3 Ref B: CO6AA3150218023 Ref C: 2023-10-18T19:23:58Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 19:24:28 GMT + elapsed-time: + - '221' + etag: + - W/"datetime'2023-10-18T19%3A16%3A52.9538904Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dffad61c-6dea-11ee-bc39-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 08898D127E434EC0A53A86D338537923 Ref B: CO6AA3150218023 Ref C: 2023-10-18T19:24:28Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 19:24:58 GMT + elapsed-time: + - '252' + etag: + - W/"datetime'2023-10-18T19%3A16%3A52.9538904Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dffad61c-6dea-11ee-bc39-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 4C2073D34DE54A48A2C8E109027634F7 Ref B: CO6AA3150218023 Ref C: 2023-10-18T19:24:58Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 19:25:28 GMT + elapsed-time: + - '265' + etag: + - W/"datetime'2023-10-18T19%3A16%3A52.9538904Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dffad61c-6dea-11ee-bc39-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 7CBCEB659F044005AE1E960AB33DEAB2 Ref B: CO6AA3150218023 Ref C: 2023-10-18T19:25:29Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 19:25:59 GMT + elapsed-time: + - '182' + etag: + - W/"datetime'2023-10-18T19%3A16%3A52.9538904Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dffad61c-6dea-11ee-bc39-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: CAB798A017364F7794DB8DBD9CED65B3 Ref B: CO6AA3150218023 Ref C: 2023-10-18T19:25:59Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 19:26:29 GMT + elapsed-time: + - '207' + etag: + - W/"datetime'2023-10-18T19%3A16%3A52.9538904Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dffad61c-6dea-11ee-bc39-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 9DC247DD041541138563A79B833916A4 Ref B: CO6AA3150218023 Ref C: 2023-10-18T19:26:29Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 19:27:00 GMT + elapsed-time: + - '347' + etag: + - W/"datetime'2023-10-18T19%3A16%3A52.9538904Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dffad61c-6dea-11ee-bc39-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: C562C6CE8ECF4DD98E586B9F4D10CFC6 Ref B: CO6AA3150218023 Ref C: 2023-10-18T19:27:00Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '732' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 19:27:30 GMT + elapsed-time: + - '179' + etag: + - W/"datetime'2023-10-18T19%3A16%3A52.9538904Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dffad61c-6dea-11ee-bc39-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 860932C98FC64F74B8E9F74E86BAD25A Ref B: CO6AA3150218023 Ref C: 2023-10-18T19:27:30Z' + status: + code: 200 + message: OK - request: body: null headers: @@ -113,13 +1241,12 @@ interactions: ParameterSetName: - --service-name -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/listQueryKeys?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/listQueryKeys?api-version=2022-09-01 response: body: - string: '{"value":[{"name":null,"key":"oRxnnBAS5fpjfY1QT59qpAYiLEqJZa0ZZnwNRaCv6uAzSeD3K4sI"}],"nextLink":null}' + string: '{"value":[{"name":null,"key":"ogEcNq85widMDrYsIfqpvZFNpZh6OsJoLsApoP0B0gAzSeDmP6BD"}],"nextLink":null}' headers: cache-control: - no-cache @@ -128,25 +1255,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:05:56 GMT + - Wed, 18 Oct 2023 19:27:32 GMT elapsed-time: - - '133' + - '180' expires: - '-1' pragma: - no-cache request-id: - - 073bc9d6-c18f-11ed-a808-b7b53f28d5a3 + - 61d8d258-6dec-11ee-a56e-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' + x-msedge-ref: + - 'Ref A: F5BFADA39441434AAE069A04173C452E Ref B: CO6AA3150217017 Ref C: 2023-10-18T19:27:31Z' status: code: 200 message: OK @@ -166,13 +1293,12 @@ interactions: ParameterSetName: - --service-name -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/createQueryKey/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/createQueryKey/test000003?api-version=2022-09-01 response: body: - string: '{"name":"test000003","key":"DireB4MK12yaPxhsXFo8noWSefL4KUmduSrYuO4NXkAzSeD2VkZd"}' + string: '{"name":"test000003","key":"228E6TzkWPVSwqcwdSXhK61WzVsi0KWgVGrzDMUFxVAzSeAkmquX"}' headers: cache-control: - no-cache @@ -181,25 +1307,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:05:56 GMT + - Wed, 18 Oct 2023 19:27:31 GMT elapsed-time: - - '148' + - '159' expires: - '-1' pragma: - no-cache request-id: - - 073bc9d7-c18f-11ed-a808-b7b53f28d5a3 + - 62336bab-6dec-11ee-a577-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1198' + x-msedge-ref: + - 'Ref A: B4B410364BE14880A2FF99637BB7AB7B Ref B: CO6AA3150220033 Ref C: 2023-10-18T19:27:32Z' status: code: 200 message: OK @@ -219,13 +1345,12 @@ interactions: ParameterSetName: - --service-name -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/listQueryKeys?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/listQueryKeys?api-version=2022-09-01 response: body: - string: '{"value":[{"name":null,"key":"oRxnnBAS5fpjfY1QT59qpAYiLEqJZa0ZZnwNRaCv6uAzSeD3K4sI"},{"name":"test000003","key":"DireB4MK12yaPxhsXFo8noWSefL4KUmduSrYuO4NXkAzSeD2VkZd"}],"nextLink":null}' + string: '{"value":[{"name":null,"key":"ogEcNq85widMDrYsIfqpvZFNpZh6OsJoLsApoP0B0gAzSeDmP6BD"},{"name":"test000003","key":"228E6TzkWPVSwqcwdSXhK61WzVsi0KWgVGrzDMUFxVAzSeAkmquX"}],"nextLink":null}' headers: cache-control: - no-cache @@ -234,25 +1359,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:05:57 GMT + - Wed, 18 Oct 2023 19:27:33 GMT elapsed-time: - - '115' + - '221' expires: - '-1' pragma: - no-cache request-id: - - 073bc9d8-c18f-11ed-a808-b7b53f28d5a3 + - 626a41b8-6dec-11ee-ba4d-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: B3F02B6482734DF68975E1C41ABF278A Ref B: CO6AA3150218037 Ref C: 2023-10-18T19:27:32Z' status: code: 200 message: OK @@ -272,13 +1397,12 @@ interactions: ParameterSetName: - --service-name -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/createQueryKey/test000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/createQueryKey/test000004?api-version=2022-09-01 response: body: - string: '{"name":"test000004","key":"uVJe1g3UZrG5uIY3v58TdQf4v03W3oqv43FtTzlSp3AzSeAWy1mz"}' + string: '{"name":"test000004","key":"nalhg77CUM5wXbt6QoFX7YuQ8DkoCliGIBcLF8171gAzSeBKYpHv"}' headers: cache-control: - no-cache @@ -287,23 +1411,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:05:58 GMT + - Wed, 18 Oct 2023 19:27:33 GMT elapsed-time: - - '175' + - '196' expires: - '-1' pragma: - no-cache request-id: - - 08355a14-c18f-11ed-a808-b7b53f28d5a3 + - 62ce6480-6dec-11ee-a7d8-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: 03FEEFA7F5B04D208B7A4857574C6AE4 Ref B: CO6AA3150220047 Ref C: 2023-10-18T19:27:33Z' status: code: 200 message: OK @@ -323,13 +1449,12 @@ interactions: ParameterSetName: - --service-name -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/listQueryKeys?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/listQueryKeys?api-version=2022-09-01 response: body: - string: '{"value":[{"name":null,"key":"oRxnnBAS5fpjfY1QT59qpAYiLEqJZa0ZZnwNRaCv6uAzSeD3K4sI"},{"name":"test000003","key":"DireB4MK12yaPxhsXFo8noWSefL4KUmduSrYuO4NXkAzSeD2VkZd"},{"name":"test000004","key":"uVJe1g3UZrG5uIY3v58TdQf4v03W3oqv43FtTzlSp3AzSeAWy1mz"}],"nextLink":null}' + string: '{"value":[{"name":null,"key":"ogEcNq85widMDrYsIfqpvZFNpZh6OsJoLsApoP0B0gAzSeDmP6BD"},{"name":"test000003","key":"228E6TzkWPVSwqcwdSXhK61WzVsi0KWgVGrzDMUFxVAzSeAkmquX"},{"name":"test000004","key":"nalhg77CUM5wXbt6QoFX7YuQ8DkoCliGIBcLF8171gAzSeBKYpHv"}],"nextLink":null}' headers: cache-control: - no-cache @@ -338,25 +1463,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:05:58 GMT + - Wed, 18 Oct 2023 19:27:34 GMT elapsed-time: - - '118' + - '148' expires: - '-1' pragma: - no-cache request-id: - - 08355a15-c18f-11ed-a808-b7b53f28d5a3 + - 631f747d-6dec-11ee-a37b-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' + x-msedge-ref: + - 'Ref A: 53993B3A787D4BD987102D34B3FA1352 Ref B: CO6AA3150220017 Ref C: 2023-10-18T19:27:33Z' status: code: 200 message: OK @@ -376,10 +1501,9 @@ interactions: ParameterSetName: - --service-name -g --key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/deleteQueryKey/DireB4MK12yaPxhsXFo8noWSefL4KUmduSrYuO4NXkAzSeD2VkZd?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/deleteQueryKey/228E6TzkWPVSwqcwdSXhK61WzVsi0KWgVGrzDMUFxVAzSeAkmquX?api-version=2022-09-01 response: body: string: '' @@ -387,21 +1511,25 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Mar 2023 11:06:01 GMT + - Wed, 18 Oct 2023 19:27:34 GMT elapsed-time: - - '170' + - '130' expires: - '-1' pragma: - no-cache request-id: - - 08355a16-c18f-11ed-a808-b7b53f28d5a3 + - 637ed4a2-6dec-11ee-a7cd-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14996' + x-msedge-ref: + - 'Ref A: D176C09C529343F88936BADCF5C42DA7 Ref B: CO6AA3150218033 Ref C: 2023-10-18T19:27:34Z' status: code: 204 message: No Content @@ -421,13 +1549,12 @@ interactions: ParameterSetName: - --service-name -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/listQueryKeys?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/listQueryKeys?api-version=2022-09-01 response: body: - string: '{"value":[{"name":null,"key":"oRxnnBAS5fpjfY1QT59qpAYiLEqJZa0ZZnwNRaCv6uAzSeD3K4sI"},{"name":"test000004","key":"uVJe1g3UZrG5uIY3v58TdQf4v03W3oqv43FtTzlSp3AzSeAWy1mz"}],"nextLink":null}' + string: '{"value":[{"name":null,"key":"ogEcNq85widMDrYsIfqpvZFNpZh6OsJoLsApoP0B0gAzSeDmP6BD"},{"name":"test000004","key":"nalhg77CUM5wXbt6QoFX7YuQ8DkoCliGIBcLF8171gAzSeBKYpHv"}],"nextLink":null}' headers: cache-control: - no-cache @@ -436,25 +1563,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:06:02 GMT + - Wed, 18 Oct 2023 19:27:35 GMT elapsed-time: - - '98' + - '127' expires: - '-1' pragma: - no-cache request-id: - - 0a3d857a-c18f-11ed-a808-b7b53f28d5a3 + - 63c8bc58-6dec-11ee-b1d2-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' + x-msedge-ref: + - 'Ref A: C870E238F3AB44DCA86B3C5D86C3836A Ref B: CO6AA3150217009 Ref C: 2023-10-18T19:27:34Z' status: code: 200 message: OK @@ -474,10 +1601,9 @@ interactions: ParameterSetName: - --service-name -g --key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/deleteQueryKey/uVJe1g3UZrG5uIY3v58TdQf4v03W3oqv43FtTzlSp3AzSeAWy1mz?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/deleteQueryKey/nalhg77CUM5wXbt6QoFX7YuQ8DkoCliGIBcLF8171gAzSeBKYpHv?api-version=2022-09-01 response: body: string: '' @@ -485,21 +1611,25 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Mar 2023 11:06:02 GMT + - Wed, 18 Oct 2023 19:27:35 GMT elapsed-time: - - '223' + - '135' expires: - '-1' pragma: - no-cache request-id: - - 0a3d857b-c18f-11ed-a808-b7b53f28d5a3 + - 6417690a-6dec-11ee-aca0-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: B409DA7771DE48D0BA656D6AC8048ECC Ref B: CO6AA3150218029 Ref C: 2023-10-18T19:27:35Z' status: code: 204 message: No Content @@ -519,13 +1649,12 @@ interactions: ParameterSetName: - --service-name -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/listQueryKeys?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/listQueryKeys?api-version=2022-09-01 response: body: - string: '{"value":[{"name":null,"key":"oRxnnBAS5fpjfY1QT59qpAYiLEqJZa0ZZnwNRaCv6uAzSeD3K4sI"}],"nextLink":null}' + string: '{"value":[{"name":null,"key":"ogEcNq85widMDrYsIfqpvZFNpZh6OsJoLsApoP0B0gAzSeDmP6BD"}],"nextLink":null}' headers: cache-control: - no-cache @@ -534,25 +1663,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:06:03 GMT + - Wed, 18 Oct 2023 19:27:35 GMT elapsed-time: - - '107' + - '127' expires: - '-1' pragma: - no-cache request-id: - - 0b438ed8-c18f-11ed-a808-b7b53f28d5a3 + - 6468786e-6dec-11ee-ac5d-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 36E1D1F70C474AE1A5FC10C3006167F7 Ref B: CO6AA3150217039 Ref C: 2023-10-18T19:27:35Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_auth.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_auth.yaml index 26abfee0dc6..820f3dd2eb2 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_auth.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_auth.yaml @@ -13,39 +13,40 @@ interactions: ParameterSetName: - -n -g --sku --disable-local-auth User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T11:06:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_auth","date":"2023-10-18T19:58:13Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '389' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:06:06 GMT + - Wed, 18 Oct 2023 19:58:14 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 68ED0A8297564B4C94B69444B49874A6 Ref B: CO6AA3150219023 Ref C: 2023-10-18T19:58:14Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "sku": {"name": "basic"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "enabled", - "disableLocalAuth": true}}' + body: '{"location": "eastus2euap", "properties": {"disableLocalAuth": true, "hostingMode": + "default", "partitionCount": 1, "publicNetworkAccess": "enabled", "replicaCount": + 1}, "sku": {"name": "basic"}}' headers: Accept: - application/json @@ -56,1244 +57,53 @@ interactions: Connection: - keep-alive Content-Length: - - '190' + - '195' Content-Type: - application/json ParameterSetName: - -n -g --sku --disable-local-auth User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '601' + - '715' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:06:19 GMT + - Wed, 18 Oct 2023 19:58:18 GMT elapsed-time: - - '9974' + - '3890' etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" + - W/"datetime'2023-10-18T19%3A58%3A19.3766625Z'" expires: - '-1' pragma: - no-cache request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 + - ac62590f-6df0-11ee-925b-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/b14f9279-5311-4e65-8587-98a466b8bce0 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 15D45D2BA5714DD092D44DB5CE3878A3 Ref B: CO6AA3150217031 Ref C: 2023-10-18T19:58:15Z' status: code: 201 message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:06:49 GMT - elapsed-time: - - '151' - etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:07:20 GMT - elapsed-time: - - '167' - etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:07:50 GMT - elapsed-time: - - '156' - etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:08:20 GMT - elapsed-time: - - '194' - etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:08:51 GMT - elapsed-time: - - '153' - etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:09:21 GMT - elapsed-time: - - '174' - etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:09:51 GMT - elapsed-time: - - '173' - etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:10:21 GMT - elapsed-time: - - '169' - etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:10:53 GMT - elapsed-time: - - '218' - etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:11:23 GMT - elapsed-time: - - '192' - etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:11:54 GMT - elapsed-time: - - '191' - etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:12:24 GMT - elapsed-time: - - '157' - etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:12:54 GMT - elapsed-time: - - '157' - etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:13:25 GMT - elapsed-time: - - '157' - etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:13:55 GMT - elapsed-time: - - '161' - etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:14:25 GMT - elapsed-time: - - '163' - etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:14:56 GMT - elapsed-time: - - '184' - etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:15:26 GMT - elapsed-time: - - '165' - etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:15:57 GMT - elapsed-time: - - '166' - etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:16:28 GMT - elapsed-time: - - '520' - etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:16:58 GMT - elapsed-time: - - '164' - etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:17:28 GMT - elapsed-time: - - '156' - etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '593' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:17:59 GMT - elapsed-time: - - '192' - etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 0dd4ffa6-c18f-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK - request: body: null headers: @@ -1308,49 +118,48 @@ interactions: ParameterSetName: - -n -g --disable-local-auth --auth-options User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '593' + - '691' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:17:59 GMT + - Wed, 18 Oct 2023 19:58:20 GMT elapsed-time: - - '184' + - '214' etag: - - W/"datetime'2023-03-13T11%3A06%3A19.2118977Z'" + - W/"datetime'2023-10-18T19%3A58%3A19.3766625Z'" expires: - '-1' pragma: - no-cache request-id: - - b6b0e882-c190-11ed-a808-b7b53f28d5a3 + - afabfd9c-6df0-11ee-9b1d-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9CD10473040144319DD31AC9BE8EDFAC Ref B: CO6AA3150218027 Ref C: 2023-10-18T19:58:20Z' status: code: 200 message: OK - request: - body: '{"location": "West US", "sku": {"name": "basic"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "Enabled", - "networkRuleSet": {"ipRules": []}, "disableLocalAuth": false, "authOptions": - {"apiKeyOnly": {}}}}' + body: '{"location": "East US 2 EUAP", "properties": {"authOptions": {"apiKeyOnly": + {}}, "disableLocalAuth": false, "encryptionWithCmk": {"enforcement": "Unspecified"}, + "hostingMode": "default", "networkRuleSet": {"ipRules": []}, "partitionCount": + 1, "publicNetworkAccess": "Enabled", "replicaCount": 1}, "sku": {"name": "basic"}}' headers: Accept: - application/json @@ -1361,49 +170,50 @@ interactions: Connection: - keep-alive Content-Length: - - '262' + - '322' Content-Type: - application/json ParameterSetName: - -n -g --disable-local-auth --auth-options User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '607' + - '705' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:18:01 GMT + - Wed, 18 Oct 2023 19:58:20 GMT elapsed-time: - - '353' + - '449' etag: - - W/"datetime'2023-03-13T11%3A18%3A01.7024419Z'" + - W/"datetime'2023-10-18T19%3A58%3A21.1808654Z'" expires: - '-1' pragma: - no-cache request-id: - - b6b0e882-c190-11ed-a808-b7b53f28d5a3 + - afabfd9c-6df0-11ee-9b1d-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/8a710914-c158-497a-9925-970bc42db59b x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + x-msedge-ref: + - 'Ref A: 5EFDB0A989B14967B5A587302172B3BD Ref B: CO6AA3150218027 Ref C: 2023-10-18T19:58:20Z' status: code: 200 message: OK @@ -1421,49 +231,49 @@ interactions: ParameterSetName: - -n -g --disable-local-auth --auth-options --aad-auth-failure-mode User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '607' + - '705' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:18:02 GMT + - Wed, 18 Oct 2023 19:58:21 GMT elapsed-time: - - '193' + - '204' etag: - - W/"datetime'2023-03-13T11%3A18%3A01.7024419Z'" + - W/"datetime'2023-10-18T19%3A58%3A21.1808654Z'" expires: - '-1' pragma: - no-cache request-id: - - b6b0e883-c190-11ed-a808-b7b53f28d5a3 + - b095ad37-6df0-11ee-ad2d-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A640F316F7734FB5AF9002499FAD7811 Ref B: CO6AA3150217049 Ref C: 2023-10-18T19:58:21Z' status: code: 200 message: OK - request: - body: '{"location": "West US", "sku": {"name": "basic"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "Enabled", - "networkRuleSet": {"ipRules": []}, "disableLocalAuth": false, "authOptions": - {"aadOrApiKey": {"aadAuthFailureMode": "http401WithBearerChallenge"}}}}' + body: '{"location": "East US 2 EUAP", "properties": {"authOptions": {"aadOrApiKey": + {"aadAuthFailureMode": "http401WithBearerChallenge"}}, "disableLocalAuth": false, + "encryptionWithCmk": {"enforcement": "Unspecified"}, "hostingMode": "default", + "networkRuleSet": {"ipRules": []}, "partitionCount": 1, "publicNetworkAccess": + "Enabled", "replicaCount": 1}, "sku": {"name": "basic"}}' headers: Accept: - application/json @@ -1474,49 +284,50 @@ interactions: Connection: - keep-alive Content-Length: - - '313' + - '373' Content-Type: - application/json ParameterSetName: - -n -g --disable-local-auth --auth-options --aad-auth-failure-mode User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '657' + - '755' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:18:03 GMT + - Wed, 18 Oct 2023 19:58:22 GMT elapsed-time: - - '374' + - '406' etag: - - W/"datetime'2023-03-13T11%3A18%3A03.6734943Z'" + - W/"datetime'2023-10-18T19%3A58%3A22.7121892Z'" expires: - '-1' pragma: - no-cache request-id: - - b6b0e883-c190-11ed-a808-b7b53f28d5a3 + - b095ad37-6df0-11ee-ad2d-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/780252da-9fbb-4eeb-ab15-6c2f01f3dc41 x-ms-ratelimit-remaining-subscription-writes: - '1198' + x-msedge-ref: + - 'Ref A: 5793D4CC0F5642F880EA3CE421AF5564 Ref B: CO6AA3150217049 Ref C: 2023-10-18T19:58:22Z' status: code: 200 message: OK @@ -1534,49 +345,49 @@ interactions: ParameterSetName: - -n -g --disable-local-auth --auth-options --aad-auth-failure-mode User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '657' + - '755' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:18:04 GMT + - Wed, 18 Oct 2023 19:58:23 GMT elapsed-time: - - '147' + - '204' etag: - - W/"datetime'2023-03-13T11%3A18%3A03.6734943Z'" + - W/"datetime'2023-10-18T19%3A58%3A22.7121892Z'" expires: - '-1' pragma: - no-cache request-id: - - b8df2c18-c190-11ed-a808-b7b53f28d5a3 + - b17cea68-6df0-11ee-bb4f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: BD3134F67E704D998AB7BEBAE11CB22E Ref B: CO6AA3150218053 Ref C: 2023-10-18T19:58:23Z' status: code: 200 message: OK - request: - body: '{"location": "West US", "sku": {"name": "basic"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "Enabled", - "networkRuleSet": {"ipRules": []}, "disableLocalAuth": false, "authOptions": - {"aadOrApiKey": {"aadAuthFailureMode": "http403"}}}}' + body: '{"location": "East US 2 EUAP", "properties": {"authOptions": {"aadOrApiKey": + {"aadAuthFailureMode": "http403"}}, "disableLocalAuth": false, "encryptionWithCmk": + {"enforcement": "Unspecified"}, "hostingMode": "default", "networkRuleSet": + {"ipRules": []}, "partitionCount": 1, "publicNetworkAccess": "Enabled", "replicaCount": + 1}, "sku": {"name": "basic"}}' headers: Accept: - application/json @@ -1587,49 +398,50 @@ interactions: Connection: - keep-alive Content-Length: - - '294' + - '354' Content-Type: - application/json ParameterSetName: - -n -g --disable-local-auth --auth-options --aad-auth-failure-mode User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http403"}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http403"}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '638' + - '736' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:18:06 GMT + - Wed, 18 Oct 2023 19:58:23 GMT elapsed-time: - - '746' + - '523' etag: - - W/"datetime'2023-03-13T11%3A18%3A06.0355604Z'" + - W/"datetime'2023-10-18T19%3A58%3A24.3274762Z'" expires: - '-1' pragma: - no-cache request-id: - - b8df2c18-c190-11ed-a808-b7b53f28d5a3 + - b17cea68-6df0-11ee-bb4f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/d4eb4fa5-d735-4a4f-b84f-a30db02b3785 x-ms-ratelimit-remaining-subscription-writes: - '1198' + x-msedge-ref: + - 'Ref A: AFCBD8A4B1804DD68C91AB19A0BF14A7 Ref B: CO6AA3150218053 Ref C: 2023-10-18T19:58:23Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_delete_list.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_delete_list.yaml index 8ef8cc5ff2a..dd97d868680 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_delete_list.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_delete_list.yaml @@ -13,10 +13,9 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices?api-version=2022-09-01 response: body: string: '{"value":[]}' @@ -28,17 +27,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:18:09 GMT + - Wed, 18 Oct 2023 20:14:09 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 99F75F6B593041389208057ED07EA3CE Ref B: CO6AA3150219023 Ref C: 2023-10-18T20:14:09Z' status: code: 200 message: OK @@ -56,38 +57,39 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T11:18:08Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_delete_list","date":"2023-10-18T20:14:06Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '396' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:18:09 GMT + - Wed, 18 Oct 2023 20:14:09 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 96C14F1F36444C579C6F76A3B581D893 Ref B: CO6AA3150220029 Ref C: 2023-10-18T20:14:09Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "sku": {"name": "standard"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "enabled"}}' + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": + 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "standard"}}' headers: Accept: - application/json @@ -98,45 +100,50 @@ interactions: Connection: - keep-alive Content-Length: - - '167' + - '172' Content-Type: - application/json ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '610' + - '732' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:18:18 GMT + - Wed, 18 Oct 2023 20:14:14 GMT elapsed-time: - - '7221' + - '3839' etag: - - W/"datetime'2023-03-13T11%3A18%3A18.7349027Z'" + - W/"datetime'2023-10-18T20%3A14%3A15.0529809Z'" expires: - '-1' pragma: - no-cache request-id: - - bc7c716e-c190-11ed-a808-b7b53f28d5a3 + - e583f682-6df2-11ee-b458-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/af8e7b60-0f50-4996-a08c-ba418313d5e5 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' + x-msedge-ref: + - 'Ref A: A8496BDD33424E13B1EAFA30984CF893 Ref B: CO6AA3150220039 Ref C: 2023-10-18T20:14:09Z' status: code: 201 message: Created @@ -154,39 +161,38 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices?api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"eTag":"W/\"datetime''2023-03-13T11%3A18%3A18.7349027Z''\"","disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}],"nextLink":null}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"eTag":"W/\"datetime''2023-10-18T20%3A14%3A15.0529809Z''\"","encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}],"nextLink":null}' headers: cache-control: - no-cache content-length: - - '696' + - '794' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:18:19 GMT + - Wed, 18 Oct 2023 20:14:15 GMT elapsed-time: - - '482' + - '314' expires: - '-1' pragma: - no-cache request-id: - - c2019c5e-c190-11ed-a808-b7b53f28d5a3 + - e9152766-6df2-11ee-99a7-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 289A9591AB7242CEBA2544BFA6BB9DAF Ref B: CO6AA3150219035 Ref C: 2023-10-18T20:14:15Z' status: code: 200 message: OK @@ -204,38 +210,39 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T11:18:08Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_delete_list","date":"2023-10-18T20:14:06Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '396' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:18:19 GMT + - Wed, 18 Oct 2023 20:14:15 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3783A8841EB14F349A10A43FFAE00630 Ref B: CO6AA3150220017 Ref C: 2023-10-18T20:14:16Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "sku": {"name": "standard"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "enabled"}}' + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": + 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "standard"}}' headers: Accept: - application/json @@ -246,45 +253,50 @@ interactions: Connection: - keep-alive Content-Length: - - '167' + - '172' Content-Type: - application/json ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '610' + - '732' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:18:26 GMT + - Wed, 18 Oct 2023 20:14:20 GMT elapsed-time: - - '5762' + - '3550' etag: - - W/"datetime'2023-03-13T11%3A18%3A26.6701114Z'" + - W/"datetime'2023-10-18T20%3A14%3A20.3336492Z'" expires: - '-1' pragma: - no-cache request-id: - - c2019c5f-c190-11ed-a808-b7b53f28d5a3 + - e976de4c-6df2-11ee-b0f2-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/3784a148-a336-4d30-9929-c1881b27c892 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: BDAAAEAC56924B539D164D5FDBAAB0E0 Ref B: CO6AA3150217019 Ref C: 2023-10-18T20:14:16Z' status: code: 201 message: Created @@ -302,40 +314,39 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices?api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"eTag":"W/\"datetime''2023-03-13T11%3A18%3A18.7349027Z''\"","disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"eTag":"W/\"datetime''2023-03-13T11%3A18%3A26.6701114Z''\"","disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}],"nextLink":null}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"eTag":"W/\"datetime''2023-10-18T20%3A14%3A20.3336492Z''\"","encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"eTag":"W/\"datetime''2023-10-18T20%3A14%3A15.0529809Z''\"","encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}],"nextLink":null}' headers: cache-control: - no-cache content-length: - - '1365' + - '1561' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:18:28 GMT + - Wed, 18 Oct 2023 20:14:21 GMT elapsed-time: - - '667' + - '406' expires: - '-1' pragma: - no-cache request-id: - - c6d4bacc-c190-11ed-a808-b7b53f28d5a3 + - ec4baf15-6df2-11ee-b81f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B5274F0C6C4E450F93A6062CF8AFDC60 Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:14:20Z' status: code: 200 message: OK @@ -355,10 +366,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: string: '' @@ -368,21 +378,25 @@ interactions: content-length: - '0' date: - - Mon, 13 Mar 2023 11:18:34 GMT + - Wed, 18 Oct 2023 20:14:25 GMT elapsed-time: - - '1571' + - '2503' expires: - '-1' pragma: - no-cache request-id: - - c6d4bacd-c190-11ed-a808-b7b53f28d5a3 + - ecc2de77-6df2-11ee-b280-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' + x-msedge-ref: + - 'Ref A: AB967D24A6AA488B9E63DF5D11C1BA91 Ref B: CO6AA3150219011 Ref C: 2023-10-18T20:14:21Z' status: code: 200 message: OK @@ -400,39 +414,38 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices?api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"eTag":"W/\"datetime''2023-03-13T11%3A18%3A26.6701114Z''\"","disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}],"nextLink":null}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"eTag":"W/\"datetime''2023-10-18T20%3A14%3A20.3336492Z''\"","encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}],"nextLink":null}' headers: cache-control: - no-cache content-length: - - '696' + - '794' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:18:36 GMT + - Wed, 18 Oct 2023 20:14:26 GMT elapsed-time: - - '495' + - '265' expires: - '-1' pragma: - no-cache request-id: - - cb5ee838-c190-11ed-a808-b7b53f28d5a3 + - efb6b5dc-6df2-11ee-8fa8-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1105A4F8A6DD4CCAB6D553D234A87E3E Ref B: CO6AA3150218025 Ref C: 2023-10-18T20:14:26Z' status: code: 200 message: OK @@ -452,10 +465,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: string: '' @@ -465,21 +477,25 @@ interactions: content-length: - '0' date: - - Mon, 13 Mar 2023 11:18:43 GMT + - Wed, 18 Oct 2023 20:14:30 GMT elapsed-time: - - '1577' + - '1766' expires: - '-1' pragma: - no-cache request-id: - - cc5d96f8-c190-11ed-a808-b7b53f28d5a3 + - f007c533-6df2-11ee-823d-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: C679294031E544C3B28B683A5BBB4B1D Ref B: CO6AA3150220053 Ref C: 2023-10-18T20:14:27Z' status: code: 200 message: OK @@ -497,10 +513,9 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices?api-version=2022-09-01 response: body: string: '{"value":[]}' @@ -512,17 +527,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:18:43 GMT + - Wed, 18 Oct 2023 20:14:30 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 075342DCBB9849BC903E4F890B344FA2 Ref B: CO6AA3150218035 Ref C: 2023-10-18T20:14:30Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_delete_show.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_delete_show.yaml index 931aeedb3e3..7ede98f96e3 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_delete_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_delete_show.yaml @@ -13,38 +13,39 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T11:18:46Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_delete_show","date":"2023-10-19T16:41:19Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '396' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:18:47 GMT + - Thu, 19 Oct 2023 16:41:20 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B80E8E2417F644849B925E8997893D94 Ref B: CO6AA3150218039 Ref C: 2023-10-19T16:41:20Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "sku": {"name": "standard"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "enabled"}}' + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": + 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "standard"}}' headers: Accept: - application/json @@ -55,45 +56,50 @@ interactions: Connection: - keep-alive Content-Length: - - '167' + - '172' Content-Type: - application/json ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '732' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:19:00 GMT + - Thu, 19 Oct 2023 16:41:24 GMT elapsed-time: - - '11808' + - '3539' etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" + - W/"datetime'2023-10-19T16%3A41%3A24.8364553Z'" expires: - '-1' pragma: - no-cache request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 + - 550a4e49-6e9e-11ee-9110-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/6e864d61-3e8a-4d20-9115-ec43f46eacb7 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + x-msedge-ref: + - 'Ref A: 92FD1D07CF5B4871AE7CDDC2A544FB74 Ref B: CO6AA3150219037 Ref C: 2023-10-19T16:41:20Z' status: code: 201 message: Created @@ -101,363 +107,50 @@ interactions: body: null headers: Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:19:31 GMT - elapsed-time: - - '167' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:20:02 GMT - elapsed-time: - - '163' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:20:32 GMT - elapsed-time: - - '152' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:21:02 GMT - elapsed-time: - - '169' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:21:32 GMT - elapsed-time: - - '166' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:22:02 GMT - elapsed-time: - - '163' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - search service create + - search service show Connection: - keep-alive ParameterSetName: - - -n -g --sku + - -n -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '732' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:22:34 GMT + - Thu, 19 Oct 2023 16:41:25 GMT elapsed-time: - - '168' + - '170' etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" + - W/"datetime'2023-10-19T16%3A41%3A24.8364553Z'" expires: - '-1' pragma: - no-cache request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 + - 57e45344-6e9e-11ee-8e6c-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B13DBDA1D8794F4ABADDD7C6D8696F1C Ref B: CO6AA3150217027 Ref C: 2023-10-19T16:41:25Z' status: code: 200 message: OK @@ -469,1098 +162,6 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:23:04 GMT - elapsed-time: - - '178' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:23:34 GMT - elapsed-time: - - '172' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:24:04 GMT - elapsed-time: - - '214' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:24:35 GMT - elapsed-time: - - '164' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:25:05 GMT - elapsed-time: - - '202' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:25:36 GMT - elapsed-time: - - '182' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:26:06 GMT - elapsed-time: - - '156' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:26:36 GMT - elapsed-time: - - '163' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:27:07 GMT - elapsed-time: - - '170' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:27:37 GMT - elapsed-time: - - '162' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:28:07 GMT - elapsed-time: - - '158' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:28:37 GMT - elapsed-time: - - '179' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:29:09 GMT - elapsed-time: - - '165' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:29:39 GMT - elapsed-time: - - '181' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:30:09 GMT - elapsed-time: - - '145' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:30:40 GMT - elapsed-time: - - '177' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:31:10 GMT - elapsed-time: - - '163' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:31:40 GMT - elapsed-time: - - '180' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:32:10 GMT - elapsed-time: - - '162' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '610' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:32:41 GMT - elapsed-time: - - '195' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d21486a7-c190-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - search service show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '610' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:32:43 GMT - elapsed-time: - - '176' - etag: - - W/"datetime'2023-03-13T11%3A19%3A00.9210304Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c49cff92-c192-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - search service delete Connection: - keep-alive @@ -1569,10 +170,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: string: '' @@ -1582,21 +182,25 @@ interactions: content-length: - '0' date: - - Mon, 13 Mar 2023 11:32:49 GMT + - Thu, 19 Oct 2023 16:41:30 GMT elapsed-time: - - '1799' + - '2391' expires: - '-1' pragma: - no-cache request-id: - - c49cff93-c192-11ed-a808-b7b53f28d5a3 + - 58434e2f-6e9e-11ee-af2f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: 0D755FC3CFA448FDBCBB68FFE2B2A23E Ref B: CO6AA3150218033 Ref C: 2023-10-19T16:41:26Z' status: code: 200 message: OK @@ -1614,10 +218,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Search/searchServices/test000002'' @@ -1631,17 +234,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:32:49 GMT + - Thu, 19 Oct 2023 16:41:31 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: 1378ADE797E14D9B99E08800A541A3CE Ref B: CO6AA3150217029 Ref C: 2023-10-19T16:41:31Z' status: code: 404 message: Not Found diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_ip_rules.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_ip_rules.yaml index ef7a6816800..86ecd59f41f 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_ip_rules.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_ip_rules.yaml @@ -13,40 +13,41 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T11:32:50Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_ip_rules","date":"2023-10-18T20:15:34Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '393' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:32:52 GMT + - Wed, 18 Oct 2023 20:15:37 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A25FDB15EAD84E26B00D4B2666D9A150 Ref B: CO6AA3150217049 Ref C: 2023-10-18T20:15:37Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "sku": {"name": "standard"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "enabled", - "networkRuleSet": {"ipRules": [{"value": "123.4.5.6"}, {"value": "123.5.6.7"}, - {"value": "123.6.7.8"}]}}}' + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "networkRuleSet": + {"ipRules": [{"value": "123.4.5.6"}, {"value": "123.5.6.7"}, {"value": "123.6.7.8"}]}, + "partitionCount": 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": + {"name": "standard"}}' headers: Accept: - application/json @@ -57,45 +58,50 @@ interactions: Connection: - keep-alive Content-Length: - - '272' + - '277' Content-Type: - application/json ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:33:00 GMT + - Wed, 18 Oct 2023 20:15:45 GMT elapsed-time: - - '7160' + - '7649' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/a2d18a85-f514-4695-965f-f0972bd18f4d x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' + x-msedge-ref: + - 'Ref A: 5689A1351DC14AA8A4B6129442CDAB9B Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:15:38Z' status: code: 201 message: Created @@ -113,41 +119,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:33:30 GMT + - Wed, 18 Oct 2023 20:15:46 GMT elapsed-time: - - '167' + - '424' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: BE4E83320CDE4075814198465D0AB580 Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:15:46Z' status: code: 200 message: OK @@ -165,41 +170,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:34:01 GMT + - Wed, 18 Oct 2023 20:16:16 GMT elapsed-time: - - '162' + - '290' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9242776D1F7049788AF949B8E60FC18C Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:16:16Z' status: code: 200 message: OK @@ -217,41 +221,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:34:31 GMT + - Wed, 18 Oct 2023 20:16:46 GMT elapsed-time: - - '181' + - '176' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8F3896775EAD4F6E91FB62B2B8F20C26 Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:16:47Z' status: code: 200 message: OK @@ -269,41 +272,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:35:02 GMT + - Wed, 18 Oct 2023 20:17:17 GMT elapsed-time: - - '158' + - '322' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2B907CD5469F455D9C29667A98BCB10E Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:17:17Z' status: code: 200 message: OK @@ -321,41 +323,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:35:32 GMT + - Wed, 18 Oct 2023 20:17:47 GMT elapsed-time: - - '514' + - '159' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5313AEC78F924D67847CFDE8BD7F90BA Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:17:47Z' status: code: 200 message: OK @@ -373,41 +374,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:36:03 GMT + - Wed, 18 Oct 2023 20:18:17 GMT elapsed-time: - - '188' + - '221' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: CDBA71F1A0AC40D8B45015B17D9F9900 Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:18:18Z' status: code: 200 message: OK @@ -425,41 +425,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:36:33 GMT + - Wed, 18 Oct 2023 20:18:48 GMT elapsed-time: - - '162' + - '188' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D957337522B44B81A949C015F7C281FA Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:18:48Z' status: code: 200 message: OK @@ -477,41 +476,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:37:04 GMT + - Wed, 18 Oct 2023 20:19:18 GMT elapsed-time: - - '185' + - '256' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 675F4753097B4C6A993BCE84705D109E Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:19:18Z' status: code: 200 message: OK @@ -529,41 +527,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:37:34 GMT + - Wed, 18 Oct 2023 20:19:48 GMT elapsed-time: - - '167' + - '182' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E5FEB2A840674A1EB6EF451A9038B95B Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:19:49Z' status: code: 200 message: OK @@ -581,41 +578,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:38:04 GMT + - Wed, 18 Oct 2023 20:20:19 GMT elapsed-time: - - '175' + - '269' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4C58D9F912524F91B99F866636201714 Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:20:19Z' status: code: 200 message: OK @@ -633,41 +629,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:38:35 GMT + - Wed, 18 Oct 2023 20:20:49 GMT elapsed-time: - - '168' + - '285' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2033CB497885403996E6A4A2D1097108 Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:20:49Z' status: code: 200 message: OK @@ -685,41 +680,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:39:05 GMT + - Wed, 18 Oct 2023 20:21:19 GMT elapsed-time: - - '156' + - '221' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6F2864039780481CA2C62912F66EDA89 Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:21:20Z' status: code: 200 message: OK @@ -737,41 +731,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:39:36 GMT + - Wed, 18 Oct 2023 20:21:50 GMT elapsed-time: - - '150' + - '257' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9FAEED49F81D4FE9B9FF7DE80828E6C7 Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:21:50Z' status: code: 200 message: OK @@ -789,41 +782,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:40:06 GMT + - Wed, 18 Oct 2023 20:22:20 GMT elapsed-time: - - '167' + - '363' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F319017639F04FEA89E8B125F67419BA Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:22:21Z' status: code: 200 message: OK @@ -841,41 +833,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:40:36 GMT + - Wed, 18 Oct 2023 20:22:50 GMT elapsed-time: - - '200' + - '182' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C8468D6089DA4AFA8C026EAB276FB9D5 Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:22:51Z' status: code: 200 message: OK @@ -893,41 +884,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:41:07 GMT + - Wed, 18 Oct 2023 20:23:21 GMT elapsed-time: - - '191' + - '228' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 023052AE66D441AFABED9391DE7E2040 Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:23:21Z' status: code: 200 message: OK @@ -945,41 +935,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:41:37 GMT + - Wed, 18 Oct 2023 20:23:52 GMT elapsed-time: - - '241' + - '185' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 668C7948D8954623B25FF7E09F559BAC Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:23:52Z' status: code: 200 message: OK @@ -997,41 +986,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:42:08 GMT + - Wed, 18 Oct 2023 20:24:22 GMT elapsed-time: - - '180' + - '282' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 572A77386124400FACC61872E11D0428 Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:24:22Z' status: code: 200 message: OK @@ -1049,41 +1037,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:42:38 GMT + - Wed, 18 Oct 2023 20:24:53 GMT elapsed-time: - - '191' + - '225' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D1090E5D8FDC42D1AFB61DF5D38CFADA Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:24:53Z' status: code: 200 message: OK @@ -1101,41 +1088,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:43:09 GMT + - Wed, 18 Oct 2023 20:25:23 GMT elapsed-time: - - '255' + - '203' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 724DAA5D39734747A27B4577A4DF1835 Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:25:23Z' status: code: 200 message: OK @@ -1153,41 +1139,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:43:39 GMT + - Wed, 18 Oct 2023 20:25:53 GMT elapsed-time: - - '197' + - '252' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7CB59A2A17CE41FDAFA3CE3D0337BE28 Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:25:53Z' status: code: 200 message: OK @@ -1205,41 +1190,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:44:10 GMT + - Wed, 18 Oct 2023 20:26:24 GMT elapsed-time: - - '362' + - '246' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E177B8461A134EF0862B306726A9DC49 Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:26:24Z' status: code: 200 message: OK @@ -1257,41 +1241,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '675' + - '797' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:44:40 GMT + - Wed, 18 Oct 2023 20:26:54 GMT elapsed-time: - - '182' + - '287' etag: - - W/"datetime'2023-03-13T11%3A33%3A00.66215Z'" + - W/"datetime'2023-10-18T20%3A15%3A45.5910046Z'" expires: - '-1' pragma: - no-cache request-id: - - ca982232-c192-11ed-a808-b7b53f28d5a3 + - 1a1b7d8c-6df3-11ee-b2da-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: DC966687285A4FEE899F46D8A6BF7066 Ref B: CO6AA3150217023 Ref C: 2023-10-18T20:26:54Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_msi.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_msi.yaml index d69ea36b8cd..7e995b09288 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_msi.yaml @@ -13,39 +13,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T11:44:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_msi","date":"2023-10-18T20:28:18Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '388' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:44:44 GMT + - Wed, 18 Oct 2023 20:28:19 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F2D6FFEB6667462B99537D755C618F4D Ref B: CO6AA3150219029 Ref C: 2023-10-18T20:28:19Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "sku": {"name": "basic"}, "identity": {"type": "SystemAssigned"}, - "properties": {"replicaCount": 1, "partitionCount": 1, "hostingMode": "default", - "publicNetworkAccess": "enabled"}}' + body: '{"identity": {"type": "SystemAssigned"}, "location": "eastus2euap", "properties": + {"hostingMode": "default", "partitionCount": 1, "publicNetworkAccess": "enabled", + "replicaCount": 1}, "sku": {"name": "basic"}}' headers: Accept: - application/json @@ -56,45 +57,50 @@ interactions: Connection: - keep-alive Content-Length: - - '204' + - '209' Content-Type: - application/json ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"01c56efb-15a5-48f5-bc6d-e746cdf06625","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:44:55 GMT + - Wed, 18 Oct 2023 20:28:24 GMT elapsed-time: - - '7927' + - '3800' etag: - - W/"datetime'2023-03-13T11%3A44%3A56.0510341Z'" + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" expires: - '-1' pragma: - no-cache request-id: - - 72cc70ed-c194-11ed-a808-b7b53f28d5a3 + - dff5a973-6df4-11ee-862a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/d8eeca73-6af1-495b-9652-ff7c99674a40 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 90798B73BD5A44EE831EFC559AB3ABE8 Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:28:19Z' status: code: 201 message: Created @@ -112,41 +118,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"01c56efb-15a5-48f5-bc6d-e746cdf06625","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:45:27 GMT + - Wed, 18 Oct 2023 20:28:24 GMT elapsed-time: - - '179' + - '248' etag: - - W/"datetime'2023-03-13T11%3A44%3A56.0510341Z'" + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" expires: - '-1' pragma: - no-cache request-id: - - 72cc70ed-c194-11ed-a808-b7b53f28d5a3 + - dff5a973-6df4-11ee-862a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2373462FBB1E465597DF1C546E926DDA Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:28:24Z' status: code: 200 message: OK @@ -164,41 +169,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"01c56efb-15a5-48f5-bc6d-e746cdf06625","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:45:57 GMT + - Wed, 18 Oct 2023 20:28:55 GMT elapsed-time: - - '165' + - '177' etag: - - W/"datetime'2023-03-13T11%3A44%3A56.0510341Z'" + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" expires: - '-1' pragma: - no-cache request-id: - - 72cc70ed-c194-11ed-a808-b7b53f28d5a3 + - dff5a973-6df4-11ee-862a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 491B7AD51F5944CFA8135A7CDA0DF734 Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:28:54Z' status: code: 200 message: OK @@ -216,41 +220,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"01c56efb-15a5-48f5-bc6d-e746cdf06625","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:46:27 GMT + - Wed, 18 Oct 2023 20:29:25 GMT elapsed-time: - - '181' + - '200' etag: - - W/"datetime'2023-03-13T11%3A44%3A56.0510341Z'" + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" expires: - '-1' pragma: - no-cache request-id: - - 72cc70ed-c194-11ed-a808-b7b53f28d5a3 + - dff5a973-6df4-11ee-862a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A0027F7CA5624BFCA4D95B0F9614825F Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:29:25Z' status: code: 200 message: OK @@ -268,41 +271,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"01c56efb-15a5-48f5-bc6d-e746cdf06625","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:46:58 GMT + - Wed, 18 Oct 2023 20:29:55 GMT elapsed-time: - - '175' + - '203' etag: - - W/"datetime'2023-03-13T11%3A44%3A56.0510341Z'" + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" expires: - '-1' pragma: - no-cache request-id: - - 72cc70ed-c194-11ed-a808-b7b53f28d5a3 + - dff5a973-6df4-11ee-862a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7CB5C5FE59F94728A568381100BFD968 Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:29:55Z' status: code: 200 message: OK @@ -320,41 +322,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"01c56efb-15a5-48f5-bc6d-e746cdf06625","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:47:28 GMT + - Wed, 18 Oct 2023 20:30:26 GMT elapsed-time: - - '149' + - '321' etag: - - W/"datetime'2023-03-13T11%3A44%3A56.0510341Z'" + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" expires: - '-1' pragma: - no-cache request-id: - - 72cc70ed-c194-11ed-a808-b7b53f28d5a3 + - dff5a973-6df4-11ee-862a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5FFA65562F0A47BD8D3D23BB7C75A58A Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:30:25Z' status: code: 200 message: OK @@ -372,41 +373,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"01c56efb-15a5-48f5-bc6d-e746cdf06625","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:47:58 GMT + - Wed, 18 Oct 2023 20:30:56 GMT elapsed-time: - - '163' + - '191' etag: - - W/"datetime'2023-03-13T11%3A44%3A56.0510341Z'" + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" expires: - '-1' pragma: - no-cache request-id: - - 72cc70ed-c194-11ed-a808-b7b53f28d5a3 + - dff5a973-6df4-11ee-862a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D00A993F542D4E27919082240AC27069 Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:30:56Z' status: code: 200 message: OK @@ -424,41 +424,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"01c56efb-15a5-48f5-bc6d-e746cdf06625","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:48:28 GMT + - Wed, 18 Oct 2023 20:31:26 GMT elapsed-time: - - '154' + - '310' etag: - - W/"datetime'2023-03-13T11%3A44%3A56.0510341Z'" + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" expires: - '-1' pragma: - no-cache request-id: - - 72cc70ed-c194-11ed-a808-b7b53f28d5a3 + - dff5a973-6df4-11ee-862a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2376CE22F4EC4C0BBB734F8051AE4ED4 Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:31:26Z' status: code: 200 message: OK @@ -476,41 +475,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"01c56efb-15a5-48f5-bc6d-e746cdf06625","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:48:58 GMT + - Wed, 18 Oct 2023 20:31:57 GMT elapsed-time: - - '193' + - '203' etag: - - W/"datetime'2023-03-13T11%3A44%3A56.0510341Z'" + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" expires: - '-1' pragma: - no-cache request-id: - - 72cc70ed-c194-11ed-a808-b7b53f28d5a3 + - dff5a973-6df4-11ee-862a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4C2EF667169E420C9F78B4C155F459FB Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:31:57Z' status: code: 200 message: OK @@ -528,41 +526,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"01c56efb-15a5-48f5-bc6d-e746cdf06625","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:49:30 GMT + - Wed, 18 Oct 2023 20:32:27 GMT elapsed-time: - - '182' + - '219' etag: - - W/"datetime'2023-03-13T11%3A44%3A56.0510341Z'" + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" expires: - '-1' pragma: - no-cache request-id: - - 72cc70ed-c194-11ed-a808-b7b53f28d5a3 + - dff5a973-6df4-11ee-862a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 050CEED1D519492A9E77AF4CE59EA49E Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:32:27Z' status: code: 200 message: OK @@ -580,41 +577,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"01c56efb-15a5-48f5-bc6d-e746cdf06625","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:50:00 GMT + - Wed, 18 Oct 2023 20:32:57 GMT elapsed-time: - - '235' + - '276' etag: - - W/"datetime'2023-03-13T11%3A44%3A56.0510341Z'" + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" expires: - '-1' pragma: - no-cache request-id: - - 72cc70ed-c194-11ed-a808-b7b53f28d5a3 + - dff5a973-6df4-11ee-862a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E279353552304E06A01390DC5C39F85F Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:32:57Z' status: code: 200 message: OK @@ -632,41 +628,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"01c56efb-15a5-48f5-bc6d-e746cdf06625","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:50:30 GMT + - Wed, 18 Oct 2023 20:33:28 GMT elapsed-time: - - '148' + - '166' etag: - - W/"datetime'2023-03-13T11%3A44%3A56.0510341Z'" + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" expires: - '-1' pragma: - no-cache request-id: - - 72cc70ed-c194-11ed-a808-b7b53f28d5a3 + - dff5a973-6df4-11ee-862a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: FB7AAB7AA3094723B3A6AA4223460103 Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:33:28Z' status: code: 200 message: OK @@ -684,41 +679,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"01c56efb-15a5-48f5-bc6d-e746cdf06625","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:51:00 GMT + - Wed, 18 Oct 2023 20:33:58 GMT elapsed-time: - - '161' + - '316' etag: - - W/"datetime'2023-03-13T11%3A44%3A56.0510341Z'" + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" expires: - '-1' pragma: - no-cache request-id: - - 72cc70ed-c194-11ed-a808-b7b53f28d5a3 + - dff5a973-6df4-11ee-862a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F35E567502F143D988CBFFFA11DA62C6 Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:33:58Z' status: code: 200 message: OK @@ -736,41 +730,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"01c56efb-15a5-48f5-bc6d-e746cdf06625","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:51:31 GMT + - Wed, 18 Oct 2023 20:34:29 GMT elapsed-time: - - '219' + - '188' etag: - - W/"datetime'2023-03-13T11%3A44%3A56.0510341Z'" + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" expires: - '-1' pragma: - no-cache request-id: - - 72cc70ed-c194-11ed-a808-b7b53f28d5a3 + - dff5a973-6df4-11ee-862a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D2BC2A2176D34F0DA20C87A1B7D34C91 Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:34:29Z' status: code: 200 message: OK @@ -788,41 +781,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"01c56efb-15a5-48f5-bc6d-e746cdf06625","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:52:01 GMT + - Wed, 18 Oct 2023 20:34:59 GMT elapsed-time: - - '154' + - '181' etag: - - W/"datetime'2023-03-13T11%3A44%3A56.0510341Z'" + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" expires: - '-1' pragma: - no-cache request-id: - - 72cc70ed-c194-11ed-a808-b7b53f28d5a3 + - dff5a973-6df4-11ee-862a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4B14C26D311B4D399C1ED39DE742E23F Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:34:59Z' status: code: 200 message: OK @@ -840,41 +832,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"01c56efb-15a5-48f5-bc6d-e746cdf06625","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:52:31 GMT + - Wed, 18 Oct 2023 20:35:29 GMT elapsed-time: - - '147' + - '251' etag: - - W/"datetime'2023-03-13T11%3A44%3A56.0510341Z'" + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" expires: - '-1' pragma: - no-cache request-id: - - 72cc70ed-c194-11ed-a808-b7b53f28d5a3 + - dff5a973-6df4-11ee-862a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 036E96755B004B45A001EBF33BE68B13 Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:35:29Z' status: code: 200 message: OK @@ -892,41 +883,91 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"01c56efb-15a5-48f5-bc6d-e746cdf06625","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:53:02 GMT + - Wed, 18 Oct 2023 20:36:00 GMT elapsed-time: - - '188' + - '221' + etag: + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dff5a973-6df4-11ee-862a-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: B67D3D94D9034F8D8CFA7775C3B49B31 Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:36:00Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku --identity-type + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + headers: + cache-control: + - no-cache + content-length: + - '877' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 20:36:30 GMT + elapsed-time: + - '171' etag: - - W/"datetime'2023-03-13T11%3A44%3A56.0510341Z'" + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" expires: - '-1' pragma: - no-cache request-id: - - 72cc70ed-c194-11ed-a808-b7b53f28d5a3 + - dff5a973-6df4-11ee-862a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: EB7AD3E0ADB141688163073F04129AAD Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:36:30Z' status: code: 200 message: OK @@ -944,41 +985,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"01c56efb-15a5-48f5-bc6d-e746cdf06625","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:53:32 GMT + - Wed, 18 Oct 2023 20:37:00 GMT elapsed-time: - '194' etag: - - W/"datetime'2023-03-13T11%3A44%3A56.0510341Z'" + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" expires: - '-1' pragma: - no-cache request-id: - - 72cc70ed-c194-11ed-a808-b7b53f28d5a3 + - dff5a973-6df4-11ee-862a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B7C513D6DA5B4D7B9C05986A29697DC8 Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:37:00Z' status: code: 200 message: OK @@ -996,41 +1036,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"01c56efb-15a5-48f5-bc6d-e746cdf06625","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:54:03 GMT + - Wed, 18 Oct 2023 20:37:31 GMT elapsed-time: - - '153' + - '347' etag: - - W/"datetime'2023-03-13T11%3A44%3A56.0510341Z'" + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" expires: - '-1' pragma: - no-cache request-id: - - 72cc70ed-c194-11ed-a808-b7b53f28d5a3 + - dff5a973-6df4-11ee-862a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 099D7D4D84DB4B52B1E86FAE0189A99F Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:37:31Z' status: code: 200 message: OK @@ -1048,41 +1087,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"01c56efb-15a5-48f5-bc6d-e746cdf06625","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:54:34 GMT + - Wed, 18 Oct 2023 20:38:01 GMT elapsed-time: - - '191' + - '202' etag: - - W/"datetime'2023-03-13T11%3A44%3A56.0510341Z'" + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" expires: - '-1' pragma: - no-cache request-id: - - 72cc70ed-c194-11ed-a808-b7b53f28d5a3 + - dff5a973-6df4-11ee-862a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C4970292025842EEB168AEE4627D3092 Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:38:01Z' status: code: 200 message: OK @@ -1100,41 +1138,142 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"01c56efb-15a5-48f5-bc6d-e746cdf06625","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '747' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:55:04 GMT + - Wed, 18 Oct 2023 20:38:31 GMT elapsed-time: - - '156' + - '197' + etag: + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dff5a973-6df4-11ee-862a-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 3D401E0B111A49B38BE65F567B0B952A Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:38:32Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku --identity-type + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + headers: + cache-control: + - no-cache + content-length: + - '877' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 20:39:02 GMT + elapsed-time: + - '263' + etag: + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - dff5a973-6df4-11ee-862a-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 36DD0949016E4F7F979CB81C8D791110 Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:39:02Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku --identity-type + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"8c760279-b10c-424c-91e4-afdacb6dcd0a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + headers: + cache-control: + - no-cache + content-length: + - '869' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 20:39:32 GMT + elapsed-time: + - '191' etag: - - W/"datetime'2023-03-13T11%3A44%3A56.0510341Z'" + - W/"datetime'2023-10-18T20%3A28%3A24.0674152Z'" expires: - '-1' pragma: - no-cache request-id: - - 72cc70ed-c194-11ed-a808-b7b53f28d5a3 + - dff5a973-6df4-11ee-862a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C4CFF6A5EA0D4DD8BAC755B29FA32D01 Ref B: CO6AA3150220037 Ref C: 2023-10-18T20:39:32Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_multi_partition.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_multi_partition.yaml index 999db06abdb..ece37413ebe 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_multi_partition.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_multi_partition.yaml @@ -13,38 +13,39 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T11:55:06Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_multi_partition","date":"2023-10-18T20:28:38Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '400' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:55:09 GMT + - Wed, 18 Oct 2023 20:28:38 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: FFAD78859A4B4DF0BD384AAC64B0AB70 Ref B: CO6AA3150219053 Ref C: 2023-10-18T20:28:39Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "sku": {"name": "standard"}, "properties": {"replicaCount": - 1, "partitionCount": 2, "hostingMode": "default", "publicNetworkAccess": "enabled"}}' + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": + 2, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "standard"}}' headers: Accept: - application/json @@ -55,45 +56,50 @@ interactions: Connection: - keep-alive Content-Length: - - '167' + - '172' Content-Type: - application/json ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:55:21 GMT + - Wed, 18 Oct 2023 20:28:47 GMT elapsed-time: - - '10770' + - '7812' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/3a1805a7-76e8-4518-bac7-fb07cccd8d36 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' + x-msedge-ref: + - 'Ref A: 96E01D550D9B4176AC26FAFEBB3BC2C7 Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:28:39Z' status: code: 201 message: Created @@ -111,41 +117,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:55:52 GMT + - Wed, 18 Oct 2023 20:28:47 GMT elapsed-time: - - '146' + - '336' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 18F0C272E93F4F6AA3D2CABFBDF6D7FD Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:28:47Z' status: code: 200 message: OK @@ -163,41 +168,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:56:22 GMT + - Wed, 18 Oct 2023 20:29:18 GMT elapsed-time: - - '170' + - '270' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C1BE124777384FC384DFCE3546F7A074 Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:29:18Z' status: code: 200 message: OK @@ -215,93 +219,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:56:53 GMT + - Wed, 18 Oct 2023 20:29:48 GMT elapsed-time: - - '188' - etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:57:23 GMT - elapsed-time: - - '196' + - '262' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9CD1FD328CFA441882252399D5F26D07 Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:29:48Z' status: code: 200 message: OK @@ -319,41 +270,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:57:53 GMT + - Wed, 18 Oct 2023 20:30:19 GMT elapsed-time: - - '160' + - '512' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C8045476C43C4464A54668740CCED275 Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:30:19Z' status: code: 200 message: OK @@ -371,301 +321,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 11:58:24 GMT + - Wed, 18 Oct 2023 20:30:49 GMT elapsed-time: - - '183' - etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:58:54 GMT - elapsed-time: - - '183' - etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:59:24 GMT - elapsed-time: - - '160' - etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 11:59:54 GMT - elapsed-time: - - '185' - etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:00:26 GMT - elapsed-time: - - '164' - etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:00:56 GMT - elapsed-time: - - '174' + - '175' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: EC7B46A7E5AB40E08DE4B318877A548E Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:30:49Z' status: code: 200 message: OK @@ -683,41 +372,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:01:27 GMT + - Wed, 18 Oct 2023 20:31:20 GMT elapsed-time: - - '161' + - '421' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 506F46F3DFE7452CB627B20B8F3498FC Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:31:19Z' status: code: 200 message: OK @@ -735,41 +423,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:01:57 GMT + - Wed, 18 Oct 2023 20:31:50 GMT elapsed-time: - - '180' + - '181' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7E74FAF55595430083C336767432F632 Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:31:50Z' status: code: 200 message: OK @@ -787,41 +474,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:02:27 GMT + - Wed, 18 Oct 2023 20:32:20 GMT elapsed-time: - - '183' + - '317' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7CCDF29973384568886ACEA72EB4F288 Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:32:20Z' status: code: 200 message: OK @@ -839,41 +525,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:02:57 GMT + - Wed, 18 Oct 2023 20:32:51 GMT elapsed-time: - - '163' + - '188' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: DA3E2DD371584C1285929CB1C9A89FF7 Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:32:51Z' status: code: 200 message: OK @@ -891,41 +576,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:03:28 GMT + - Wed, 18 Oct 2023 20:33:21 GMT elapsed-time: - - '181' + - '284' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B4E239A99F8945BEA250913CDBDA889E Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:33:21Z' status: code: 200 message: OK @@ -943,41 +627,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:03:59 GMT + - Wed, 18 Oct 2023 20:33:51 GMT elapsed-time: - - '170' + - '246' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 74382BE92E14472A9AA18CE5D14BB75A Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:33:51Z' status: code: 200 message: OK @@ -995,41 +678,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:04:29 GMT + - Wed, 18 Oct 2023 20:34:22 GMT elapsed-time: - - '163' + - '315' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A6E6DA582DB7404EB465864BE4947DAA Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:34:22Z' status: code: 200 message: OK @@ -1047,41 +729,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:04:59 GMT + - Wed, 18 Oct 2023 20:34:52 GMT elapsed-time: - - '182' + - '232' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: AD34F53683C347A8946218BE1B860CE1 Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:34:52Z' status: code: 200 message: OK @@ -1099,41 +780,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:05:29 GMT + - Wed, 18 Oct 2023 20:35:23 GMT elapsed-time: - - '162' + - '297' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D7AF91E02D1143A895FBA0158972344E Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:35:23Z' status: code: 200 message: OK @@ -1151,41 +831,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:06:00 GMT + - Wed, 18 Oct 2023 20:35:53 GMT elapsed-time: - - '194' + - '200' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: EB9E74EA877A4854AB69D406C1232A99 Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:35:53Z' status: code: 200 message: OK @@ -1203,41 +882,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:06:30 GMT + - Wed, 18 Oct 2023 20:36:23 GMT elapsed-time: - - '175' + - '292' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 78B3925AE82B47FB945E678369595FCD Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:36:23Z' status: code: 200 message: OK @@ -1255,41 +933,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:07:00 GMT + - Wed, 18 Oct 2023 20:36:54 GMT elapsed-time: - - '165' + - '270' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: EC019FA694944671AE39B24B3340C4E1 Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:36:54Z' status: code: 200 message: OK @@ -1307,41 +984,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:07:31 GMT + - Wed, 18 Oct 2023 20:37:24 GMT elapsed-time: - - '187' + - '220' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A726EA7DF2F848F1B7B1F81F950892D3 Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:37:24Z' status: code: 200 message: OK @@ -1359,41 +1035,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:08:02 GMT + - Wed, 18 Oct 2023 20:37:54 GMT elapsed-time: - - '151' + - '180' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1710B73F2AFD4E5791CF0869584702D4 Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:37:55Z' status: code: 200 message: OK @@ -1411,41 +1086,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:08:32 GMT + - Wed, 18 Oct 2023 20:38:25 GMT elapsed-time: - - '169' + - '227' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: FBCB7D2B47D54BFE92FCDA0348F6997B Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:38:25Z' status: code: 200 message: OK @@ -1463,41 +1137,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:09:02 GMT + - Wed, 18 Oct 2023 20:38:55 GMT elapsed-time: - - '175' + - '210' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 45A07BD8D653456B94F1B1887084AFD5 Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:38:55Z' status: code: 200 message: OK @@ -1515,41 +1188,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:09:33 GMT + - Wed, 18 Oct 2023 20:39:25 GMT elapsed-time: - - '151' + - '247' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C860DFC281D54925B14B2B1934D84561 Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:39:26Z' status: code: 200 message: OK @@ -1567,41 +1239,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '610' + - '732' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:10:03 GMT + - Wed, 18 Oct 2023 20:39:56 GMT elapsed-time: - - '190' + - '350' etag: - - W/"datetime'2023-03-13T11%3A55%3A21.8677565Z'" + - W/"datetime'2023-10-18T20%3A28%3A47.4211051Z'" expires: - '-1' pragma: - no-cache request-id: - - e7a5a9c8-c195-11ed-a808-b7b53f28d5a3 + - ebc7350b-6df4-11ee-b39f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2F2E9F54CC0E46BBAC84776399767E75 Ref B: CO6AA3150219051 Ref C: 2023-10-18T20:39:56Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_multi_replica.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_multi_replica.yaml index 565477dcc03..f0af01921cc 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_multi_replica.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_multi_replica.yaml @@ -13,38 +13,39 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T12:10:06Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_multi_replica","date":"2023-10-18T20:42:16Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '398' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:10:06 GMT + - Wed, 18 Oct 2023 20:42:17 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 274033DA13FD46548496BD03CC254136 Ref B: CO6AA3150217049 Ref C: 2023-10-18T20:42:17Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "sku": {"name": "standard"}, "properties": {"replicaCount": - 2, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "enabled"}}' + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": + 1, "publicNetworkAccess": "enabled", "replicaCount": 2}, "sku": {"name": "standard"}}' headers: Accept: - application/json @@ -55,45 +56,50 @@ interactions: Connection: - keep-alive Content-Length: - - '167' + - '172' Content-Type: - application/json ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:10:20 GMT + - Wed, 18 Oct 2023 20:42:27 GMT elapsed-time: - - '12096' + - '8964' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/796986a9-65c2-4f87-9e67-d9857b3bcdbe x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' + x-msedge-ref: + - 'Ref A: 05ACECC27892434383BA6F1CFA5D0CB0 Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:42:17Z' status: code: 201 message: Created @@ -111,41 +117,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:10:51 GMT + - Wed, 18 Oct 2023 20:42:27 GMT elapsed-time: - - '167' + - '225' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 21ABA8C637114910842C859C31CD47EA Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:42:27Z' status: code: 200 message: OK @@ -163,41 +168,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:11:21 GMT + - Wed, 18 Oct 2023 20:42:57 GMT elapsed-time: - - '165' + - '160' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 304FD2B97E444569863CA1E88EAD9F7A Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:42:57Z' status: code: 200 message: OK @@ -215,41 +219,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:11:51 GMT + - Wed, 18 Oct 2023 20:43:28 GMT elapsed-time: - - '250' + - '352' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8B4E77D9A96F40EBAC70CB33EDD88195 Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:43:28Z' status: code: 200 message: OK @@ -267,41 +270,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:12:22 GMT + - Wed, 18 Oct 2023 20:43:58 GMT elapsed-time: - - '263' + - '210' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 274CBA7735A946FFB52E8B3A4CCFC8AE Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:43:58Z' status: code: 200 message: OK @@ -319,41 +321,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:12:53 GMT + - Wed, 18 Oct 2023 20:44:28 GMT elapsed-time: - - '314' + - '198' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 072175578B5E49BD966C4A74716F7695 Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:44:28Z' status: code: 200 message: OK @@ -371,41 +372,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:13:23 GMT + - Wed, 18 Oct 2023 20:44:59 GMT elapsed-time: - - '313' + - '204' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 0703F63E521F4A82B1F65BD5757CBE98 Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:44:59Z' status: code: 200 message: OK @@ -423,41 +423,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:13:54 GMT + - Wed, 18 Oct 2023 20:45:29 GMT elapsed-time: - - '435' + - '374' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7B43A20D9D064777836824F53509A900 Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:45:29Z' status: code: 200 message: OK @@ -475,93 +474,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:14:24 GMT + - Wed, 18 Oct 2023 20:45:59 GMT elapsed-time: - - '222' - etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:14:54 GMT - elapsed-time: - - '170' + - '192' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8964EEBB403E46E1BC5CD741766E30A8 Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:46:00Z' status: code: 200 message: OK @@ -579,41 +525,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:15:25 GMT + - Wed, 18 Oct 2023 20:46:30 GMT elapsed-time: - - '147' + - '180' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5933A32FF7134E4E912F59E95F3ACA4C Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:46:30Z' status: code: 200 message: OK @@ -631,41 +576,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:15:55 GMT + - Wed, 18 Oct 2023 20:47:00 GMT elapsed-time: - - '167' + - '191' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E621B896E235474AA3431308F274C4DB Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:47:00Z' status: code: 200 message: OK @@ -683,41 +627,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:16:26 GMT + - Wed, 18 Oct 2023 20:47:30 GMT elapsed-time: - - '164' + - '252' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B499E3AF5418498BBACE2B06D50520A2 Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:47:30Z' status: code: 200 message: OK @@ -735,41 +678,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:16:56 GMT + - Wed, 18 Oct 2023 20:48:01 GMT elapsed-time: - - '184' + - '219' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7F3A7A3E0D114483A51130584C3440D9 Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:48:01Z' status: code: 200 message: OK @@ -787,41 +729,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:17:27 GMT + - Wed, 18 Oct 2023 20:48:31 GMT elapsed-time: - - '155' + - '214' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C256FBBBC3FA40469F9BC0223E5A7F7F Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:48:31Z' status: code: 200 message: OK @@ -839,41 +780,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:17:57 GMT + - Wed, 18 Oct 2023 20:49:01 GMT elapsed-time: - - '179' + - '229' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E794969F66784811BBFD4D99829FD6B3 Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:49:02Z' status: code: 200 message: OK @@ -891,41 +831,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:18:27 GMT + - Wed, 18 Oct 2023 20:49:32 GMT elapsed-time: - - '165' + - '217' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: ADCE3373B6D34D26B51204B5F6757DB2 Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:49:32Z' status: code: 200 message: OK @@ -943,41 +882,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:18:57 GMT + - Wed, 18 Oct 2023 20:50:02 GMT elapsed-time: - - '174' + - '204' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7257ACE3B58F4411ABD38D2990C0D312 Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:50:02Z' status: code: 200 message: OK @@ -995,41 +933,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:19:29 GMT + - Wed, 18 Oct 2023 20:50:32 GMT elapsed-time: - - '194' + - '209' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5E7A5B318547492EB67BA019A5939BC2 Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:50:33Z' status: code: 200 message: OK @@ -1047,41 +984,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:19:59 GMT + - Wed, 18 Oct 2023 20:51:03 GMT elapsed-time: - - '190' + - '257' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5FDA72F29CFD419EBDEDF7C959DAE880 Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:51:03Z' status: code: 200 message: OK @@ -1099,41 +1035,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:20:29 GMT + - Wed, 18 Oct 2023 20:51:33 GMT elapsed-time: - - '176' + - '230' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: EAFA1D7C222F4F3495D10EE35F54E112 Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:51:33Z' status: code: 200 message: OK @@ -1151,41 +1086,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:20:59 GMT + - Wed, 18 Oct 2023 20:52:03 GMT elapsed-time: - - '163' + - '221' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 98281039F81D4EDAAB366DB7C5717B42 Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:52:04Z' status: code: 200 message: OK @@ -1203,41 +1137,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:21:29 GMT + - Wed, 18 Oct 2023 20:52:34 GMT elapsed-time: - - '177' + - '342' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8E544A6846A34D9A852E40DA740D65C3 Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:52:34Z' status: code: 200 message: OK @@ -1255,41 +1188,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:22:00 GMT + - Wed, 18 Oct 2023 20:53:04 GMT elapsed-time: - - '202' + - '222' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 477BC5BD3B2D443F8F78454F9882172E Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:53:05Z' status: code: 200 message: OK @@ -1307,41 +1239,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:22:31 GMT + - Wed, 18 Oct 2023 20:53:34 GMT elapsed-time: - - '164' + - '210' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F517EDF7854142CE82F1C9FFA8FC2FF2 Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:53:35Z' status: code: 200 message: OK @@ -1359,41 +1290,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '740' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:23:01 GMT + - Wed, 18 Oct 2023 20:54:06 GMT elapsed-time: - - '164' + - '219' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 27282BCA526246958F12333C8A02E559 Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:54:05Z' status: code: 200 message: OK @@ -1411,41 +1341,40 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '610' + - '732' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:23:31 GMT + - Wed, 18 Oct 2023 20:54:36 GMT elapsed-time: - - '188' + - '178' etag: - - W/"datetime'2023-03-13T12%3A10%3A20.6248122Z'" + - W/"datetime'2023-10-18T20%3A42%3A26.9705021Z'" expires: - '-1' pragma: - no-cache request-id: - - fddb6709-c197-11ed-a808-b7b53f28d5a3 + - d3b05662-6df6-11ee-9d38-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 72414AC50F464E59A296DF9278184755 Ref B: CO6AA3150220025 Ref C: 2023-10-18T20:54:36Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_private_endpoint.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_private_endpoint.yaml index 84ce7e6ef90..f45701db430 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_private_endpoint.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_private_endpoint.yaml @@ -13,38 +13,39 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T12:23:34Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_private_endpoint","date":"2023-10-18T20:42:40Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '401' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:23:35 GMT + - Wed, 18 Oct 2023 20:42:40 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: BF2A390C57BB45A7995F77A12E9A39A6 Ref B: CO6AA3150220047 Ref C: 2023-10-18T20:42:41Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "sku": {"name": "basic"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "Disabled"}}' + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": + 1, "publicNetworkAccess": "disabled", "replicaCount": 1}, "sku": {"name": "basic"}}' headers: Accept: - application/json @@ -55,45 +56,50 @@ interactions: Connection: - keep-alive Content-Length: - - '165' + - '170' Content-Type: - application/json ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:23:48 GMT + - Wed, 18 Oct 2023 20:42:46 GMT elapsed-time: - - '10428' + - '4900' etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" + - W/"datetime'2023-10-18T20%3A42%3A46.535869Z'" expires: - '-1' pragma: - no-cache request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 + - e1a635b6-6df6-11ee-aac4-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/07c30a1e-4766-4889-bba3-2e8cfeaf12b3 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' + x-msedge-ref: + - 'Ref A: 32A0BF6845E040B6AD301CE8D81D088D Ref B: CO6AA3150217029 Ref C: 2023-10-18T20:42:41Z' status: code: 201 message: Created @@ -111,93 +117,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '616' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:24:19 GMT - elapsed-time: - - '198' - etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:24:49 GMT + - Wed, 18 Oct 2023 20:42:46 GMT elapsed-time: - - '168' + - '182' etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" + - W/"datetime'2023-10-18T20%3A42%3A46.535869Z'" expires: - '-1' pragma: - no-cache request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 + - e1a635b6-6df6-11ee-aac4-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 16D57F9C4B6448078975734D76ADD453 Ref B: CO6AA3150217029 Ref C: 2023-10-18T20:42:46Z' status: code: 200 message: OK @@ -215,41 +168,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:25:19 GMT + - Wed, 18 Oct 2023 20:43:16 GMT elapsed-time: - - '159' + - '228' etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" + - W/"datetime'2023-10-18T20%3A42%3A46.535869Z'" expires: - '-1' pragma: - no-cache request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 + - e1a635b6-6df6-11ee-aac4-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D44515A655C442FEB7A0B0C557A09BE0 Ref B: CO6AA3150217029 Ref C: 2023-10-18T20:43:17Z' status: code: 200 message: OK @@ -267,41 +219,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:25:49 GMT + - Wed, 18 Oct 2023 20:43:47 GMT elapsed-time: - - '165' + - '220' etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" + - W/"datetime'2023-10-18T20%3A42%3A46.535869Z'" expires: - '-1' pragma: - no-cache request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 + - e1a635b6-6df6-11ee-aac4-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F278B1EBC9F445AC838F511184BC6D99 Ref B: CO6AA3150217029 Ref C: 2023-10-18T20:43:47Z' status: code: 200 message: OK @@ -319,41 +270,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:26:20 GMT + - Wed, 18 Oct 2023 20:44:17 GMT elapsed-time: - - '165' + - '223' etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" + - W/"datetime'2023-10-18T20%3A42%3A46.535869Z'" expires: - '-1' pragma: - no-cache request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 + - e1a635b6-6df6-11ee-aac4-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 0A89C2C0443C4E25889D6239C3B50577 Ref B: CO6AA3150217029 Ref C: 2023-10-18T20:44:17Z' status: code: 200 message: OK @@ -371,41 +321,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:26:51 GMT + - Wed, 18 Oct 2023 20:44:47 GMT elapsed-time: - - '157' + - '198' etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" + - W/"datetime'2023-10-18T20%3A42%3A46.535869Z'" expires: - '-1' pragma: - no-cache request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 + - e1a635b6-6df6-11ee-aac4-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 51628453465749E19EEDE28557A76C13 Ref B: CO6AA3150217029 Ref C: 2023-10-18T20:44:48Z' status: code: 200 message: OK @@ -423,41 +372,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:27:21 GMT + - Wed, 18 Oct 2023 20:45:18 GMT elapsed-time: - - '171' + - '218' etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" + - W/"datetime'2023-10-18T20%3A42%3A46.535869Z'" expires: - '-1' pragma: - no-cache request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 + - e1a635b6-6df6-11ee-aac4-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 897ABA2521034D5992FA1BEC85B4B50F Ref B: CO6AA3150217029 Ref C: 2023-10-18T20:45:18Z' status: code: 200 message: OK @@ -475,41 +423,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:27:51 GMT + - Wed, 18 Oct 2023 20:45:48 GMT elapsed-time: - - '158' + - '198' etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" + - W/"datetime'2023-10-18T20%3A42%3A46.535869Z'" expires: - '-1' pragma: - no-cache request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 + - e1a635b6-6df6-11ee-aac4-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: FE599E2BDD95414891C384BA763DD0ED Ref B: CO6AA3150217029 Ref C: 2023-10-18T20:45:48Z' status: code: 200 message: OK @@ -527,41 +474,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:28:21 GMT + - Wed, 18 Oct 2023 20:46:18 GMT elapsed-time: - - '149' + - '249' etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" + - W/"datetime'2023-10-18T20%3A42%3A46.535869Z'" expires: - '-1' pragma: - no-cache request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 + - e1a635b6-6df6-11ee-aac4-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F3D5EC6B29954CA891931F158954E039 Ref B: CO6AA3150217029 Ref C: 2023-10-18T20:46:19Z' status: code: 200 message: OK @@ -579,41 +525,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:28:52 GMT + - Wed, 18 Oct 2023 20:46:49 GMT elapsed-time: - - '167' + - '228' etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" + - W/"datetime'2023-10-18T20%3A42%3A46.535869Z'" expires: - '-1' pragma: - no-cache request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 + - e1a635b6-6df6-11ee-aac4-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 0E589D2FF866459CA62566C29D835735 Ref B: CO6AA3150217029 Ref C: 2023-10-18T20:46:49Z' status: code: 200 message: OK @@ -631,41 +576,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:29:23 GMT + - Wed, 18 Oct 2023 20:47:19 GMT elapsed-time: - - '151' + - '304' etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" + - W/"datetime'2023-10-18T20%3A42%3A46.535869Z'" expires: - '-1' pragma: - no-cache request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 + - e1a635b6-6df6-11ee-aac4-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D338B5B198D846A1AB55E5A8C353A16C Ref B: CO6AA3150217029 Ref C: 2023-10-18T20:47:19Z' status: code: 200 message: OK @@ -683,41 +627,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:29:53 GMT + - Wed, 18 Oct 2023 20:47:49 GMT elapsed-time: - - '153' + - '335' etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" + - W/"datetime'2023-10-18T20%3A42%3A46.535869Z'" expires: - '-1' pragma: - no-cache request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 + - e1a635b6-6df6-11ee-aac4-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 26310ED34E5947AFAB8C0DD6C3558AD1 Ref B: CO6AA3150217029 Ref C: 2023-10-18T20:47:50Z' status: code: 200 message: OK @@ -735,41 +678,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:30:23 GMT + - Wed, 18 Oct 2023 20:48:20 GMT elapsed-time: - - '190' + - '194' etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" + - W/"datetime'2023-10-18T20%3A42%3A46.535869Z'" expires: - '-1' pragma: - no-cache request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 + - e1a635b6-6df6-11ee-aac4-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5D4731723E2E48589325F8FF6B00D1F4 Ref B: CO6AA3150217029 Ref C: 2023-10-18T20:48:20Z' status: code: 200 message: OK @@ -787,41 +729,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:30:54 GMT + - Wed, 18 Oct 2023 20:48:50 GMT elapsed-time: - - '157' + - '296' etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" + - W/"datetime'2023-10-18T20%3A42%3A46.535869Z'" expires: - '-1' pragma: - no-cache request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 + - e1a635b6-6df6-11ee-aac4-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8107037E2B3749B091D7036BED5D518B Ref B: CO6AA3150217029 Ref C: 2023-10-18T20:48:51Z' status: code: 200 message: OK @@ -839,41 +780,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:31:24 GMT + - Wed, 18 Oct 2023 20:49:21 GMT elapsed-time: - - '153' + - '239' etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" + - W/"datetime'2023-10-18T20%3A42%3A46.535869Z'" expires: - '-1' pragma: - no-cache request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 + - e1a635b6-6df6-11ee-aac4-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 41EB1C9C3B40453AB5EF8A847335DE02 Ref B: CO6AA3150217029 Ref C: 2023-10-18T20:49:21Z' status: code: 200 message: OK @@ -891,41 +831,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:31:54 GMT + - Wed, 18 Oct 2023 20:49:52 GMT elapsed-time: - - '150' + - '192' etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" + - W/"datetime'2023-10-18T20%3A42%3A46.535869Z'" expires: - '-1' pragma: - no-cache request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 + - e1a635b6-6df6-11ee-aac4-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: ADEED18F2118487B84C171A705694BFA Ref B: CO6AA3150217029 Ref C: 2023-10-18T20:49:51Z' status: code: 200 message: OK @@ -943,41 +882,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:32:24 GMT + - Wed, 18 Oct 2023 20:50:22 GMT elapsed-time: - - '206' + - '191' etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" + - W/"datetime'2023-10-18T20%3A42%3A46.535869Z'" expires: - '-1' pragma: - no-cache request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 + - e1a635b6-6df6-11ee-aac4-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A97E53A024224B4398D3EEDE5F9C5777 Ref B: CO6AA3150217029 Ref C: 2023-10-18T20:50:22Z' status: code: 200 message: OK @@ -995,353 +933,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:32:56 GMT + - Wed, 18 Oct 2023 20:50:52 GMT elapsed-time: - '175' etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '616' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:33:26 GMT - elapsed-time: - - '167' - etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '616' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:33:56 GMT - elapsed-time: - - '156' - etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '616' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:34:26 GMT - elapsed-time: - - '165' - etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '616' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:34:56 GMT - elapsed-time: - - '156' - etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '616' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:35:28 GMT - elapsed-time: - - '170' - etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '616' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:35:58 GMT - elapsed-time: - - '158' - etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" + - W/"datetime'2023-10-18T20%3A42%3A46.535869Z'" expires: - '-1' pragma: - no-cache request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 + - e1a635b6-6df6-11ee-aac4-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C39D806B3B8940D7B64C8B69C47C43D1 Ref B: CO6AA3150217029 Ref C: 2023-10-18T20:50:52Z' status: code: 200 message: OK @@ -1359,41 +984,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '608' + - '730' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:36:28 GMT + - Wed, 18 Oct 2023 20:51:23 GMT elapsed-time: - - '152' + - '257' etag: - - W/"datetime'2023-03-13T12%3A23%3A48.3315891Z'" + - W/"datetime'2023-10-18T20%3A42%3A46.535869Z'" expires: - '-1' pragma: - no-cache request-id: - - e0cc4bda-c199-11ed-a808-b7b53f28d5a3 + - e1a635b6-6df6-11ee-aac4-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4F89C90F79274CE4919F4C0D120CF3B0 Ref B: CO6AA3150217029 Ref C: 2023-10-18T20:51:22Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_semantic_search.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_semantic_search.yaml new file mode 100644 index 00000000000..c00273907eb --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_semantic_search.yaml @@ -0,0 +1,317 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku --semantic-search + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_semantic_search","date":"2023-10-19T06:03:38Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '400' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 19 Oct 2023 06:03:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: E72ABF19E97144B6A03FFE2D9F97275B Ref B: CO6AA3150219047 Ref C: 2023-10-19T06:03:40Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": + 1, "publicNetworkAccess": "enabled", "replicaCount": 1, "semanticSearch": "disabled"}, + "sku": {"name": "standard"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + Content-Length: + - '202' + Content-Type: + - application/json + ParameterSetName: + - -n -g --sku --semantic-search + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '736' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 19 Oct 2023 06:03:43 GMT + elapsed-time: + - '3092' + etag: + - W/"datetime'2023-10-19T06%3A03%3A43.6119099Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 401a98b1-6e45-11ee-b1c2-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/c8218b22-3348-4c97-817d-a101fa7f980d + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + x-msedge-ref: + - 'Ref A: 02C4B46CD76F4078990A0299DC76644A Ref B: CO6AA3150219051 Ref C: 2023-10-19T06:03:40Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku --semantic-search + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_semantic_search","date":"2023-10-19T06:03:38Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '400' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 19 Oct 2023 06:03:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: B07CFA64FB1A4F0E9D444D1D148ABF5C Ref B: CO6AA3150219039 Ref C: 2023-10-19T06:03:44Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": + 1, "publicNetworkAccess": "enabled", "replicaCount": 1, "semanticSearch": "free"}, + "sku": {"name": "standard"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + Content-Length: + - '198' + Content-Type: + - application/json + ParameterSetName: + - -n -g --sku --semantic-search + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '732' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 19 Oct 2023 06:03:44 GMT + elapsed-time: + - '370' + etag: + - W/"datetime'2023-10-19T06%3A03%3A44.7684001Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 425d696a-6e45-11ee-b9ca-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/59bda5bd-c13f-4481-a491-7c74371b2c56 + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + x-msedge-ref: + - 'Ref A: A8C8959AA52048C4887922D0FAB31EE8 Ref B: CO6AA3150219029 Ref C: 2023-10-19T06:03:44Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku --semantic-search + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_semantic_search","date":"2023-10-19T06:03:38Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '400' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 19 Oct 2023 06:03:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: C4C0F98439AF459C81FD20D371E5437E Ref B: CO6AA3150220051 Ref C: 2023-10-19T06:03:45Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": + 1, "publicNetworkAccess": "enabled", "replicaCount": 1, "semanticSearch": "standard"}, + "sku": {"name": "standard"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + Content-Length: + - '202' + Content-Type: + - application/json + ParameterSetName: + - -n -g --sku --semantic-search + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"standard"},"sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '736' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 19 Oct 2023 06:03:46 GMT + elapsed-time: + - '330' + etag: + - W/"datetime'2023-10-19T06%3A03%3A46.6495701Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 43145aa6-6e45-11ee-b134-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/c57e44b1-5b6c-45fc-8200-500cbf944023 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 2AB2291E6EC24150A03F929A349AE50C Ref B: CO6AA3150220047 Ref C: 2023-10-19T06:03:45Z' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_skus.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_skus.yaml index d0efc996533..9b418c801a5 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_skus.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_skus.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-27T20:47:04Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_skus","date":"2023-10-20T21:05:29Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '391' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 20:47:08 GMT + - Fri, 20 Oct 2023 21:05:32 GMT expires: - '-1' pragma: @@ -42,8 +42,9 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus", "sku": {"name": "standard"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "enabled"}}' + body: '{"location": "westcentralus", "properties": {"hostingMode": "default", + "partitionCount": 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": + {"name": "standard"}}' headers: Accept: - application/json @@ -54,42 +55,44 @@ interactions: Connection: - keep-alive Content-Length: - - '167' + - '174' Content-Type: - application/json ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '553' + - '733' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 20:47:13 GMT + - Fri, 20 Oct 2023 21:05:36 GMT elapsed-time: - - '2609' + - '2549' etag: - - W/"datetime'2022-06-27T20%3A47%3A13.1273675Z'" + - W/"datetime'2023-10-20T21%3A05%3A36.911599Z'" expires: - '-1' pragma: - no-cache request-id: - - 4f82fdb5-f65a-11ec-bd0e-40b0341d0842 + - 682fdf12-6f8c-11ee-a9b2-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/ac485997-f0f0-40c8-808d-8903a2fe31f1 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -109,21 +112,21 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-27T20:47:04Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_skus","date":"2023-10-20T21:05:29Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '391' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 20:47:13 GMT + - Fri, 20 Oct 2023 21:05:36 GMT expires: - '-1' pragma: @@ -138,8 +141,9 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus", "sku": {"name": "basic"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "enabled"}}' + body: '{"location": "westcentralus", "properties": {"hostingMode": "default", + "partitionCount": 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": + {"name": "basic"}}' headers: Accept: - application/json @@ -150,42 +154,44 @@ interactions: Connection: - keep-alive Content-Length: - - '164' + - '171' Content-Type: - application/json ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"basic"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '550' + - '730' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 20:47:19 GMT + - Fri, 20 Oct 2023 21:05:41 GMT elapsed-time: - - '2459' + - '3037' etag: - - W/"datetime'2022-06-27T20%3A47%3A19.5656357Z'" + - W/"datetime'2023-10-20T21%3A05%3A41.9566913Z'" expires: - '-1' pragma: - no-cache request-id: - - 52bc76ea-f65a-11ec-b06b-40b0341d0842 + - 6ad2a7e5-6f8c-11ee-860c-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/9e7fa0e6-9d79-48e1-b177-f79bb08eb71d x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -205,21 +211,21 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-27T20:47:04Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_skus","date":"2023-10-20T21:05:29Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '391' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 20:47:19 GMT + - Fri, 20 Oct 2023 21:05:42 GMT expires: - '-1' pragma: @@ -234,9 +240,9 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus", "sku": {"name": "standard3"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "highDensity", "publicNetworkAccess": - "enabled"}}' + body: '{"location": "westcentralus", "properties": {"hostingMode": "highDensity", + "partitionCount": 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": + {"name": "standard3"}}' headers: Accept: - application/json @@ -247,44 +253,46 @@ interactions: Connection: - keep-alive Content-Length: - - '172' + - '179' Content-Type: - application/json ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '566' + - '746' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 20:47:27 GMT + - Fri, 20 Oct 2023 21:05:49 GMT elapsed-time: - - '5305' + - '6380' etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" + - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" expires: - '-1' pragma: - no-cache request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 + - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/1f3d7643-2a7e-46d7-b9c5-51162e8a73e0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -302,389 +310,32 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' - headers: - cache-control: - - no-cache - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 27 Jun 2022 20:47:58 GMT - elapsed-time: - - '199' - etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count --hosting-mode - User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' - headers: - cache-control: - - no-cache - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 27 Jun 2022 20:48:29 GMT - elapsed-time: - - '239' - etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count --hosting-mode - User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' - headers: - cache-control: - - no-cache - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 27 Jun 2022 20:48:59 GMT - elapsed-time: - - '223' - etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count --hosting-mode - User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' - headers: - cache-control: - - no-cache - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 27 Jun 2022 20:49:29 GMT - elapsed-time: - - '281' - etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count --hosting-mode - User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '566' + - '746' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 20:49:59 GMT + - Fri, 20 Oct 2023 21:05:50 GMT elapsed-time: - - '230' - etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count --hosting-mode - User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' - headers: - cache-control: - - no-cache - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 27 Jun 2022 20:50:30 GMT - elapsed-time: - - '265' - etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count --hosting-mode - User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' - headers: - cache-control: - - no-cache - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 27 Jun 2022 20:51:01 GMT - elapsed-time: - - '263' - etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count --hosting-mode - User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' - headers: - cache-control: - - no-cache - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 27 Jun 2022 20:51:31 GMT - elapsed-time: - - '228' + - '201' etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" + - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" expires: - '-1' pragma: - no-cache request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 + - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -710,32 +361,32 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '566' + - '746' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 20:52:01 GMT + - Fri, 20 Oct 2023 21:06:21 GMT elapsed-time: - - '215' + - '558' etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" + - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" expires: - '-1' pragma: - no-cache request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 + - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -761,32 +412,32 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '566' + - '746' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 20:52:32 GMT + - Fri, 20 Oct 2023 21:06:51 GMT elapsed-time: - - '388' + - '182' etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" + - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" expires: - '-1' pragma: - no-cache request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 + - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -812,32 +463,32 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '566' + - '746' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 20:53:03 GMT + - Fri, 20 Oct 2023 21:07:22 GMT elapsed-time: - - '205' + - '459' etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" + - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" expires: - '-1' pragma: - no-cache request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 + - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -863,32 +514,32 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '566' + - '746' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 20:53:33 GMT + - Fri, 20 Oct 2023 21:07:52 GMT elapsed-time: - - '250' + - '183' etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" + - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" expires: - '-1' pragma: - no-cache request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 + - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -914,32 +565,32 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '566' + - '746' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 20:54:03 GMT + - Fri, 20 Oct 2023 21:08:22 GMT elapsed-time: - - '226' + - '500' etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" + - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" expires: - '-1' pragma: - no-cache request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 + - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -965,32 +616,32 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '566' + - '746' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 20:54:34 GMT + - Fri, 20 Oct 2023 21:08:53 GMT elapsed-time: - - '257' + - '170' etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" + - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" expires: - '-1' pragma: - no-cache request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 + - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1016,32 +667,32 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '566' + - '746' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 20:55:04 GMT + - Fri, 20 Oct 2023 21:09:24 GMT elapsed-time: - - '361' + - '435' etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" + - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" expires: - '-1' pragma: - no-cache request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 + - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1067,32 +718,32 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '566' + - '746' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 20:55:35 GMT + - Fri, 20 Oct 2023 21:09:54 GMT elapsed-time: - - '228' + - '177' etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" + - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" expires: - '-1' pragma: - no-cache request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 + - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1118,32 +769,32 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '566' + - '746' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 20:56:05 GMT + - Fri, 20 Oct 2023 21:10:25 GMT elapsed-time: - - '294' + - '397' etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" + - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" expires: - '-1' pragma: - no-cache request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 + - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1169,32 +820,32 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '566' + - '746' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 20:56:35 GMT + - Fri, 20 Oct 2023 21:10:55 GMT elapsed-time: - - '209' + - '174' etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" + - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" expires: - '-1' pragma: - no-cache request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 + - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1220,32 +871,32 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '566' + - '746' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 20:57:06 GMT + - Fri, 20 Oct 2023 21:11:26 GMT elapsed-time: - - '204' + - '362' etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" + - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" expires: - '-1' pragma: - no-cache request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 + - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1271,32 +922,32 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '566' + - '746' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 20:57:37 GMT + - Fri, 20 Oct 2023 21:11:57 GMT elapsed-time: - - '201' + - '324' etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" + - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" expires: - '-1' pragma: - no-cache request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 + - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1322,32 +973,32 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '566' + - '746' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 20:58:07 GMT + - Fri, 20 Oct 2023 21:12:27 GMT elapsed-time: - - '216' + - '337' etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" + - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" expires: - '-1' pragma: - no-cache request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 + - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1373,32 +1024,32 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '566' + - '746' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 20:58:37 GMT + - Fri, 20 Oct 2023 21:12:57 GMT elapsed-time: - - '201' + - '196' etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" + - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" expires: - '-1' pragma: - no-cache request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 + - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1424,32 +1075,32 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '566' + - '746' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 20:59:08 GMT + - Fri, 20 Oct 2023 21:13:28 GMT elapsed-time: - - '198' + - '236' etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" + - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" expires: - '-1' pragma: - no-cache request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 + - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1475,32 +1126,32 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '566' + - '746' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 20:59:38 GMT + - Fri, 20 Oct 2023 21:13:58 GMT elapsed-time: - '198' etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" + - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" expires: - '-1' pragma: - no-cache request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 + - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1526,83 +1177,32 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 27 Jun 2022 21:00:09 GMT - elapsed-time: - - '210' - etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count --hosting-mode - User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-search/8.0.0 Python/3.10.4 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[]},"sku":{"name":"standard3"}}' - headers: - cache-control: - - no-cache - content-length: - - '558' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 27 Jun 2022 21:00:39 GMT + - Fri, 20 Oct 2023 21:14:28 GMT elapsed-time: - - '197' + - '357' etag: - - W/"datetime'2022-06-27T20%3A47%3A28.0237337Z'" + - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" expires: - '-1' pragma: - no-cache request-id: - - 5690411e-f65a-11ec-82b8-40b0341d0842 + - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update.yaml index 480390fd2e5..ed8d22d9c92 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update.yaml @@ -13,36 +13,39 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T12:36:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_update","date":"2023-10-18T22:04:54Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '384' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:36:59 GMT + - Wed, 18 Oct 2023 22:04:54 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D8E6573C171B4356A6F3069FAD635C0F Ref B: CO6AA3150219037 Ref C: 2023-10-18T22:04:54Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "sku": {"name": "standard"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "enabled"}}' + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": + 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "standard"}}' headers: Accept: - application/json @@ -53,877 +56,163 @@ interactions: Connection: - keep-alive Content-Length: - - '167' - Content-Type: - - application/json - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:37:12 GMT - elapsed-time: - - '10271' - etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:37:42 GMT - elapsed-time: - - '168' - etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:38:12 GMT - elapsed-time: - - '373' - etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:38:43 GMT - elapsed-time: - '172' - etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:39:13 GMT - elapsed-time: - - '145' - etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:39:43 GMT - elapsed-time: - - '240' - etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:40:13 GMT - elapsed-time: - - '167' - etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:40:45 GMT - elapsed-time: - - '189' - etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:41:15 GMT - elapsed-time: - - '169' - etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:41:45 GMT - elapsed-time: - - '152' - etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:42:15 GMT - elapsed-time: - - '193' - etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:42:45 GMT - elapsed-time: - - '178' - etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:43:16 GMT - elapsed-time: - - '193' - etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:43:46 GMT - elapsed-time: - - '150' - etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive + Content-Type: + - application/json ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '732' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:44:17 GMT + - Wed, 18 Oct 2023 22:04:59 GMT elapsed-time: - - '207' + - '3676' etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" + - W/"datetime'2023-10-18T22%3A04%3A58.8754622Z'" expires: - '-1' pragma: - no-cache request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 + - 5e7a8240-6e02-11ee-9cff-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/6dcfe5f0-db9b-4ba3-aea1-30eb9cc710b7 + x-ms-ratelimit-remaining-subscription-writes: + - '1189' + x-msedge-ref: + - 'Ref A: 34F34B6492A14082BE8694637ECDD887 Ref B: CO6AA3150219017 Ref C: 2023-10-18T22:04:55Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - search service create + - search service update Connection: - keep-alive ParameterSetName: - - -n -g --sku + - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '708' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:44:48 GMT + - Wed, 18 Oct 2023 22:04:59 GMT elapsed-time: - - '261' + - '199' etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" + - W/"datetime'2023-10-18T22%3A04%3A58.8754622Z'" expires: - '-1' pragma: - no-cache request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2CA049F966A54BFBA9552D1FDF5C5B0B Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:04:59Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "East US 2 EUAP", "properties": {"authOptions": {"apiKeyOnly": + {}}, "disableLocalAuth": false, "encryptionWithCmk": {"enforcement": "Unspecified"}, + "hostingMode": "default", "networkRuleSet": {"ipRules": []}, "partitionCount": + 1, "publicNetworkAccess": "Enabled", "replicaCount": 2}, "sku": {"name": "standard"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - search service create + - search service update Connection: - keep-alive + Content-Length: + - '325' + Content-Type: + - application/json ParameterSetName: - - -n -g --sku + - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:45:18 GMT + - Wed, 18 Oct 2023 22:05:00 GMT elapsed-time: - - '167' + - '610' etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/57c7beb5-5cbc-4b81-a008-23d448e81db4 + x-ms-ratelimit-remaining-subscription-writes: + - '1188' + x-msedge-ref: + - 'Ref A: EACE0B1610E64F5695EA1303E431C760 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:05:00Z' status: code: 200 message: OK @@ -935,47 +224,46 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service create + - search service update Connection: - keep-alive ParameterSetName: - - -n -g --sku + - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:45:48 GMT + - Wed, 18 Oct 2023 22:05:00 GMT elapsed-time: - - '157' + - '193' etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 24DD570F2E0344828647B34FB7034422 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:05:01Z' status: code: 200 message: OK @@ -987,47 +275,46 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service create + - search service update Connection: - keep-alive ParameterSetName: - - -n -g --sku + - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:46:19 GMT + - Wed, 18 Oct 2023 22:05:31 GMT elapsed-time: - - '187' + - '267' etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F1B1DC88623546F082FED2F58BEC8E86 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:05:31Z' status: code: 200 message: OK @@ -1039,47 +326,46 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service create + - search service update Connection: - keep-alive ParameterSetName: - - -n -g --sku + - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:46:49 GMT + - Wed, 18 Oct 2023 22:06:01 GMT elapsed-time: - - '166' + - '265' etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4F22EFEB9F9D4F83A42389B34B9E1C80 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:06:01Z' status: code: 200 message: OK @@ -1091,47 +377,46 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service create + - search service update Connection: - keep-alive ParameterSetName: - - -n -g --sku + - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:47:20 GMT + - Wed, 18 Oct 2023 22:06:31 GMT elapsed-time: - - '182' + - '262' etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 539623E1D9FB482AB320BBC5B658501E Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:06:32Z' status: code: 200 message: OK @@ -1143,47 +428,46 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service create + - search service update Connection: - keep-alive ParameterSetName: - - -n -g --sku + - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:47:50 GMT + - Wed, 18 Oct 2023 22:07:02 GMT elapsed-time: - - '173' + - '207' etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8D6886B95A3F4A039008BF4D61792483 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:07:02Z' status: code: 200 message: OK @@ -1195,47 +479,46 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service create + - search service update Connection: - keep-alive ParameterSetName: - - -n -g --sku + - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:48:20 GMT + - Wed, 18 Oct 2023 22:07:33 GMT elapsed-time: - - '170' + - '222' etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5D59EF95BE4F47459D1AE7653BD5BF99 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:07:33Z' status: code: 200 message: OK @@ -1247,47 +530,46 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service create + - search service update Connection: - keep-alive ParameterSetName: - - -n -g --sku + - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:48:50 GMT + - Wed, 18 Oct 2023 22:08:03 GMT elapsed-time: - - '221' + - '225' etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: EC714CABEDFB431CA58153DD978FD897 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:08:03Z' status: code: 200 message: OK @@ -1299,47 +581,46 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service create + - search service update Connection: - keep-alive ParameterSetName: - - -n -g --sku + - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:49:22 GMT + - Wed, 18 Oct 2023 22:08:34 GMT elapsed-time: - - '170' + - '283' etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 171B6B693B5A406685274301D244D53B Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:08:33Z' status: code: 200 message: OK @@ -1351,47 +632,46 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service create + - search service update Connection: - keep-alive ParameterSetName: - - -n -g --sku + - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:49:52 GMT + - Wed, 18 Oct 2023 22:09:04 GMT elapsed-time: - - '170' + - '226' etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E3151A4711404E319AD4044445CE2127 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:09:04Z' status: code: 200 message: OK @@ -1403,47 +683,46 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service create + - search service update Connection: - keep-alive ParameterSetName: - - -n -g --sku + - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '610' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:50:22 GMT + - Wed, 18 Oct 2023 22:09:34 GMT elapsed-time: - - '189' + - '200' etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - bedeb3e5-c19b-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A58FECE3C9EA415D8AA30C74915FF829 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:09:34Z' status: code: 200 message: OK @@ -1451,7 +730,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1461,101 +740,91 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '610' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:50:22 GMT + - Wed, 18 Oct 2023 22:10:05 GMT elapsed-time: - - '167' + - '241' etag: - - W/"datetime'2023-03-13T12%3A37%3A11.5138934Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 74C50DCCD0474EAE85686A39DBB4986D Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:10:04Z' status: code: 200 message: OK - request: - body: '{"location": "West US", "sku": {"name": "standard"}, "properties": {"replicaCount": - 2, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "Enabled", - "networkRuleSet": {"ipRules": []}, "authOptions": {"apiKeyOnly": {}}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - search service update Connection: - keep-alive - Content-Length: - - '238' - Content-Type: - - application/json ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:50:25 GMT + - Wed, 18 Oct 2023 22:10:35 GMT elapsed-time: - - '1519' + - '701' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-msedge-ref: + - 'Ref A: 07C4BBE40FC1488481A6381B9479FDEB Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:10:35Z' status: code: 200 message: OK @@ -1573,41 +842,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:50:56 GMT + - Wed, 18 Oct 2023 22:11:06 GMT elapsed-time: - - '178' + - '251' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6A3BC232F77F4E939D214311F8344977 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:11:06Z' status: code: 200 message: OK @@ -1625,41 +893,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:51:26 GMT + - Wed, 18 Oct 2023 22:11:36 GMT elapsed-time: - '243' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8686D0E810AE4964B92F23C9CDEC2F65 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:11:36Z' status: code: 200 message: OK @@ -1677,41 +944,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:51:56 GMT + - Wed, 18 Oct 2023 22:12:06 GMT elapsed-time: - - '163' + - '185' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C3A89A05C2B749E1907A9C744F742584 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:12:06Z' status: code: 200 message: OK @@ -1729,41 +995,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:52:26 GMT + - Wed, 18 Oct 2023 22:12:37 GMT elapsed-time: - - '150' + - '248' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 45C14A47DBE64A5586D3469AD38CD81B Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:12:37Z' status: code: 200 message: OK @@ -1781,41 +1046,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:52:57 GMT + - Wed, 18 Oct 2023 22:13:07 GMT elapsed-time: - - '146' + - '212' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 37218A640F834A2BB9A92428D959265B Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:13:07Z' status: code: 200 message: OK @@ -1833,41 +1097,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:53:27 GMT + - Wed, 18 Oct 2023 22:13:37 GMT elapsed-time: - - '171' + - '241' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9CB7F0ED79654298AD4A40A45E46E5FA Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:13:37Z' status: code: 200 message: OK @@ -1885,41 +1148,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:53:57 GMT + - Wed, 18 Oct 2023 22:14:08 GMT elapsed-time: - - '154' + - '188' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8D25DAD9C42340DDA1CE5C361F81C9D7 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:14:08Z' status: code: 200 message: OK @@ -1937,41 +1199,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:54:28 GMT + - Wed, 18 Oct 2023 22:14:38 GMT elapsed-time: - - '193' + - '198' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: AA676D66AD204550B702D7FDB004EFAC Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:14:38Z' status: code: 200 message: OK @@ -1989,41 +1250,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:54:59 GMT + - Wed, 18 Oct 2023 22:15:08 GMT elapsed-time: - - '166' + - '203' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4A4F8535431D448B9A39ACC5513F99E5 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:15:08Z' status: code: 200 message: OK @@ -2041,41 +1301,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:55:29 GMT + - Wed, 18 Oct 2023 22:15:39 GMT elapsed-time: - - '167' + - '218' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 43359E389276493CA29044D74A249681 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:15:39Z' status: code: 200 message: OK @@ -2093,41 +1352,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:55:59 GMT + - Wed, 18 Oct 2023 22:16:09 GMT elapsed-time: - - '248' + - '190' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8DBC67DCDFD244089669E2FAC0A85321 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:16:09Z' status: code: 200 message: OK @@ -2145,41 +1403,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:56:31 GMT + - Wed, 18 Oct 2023 22:16:39 GMT elapsed-time: - - '171' + - '299' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 056743BF2FBA43B693E63322A0FA6ED1 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:16:39Z' status: code: 200 message: OK @@ -2197,41 +1454,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:57:01 GMT + - Wed, 18 Oct 2023 22:17:10 GMT elapsed-time: - - '174' + - '212' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3B68E05FC76D47F39AFA0A8B72FBF1DC Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:17:10Z' status: code: 200 message: OK @@ -2249,41 +1505,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:57:31 GMT + - Wed, 18 Oct 2023 22:17:40 GMT elapsed-time: - - '186' + - '252' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A05%3A00.9305567Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A02CA7882C944D8EAD15DECFE5E54827 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:17:40Z' status: code: 200 message: OK @@ -2301,41 +1556,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:58:01 GMT + - Wed, 18 Oct 2023 22:18:10 GMT elapsed-time: - - '238' + - '259' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A17%3A49.5053643Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 81C77960B8754B41969FB01B1665E17A Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:18:11Z' status: code: 200 message: OK @@ -2353,41 +1607,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:58:31 GMT + - Wed, 18 Oct 2023 22:18:41 GMT elapsed-time: - - '178' + - '270' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A17%3A49.5053643Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: AFC6F88E0F534F618836D9040ADD6B05 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:18:41Z' status: code: 200 message: OK @@ -2405,41 +1658,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:59:02 GMT + - Wed, 18 Oct 2023 22:19:11 GMT elapsed-time: - - '166' + - '242' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A17%3A49.5053643Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5F346A7024B949DDA6B0D00E87B18D14 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:19:11Z' status: code: 200 message: OK @@ -2457,41 +1709,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:59:33 GMT + - Wed, 18 Oct 2023 22:19:41 GMT elapsed-time: - - '175' + - '254' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A17%3A49.5053643Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1F803B12D41C473981123FE84C8FB7EE Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:19:42Z' status: code: 200 message: OK @@ -2509,41 +1760,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:00:03 GMT + - Wed, 18 Oct 2023 22:20:12 GMT elapsed-time: - - '189' + - '174' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A17%3A49.5053643Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B58DD9645C5844A8A590B21664568774 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:20:12Z' status: code: 200 message: OK @@ -2561,41 +1811,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:00:33 GMT + - Wed, 18 Oct 2023 22:20:42 GMT elapsed-time: - - '159' + - '255' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A17%3A49.5053643Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: CB4F9A97A6324B57B888C79B9CF17E7F Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:20:42Z' status: code: 200 message: OK @@ -2613,41 +1862,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:01:04 GMT + - Wed, 18 Oct 2023 22:21:12 GMT elapsed-time: - - '173' + - '254' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A17%3A49.5053643Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7138C614A44845DE8112B46DCCCA6E90 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:21:13Z' status: code: 200 message: OK @@ -2665,41 +1913,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:01:34 GMT + - Wed, 18 Oct 2023 22:21:43 GMT elapsed-time: - - '166' + - '530' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A17%3A49.5053643Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8AAD226E679E45968376453DDD63061B Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:21:43Z' status: code: 200 message: OK @@ -2717,41 +1964,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:02:05 GMT + - Wed, 18 Oct 2023 22:22:13 GMT elapsed-time: - - '409' + - '319' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A17%3A49.5053643Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2C01B13E4E73437FB75F46AB45A96D76 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:22:14Z' status: code: 200 message: OK @@ -2769,41 +2015,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:02:35 GMT + - Wed, 18 Oct 2023 22:22:44 GMT elapsed-time: - - '266' + - '287' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A17%3A49.5053643Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 586734CAD6D14D98B4483BCB02917FC6 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:22:44Z' status: code: 200 message: OK @@ -2821,41 +2066,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:03:05 GMT + - Wed, 18 Oct 2023 22:23:14 GMT elapsed-time: - - '209' + - '269' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A17%3A49.5053643Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D855349334E844D4888A1068C814BEAF Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:23:15Z' status: code: 200 message: OK @@ -2873,41 +2117,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:03:36 GMT + - Wed, 18 Oct 2023 22:23:44 GMT elapsed-time: - - '183' + - '251' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A17%3A49.5053643Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6BE4B1DA823E4047BFD1263418174AEC Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:23:45Z' status: code: 200 message: OK @@ -2925,41 +2168,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:04:06 GMT + - Wed, 18 Oct 2023 22:24:16 GMT elapsed-time: - - '200' + - '266' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A17%3A49.5053643Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7C428A1B15A8484F8A76551694D196DE Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:24:15Z' status: code: 200 message: OK @@ -2977,41 +2219,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:04:37 GMT + - Wed, 18 Oct 2023 22:24:46 GMT elapsed-time: - - '173' + - '258' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A17%3A49.5053643Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F1FC2805F50F4822AEB3BCB490A79B05 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:24:46Z' status: code: 200 message: OK @@ -3029,41 +2270,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:05:07 GMT + - Wed, 18 Oct 2023 22:25:16 GMT elapsed-time: - - '186' + - '253' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A17%3A49.5053643Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 42FDA4632C9D4BEE9C0E091B6ABBA57F Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:25:16Z' status: code: 200 message: OK @@ -3081,41 +2321,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:05:38 GMT + - Wed, 18 Oct 2023 22:25:47 GMT elapsed-time: - - '201' + - '237' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A17%3A49.5053643Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 60B9768661654AFBBDADD6201E55188F Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:25:47Z' status: code: 200 message: OK @@ -3133,41 +2372,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":2,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '708' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:06:08 GMT + - Wed, 18 Oct 2023 22:26:17 GMT elapsed-time: - - '159' + - '419' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A17%3A49.5053643Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 61706c10-6e02-11ee-91b6-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4EB9E3D330644F74A917AE70087F7A18 Ref B: CO6AA3150219051 Ref C: 2023-10-18T22:26:17Z' status: code: 200 message: OK @@ -3175,111 +2413,111 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - search service update + - search service create Connection: - keep-alive ParameterSetName: - - -n -g --replica-count --partition-count + - -n -g --sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_update","date":"2023-10-18T22:04:54Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '618' + - '384' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:06:39 GMT - elapsed-time: - - '161' - etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - Wed, 18 Oct 2023 22:26:18 GMT expires: - '-1' pragma: - no-cache - request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 710D74EB47B349B6BD332B3CF629B450 Ref B: CO6AA3150217047 Ref C: 2023-10-18T22:26:18Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": + 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "standard"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - search service update + - search service create Connection: - keep-alive + Content-Length: + - '172' + Content-Type: + - application/json ParameterSetName: - - -n -g --replica-count --partition-count + - -n -g --sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '732' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:07:10 GMT + - Wed, 18 Oct 2023 22:26:22 GMT elapsed-time: - - '190' + - '3776' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A26%3A22.3691776Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 5b745d04-6e05-11ee-a622-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/98b2fd12-ec7d-4ad6-a6c4-cb8c55f90748 + x-ms-ratelimit-remaining-subscription-writes: + - '1189' + x-msedge-ref: + - 'Ref A: 5A4F4E9B875F4389A3782B53A3FE43E6 Ref B: CO6AA3150219009 Ref C: 2023-10-18T22:26:18Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -3289,93 +2527,102 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '708' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:07:40 GMT + - Wed, 18 Oct 2023 22:26:23 GMT elapsed-time: - - '159' + - '380' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A26%3A22.3691776Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 224761274FDD48308B410F13101BD3F6 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:26:23Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "East US 2 EUAP", "properties": {"authOptions": {"apiKeyOnly": + {}}, "disableLocalAuth": false, "encryptionWithCmk": {"enforcement": "Unspecified"}, + "hostingMode": "default", "networkRuleSet": {"ipRules": []}, "partitionCount": + 2, "publicNetworkAccess": "Enabled", "replicaCount": 1}, "sku": {"name": "standard"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - search service update Connection: - keep-alive + Content-Length: + - '325' + Content-Type: + - application/json ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:08:10 GMT + - Wed, 18 Oct 2023 22:26:24 GMT elapsed-time: - - '183' + - '940' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/2cf364e0-507f-4aaf-a7ad-084ead28e7b1 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + x-msedge-ref: + - 'Ref A: 344406DDA35549D3B3FCB92509611764 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:26:23Z' status: code: 200 message: OK @@ -3393,41 +2640,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:08:40 GMT + - Wed, 18 Oct 2023 22:26:25 GMT elapsed-time: - - '200' + - '229' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 60B78B2D70924A61A3C444C0CCE89D9B Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:26:24Z' status: code: 200 message: OK @@ -3445,41 +2691,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:09:12 GMT + - Wed, 18 Oct 2023 22:26:55 GMT elapsed-time: - - '166' + - '199' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 12756B2A68FF4A44A5D6D0598E05D625 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:26:55Z' status: code: 200 message: OK @@ -3497,41 +2742,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:09:42 GMT + - Wed, 18 Oct 2023 22:27:25 GMT elapsed-time: - - '180' + - '248' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 48830477285A4090A3ACA9BD2C68DC62 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:27:25Z' status: code: 200 message: OK @@ -3549,41 +2793,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:10:12 GMT + - Wed, 18 Oct 2023 22:27:56 GMT elapsed-time: - - '217' + - '204' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D47831EFAD4C4EE28942A680FABEE927 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:27:56Z' status: code: 200 message: OK @@ -3601,41 +2844,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:10:42 GMT + - Wed, 18 Oct 2023 22:28:26 GMT elapsed-time: - - '195' + - '308' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6167AA74D5C140D887355E9729266C28 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:28:26Z' status: code: 200 message: OK @@ -3653,41 +2895,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:11:14 GMT + - Wed, 18 Oct 2023 22:28:56 GMT elapsed-time: - - '230' + - '215' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D175C689DD4A4A358EBBDAC645DCF797 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:28:56Z' status: code: 200 message: OK @@ -3705,41 +2946,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:11:44 GMT + - Wed, 18 Oct 2023 22:29:27 GMT elapsed-time: - - '179' + - '302' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C2EC380226D94E2885D5877BBE83122D Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:29:27Z' status: code: 200 message: OK @@ -3757,41 +2997,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:12:14 GMT + - Wed, 18 Oct 2023 22:29:57 GMT elapsed-time: - - '178' + - '186' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 76BAB184654B419F9F5D910AA1DF781A Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:29:57Z' status: code: 200 message: OK @@ -3809,41 +3048,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:12:44 GMT + - Wed, 18 Oct 2023 22:30:27 GMT elapsed-time: - - '165' + - '311' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 0F5D0A807FCD4CBC9A3F3C71D3D556AD Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:30:27Z' status: code: 200 message: OK @@ -3861,41 +3099,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:13:15 GMT + - Wed, 18 Oct 2023 22:30:58 GMT elapsed-time: - - '210' + - '181' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2FD9D9462821408497B06D20E4CECFB2 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:30:58Z' status: code: 200 message: OK @@ -3913,41 +3150,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:13:45 GMT + - Wed, 18 Oct 2023 22:31:28 GMT elapsed-time: - - '169' + - '296' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B8A9A915B5934F4AB3399BF5896424DD Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:31:28Z' status: code: 200 message: OK @@ -3965,41 +3201,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:14:16 GMT + - Wed, 18 Oct 2023 22:31:58 GMT elapsed-time: - - '176' + - '162' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3E81579EF069442F8A84704B39B513A6 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:31:59Z' status: code: 200 message: OK @@ -4017,41 +3252,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:14:46 GMT + - Wed, 18 Oct 2023 22:32:29 GMT elapsed-time: - - '167' + - '200' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 081FE791D77644A1857774BDBE9FAAE2 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:32:29Z' status: code: 200 message: OK @@ -4069,41 +3303,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:15:16 GMT + - Wed, 18 Oct 2023 22:32:59 GMT elapsed-time: - - '189' + - '317' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 39462DDA0EB04F57B1D619E3C31D6046 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:32:59Z' status: code: 200 message: OK @@ -4121,41 +3354,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":2,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '610' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:15:47 GMT + - Wed, 18 Oct 2023 22:33:30 GMT elapsed-time: - - '184' + - '308' etag: - - W/"datetime'2023-03-13T12%3A50%3A25.5564564Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 9e91c3e0-c19d-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8EEF8B8F58C64766A969B01A6285FF8C Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:33:30Z' status: code: 200 message: OK @@ -4163,105 +3395,58 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - search service create + - search service update Connection: - keep-alive ParameterSetName: - - -n -g --sku + - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T12:36:58Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '332' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 13:15:47 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": "standard"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "enabled"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - Content-Length: - - '167' - Content-Type: - - application/json - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '610' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:15:55 GMT + - Wed, 18 Oct 2023 22:34:00 GMT elapsed-time: - - '5058' + - '401' etag: - - W/"datetime'2023-03-13T13%3A15%3A54.4897757Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2b398550-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-msedge-ref: + - 'Ref A: 17D2D8C9C6B1419D965A23B2A43F8F84 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:34:00Z' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -4271,101 +3456,91 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '610' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:15:55 GMT + - Wed, 18 Oct 2023 22:34:30 GMT elapsed-time: - - '160' + - '238' etag: - - W/"datetime'2023-03-13T13%3A15%3A54.4897757Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 64F2564B82FF448B9836F1DEB318C2BA Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:34:31Z' status: code: 200 message: OK - request: - body: '{"location": "West US", "sku": {"name": "standard"}, "properties": {"replicaCount": - 1, "partitionCount": 2, "hostingMode": "default", "publicNetworkAccess": "Enabled", - "networkRuleSet": {"ipRules": []}, "authOptions": {"apiKeyOnly": {}}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - search service update Connection: - keep-alive - Content-Length: - - '238' - Content-Type: - - application/json ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:15:57 GMT + - Wed, 18 Oct 2023 22:35:01 GMT elapsed-time: - - '806' + - '215' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-msedge-ref: + - 'Ref A: B9DBA3FDA0DF4B39B9E501FDF35A0AD6 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:35:01Z' status: code: 200 message: OK @@ -4383,41 +3558,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:16:27 GMT + - Wed, 18 Oct 2023 22:35:31 GMT elapsed-time: - - '198' + - '316' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1ECF16A2FC5B4D509D58AC5150A871D6 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:35:31Z' status: code: 200 message: OK @@ -4435,41 +3609,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:16:57 GMT + - Wed, 18 Oct 2023 22:36:01 GMT elapsed-time: - - '166' + - '214' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 66D0D6C2C7B54484B1F78AD2DC6AE672 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:36:02Z' status: code: 200 message: OK @@ -4487,41 +3660,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:17:27 GMT + - Wed, 18 Oct 2023 22:36:32 GMT elapsed-time: - - '158' + - '305' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7B4DBDEB8F574BF9970C94D688E8A066 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:36:32Z' status: code: 200 message: OK @@ -4539,41 +3711,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:17:58 GMT + - Wed, 18 Oct 2023 22:37:02 GMT elapsed-time: - - '182' + - '192' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1F278477835B429B9ECDFA0F87EDC717 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:37:03Z' status: code: 200 message: OK @@ -4591,41 +3762,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:18:28 GMT + - Wed, 18 Oct 2023 22:37:33 GMT elapsed-time: - - '195' + - '274' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A8B317CA957E4039830068319BF035F9 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:37:33Z' status: code: 200 message: OK @@ -4643,41 +3813,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:18:59 GMT + - Wed, 18 Oct 2023 22:38:03 GMT elapsed-time: - - '246' + - '193' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 53D8A20CD88E4D10AC45812DC18848E4 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:38:03Z' status: code: 200 message: OK @@ -4695,41 +3864,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:19:30 GMT + - Wed, 18 Oct 2023 22:38:33 GMT elapsed-time: - - '169' + - '302' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 336C0C75D1BA4A739FB7E42406A33634 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:38:34Z' status: code: 200 message: OK @@ -4747,41 +3915,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:20:00 GMT + - Wed, 18 Oct 2023 22:39:03 GMT elapsed-time: - - '158' + - '167' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: CF7148952B514C358E86B53C29DCDF57 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:39:04Z' status: code: 200 message: OK @@ -4799,41 +3966,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:20:30 GMT + - Wed, 18 Oct 2023 22:39:35 GMT elapsed-time: - - '173' + - '248' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: DE3A0F1E29464271A1D498E5447F3208 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:39:34Z' status: code: 200 message: OK @@ -4851,41 +4017,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:21:00 GMT + - Wed, 18 Oct 2023 22:40:05 GMT elapsed-time: - - '170' + - '290' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 63B4652539BC4BB6A45B3B2AF196FA8B Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:40:05Z' status: code: 200 message: OK @@ -4903,41 +4068,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:21:30 GMT + - Wed, 18 Oct 2023 22:40:36 GMT elapsed-time: - - '166' + - '355' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 50D3B3AC87114BEF813E6A9C36A72A11 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:40:35Z' status: code: 200 message: OK @@ -4955,41 +4119,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:22:02 GMT + - Wed, 18 Oct 2023 22:41:06 GMT elapsed-time: - '213' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 914E5F0F1CB54E1E9B8C3952AA328538 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:41:06Z' status: code: 200 message: OK @@ -5007,41 +4170,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:22:32 GMT + - Wed, 18 Oct 2023 22:41:36 GMT elapsed-time: - - '211' + - '304' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D226890C357942F1A462929546CC1932 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:41:36Z' status: code: 200 message: OK @@ -5059,41 +4221,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:23:02 GMT + - Wed, 18 Oct 2023 22:42:07 GMT elapsed-time: - - '173' + - '162' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: ADA0C42821FF4CAAB9C882D0CBFB663D Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:42:07Z' status: code: 200 message: OK @@ -5111,41 +4272,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:23:33 GMT + - Wed, 18 Oct 2023 22:42:37 GMT elapsed-time: - - '197' + - '279' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A4B6C6FC2F63490593A7DF53ACA74325 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:42:37Z' status: code: 200 message: OK @@ -5163,41 +4323,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:24:03 GMT + - Wed, 18 Oct 2023 22:43:07 GMT elapsed-time: - - '190' + - '189' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 40B8F69F95FC4BE3A7B57D99F24BD27D Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:43:07Z' status: code: 200 message: OK @@ -5215,41 +4374,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:24:33 GMT + - Wed, 18 Oct 2023 22:43:38 GMT elapsed-time: - - '203' + - '233' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7CB138A06CDB49FF89DF76738F53E3C4 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:43:38Z' status: code: 200 message: OK @@ -5267,41 +4425,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:25:05 GMT + - Wed, 18 Oct 2023 22:44:08 GMT elapsed-time: - - '231' + - '173' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 09B0A91F22AB4B818D16C67C30CB6BF3 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:44:08Z' status: code: 200 message: OK @@ -5319,41 +4476,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:25:35 GMT + - Wed, 18 Oct 2023 22:44:38 GMT elapsed-time: - - '188' + - '267' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3479D528F8E341C9837DF75786A3AA01 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:44:38Z' status: code: 200 message: OK @@ -5371,41 +4527,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:26:05 GMT + - Wed, 18 Oct 2023 22:45:09 GMT elapsed-time: - - '199' + - '241' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 0A45A986EF14491789963B7180B7DD8E Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:45:09Z' status: code: 200 message: OK @@ -5423,41 +4578,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:26:35 GMT + - Wed, 18 Oct 2023 22:45:39 GMT elapsed-time: - - '172' + - '191' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 372F95C3FBE348FBA8291CD95C15DFF7 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:45:39Z' status: code: 200 message: OK @@ -5475,41 +4629,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:27:05 GMT + - Wed, 18 Oct 2023 22:46:09 GMT elapsed-time: - - '206' + - '214' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1D2FDF18174A4BE2BF7015D6F97AC141 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:46:09Z' status: code: 200 message: OK @@ -5527,41 +4680,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:27:37 GMT + - Wed, 18 Oct 2023 22:46:40 GMT elapsed-time: - - '181' + - '285' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 254971939B8F467484484D4E9FF5C683 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:46:40Z' status: code: 200 message: OK @@ -5579,41 +4731,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:28:07 GMT + - Wed, 18 Oct 2023 22:47:10 GMT elapsed-time: - - '167' + - '185' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E04074CC22DD4136A7801C9EDA0687BA Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:47:10Z' status: code: 200 message: OK @@ -5631,41 +4782,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:28:37 GMT + - Wed, 18 Oct 2023 22:47:40 GMT elapsed-time: - - '166' + - '234' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6E6DFC506624478CB84C0A92671A5D7C Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:47:41Z' status: code: 200 message: OK @@ -5683,41 +4833,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:29:07 GMT + - Wed, 18 Oct 2023 22:48:11 GMT elapsed-time: - - '174' + - '187' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 04E0C8A1EA8A49EAA84E62E97703A8F2 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:48:11Z' status: code: 200 message: OK @@ -5735,41 +4884,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:29:38 GMT + - Wed, 18 Oct 2023 22:48:41 GMT elapsed-time: - - '152' + - '213' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 86F5CB3618FB44589932C87BF441066B Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:48:41Z' status: code: 200 message: OK @@ -5787,41 +4935,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:30:09 GMT + - Wed, 18 Oct 2023 22:49:11 GMT elapsed-time: - - '202' + - '217' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C7DBDD2A462440968ACAE6DE14A00880 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:49:12Z' status: code: 200 message: OK @@ -5839,41 +4986,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:30:39 GMT + - Wed, 18 Oct 2023 22:49:42 GMT elapsed-time: - - '339' + - '288' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 585243D376E74A3995A73EFA311E82B6 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:49:42Z' status: code: 200 message: OK @@ -5891,41 +5037,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:31:09 GMT + - Wed, 18 Oct 2023 22:50:12 GMT elapsed-time: - - '165' + - '284' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7DCD4A9656704688A3AD50D8EB43A519 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:50:13Z' status: code: 200 message: OK @@ -5943,41 +5088,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:31:41 GMT + - Wed, 18 Oct 2023 22:50:43 GMT elapsed-time: - - '212' + - '218' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2C73714AD5DB488CA5EFBFCA5C3723B4 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:50:43Z' status: code: 200 message: OK @@ -5995,41 +5139,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:32:11 GMT + - Wed, 18 Oct 2023 22:51:13 GMT elapsed-time: - - '193' + - '313' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5A7CD7B32F984184B61C6D567EAE0740 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:51:13Z' status: code: 200 message: OK @@ -6047,41 +5190,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:32:41 GMT + - Wed, 18 Oct 2023 22:51:43 GMT elapsed-time: - - '198' + - '218' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 755C7D71ED1C42DCA6936A284D75C1AA Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:51:44Z' status: code: 200 message: OK @@ -6099,41 +5241,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:33:11 GMT + - Wed, 18 Oct 2023 22:52:14 GMT elapsed-time: - - '179' + - '235' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 13F1643E769641ABB6BEA8C8E39975E7 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:52:14Z' status: code: 200 message: OK @@ -6151,41 +5292,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:33:42 GMT + - Wed, 18 Oct 2023 22:52:44 GMT elapsed-time: - - '167' + - '246' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 32AE8E0E8A1C4B9E81CA191078320CFF Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:52:45Z' status: code: 200 message: OK @@ -6203,41 +5343,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:34:13 GMT + - Wed, 18 Oct 2023 22:53:14 GMT elapsed-time: - - '400' + - '255' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B890FEECDA30465E84FD3201E2020617 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:53:15Z' status: code: 200 message: OK @@ -6255,41 +5394,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:34:43 GMT + - Wed, 18 Oct 2023 22:53:45 GMT elapsed-time: - - '168' + - '297' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: DAFAF5EDDCE04C8EA51694194BE85BC3 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:53:45Z' status: code: 200 message: OK @@ -6307,41 +5445,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:35:13 GMT + - Wed, 18 Oct 2023 22:54:15 GMT elapsed-time: - - '425' + - '174' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 16B6B93C49674B49931453FBB7C99153 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:54:16Z' status: code: 200 message: OK @@ -6359,41 +5496,40 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":2,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":2,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '610' + - '708' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:35:45 GMT + - Wed, 18 Oct 2023 22:54:47 GMT elapsed-time: - - '229' + - '189' etag: - - W/"datetime'2023-03-13T13%3A15%3A57.159861Z'" + - W/"datetime'2023-10-18T22%3A26%3A24.6281801Z'" expires: - '-1' pragma: - no-cache request-id: - - 2fa3bd54-c1a1-11ed-a808-b7b53f28d5a3 + - 5e48d8a7-6e05-11ee-8503-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 027090E7AE824B56BA9E80E7E054EBA6 Ref B: CO6AA3150217027 Ref C: 2023-10-18T22:54:46Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_ip_rules.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_ip_rules.yaml index 16e4b28d4dd..f4aab0c2567 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_ip_rules.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_ip_rules.yaml @@ -13,39 +13,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T13:35:47Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_update_ip_rules","date":"2023-10-18T22:41:28Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '393' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:35:48 GMT + - Wed, 18 Oct 2023 22:41:29 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 36BB507A54F44C8B9E91F1C761D0B700 Ref B: CO6AA3150218017 Ref C: 2023-10-18T22:41:29Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "sku": {"name": "standard"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "enabled", - "networkRuleSet": {"ipRules": [{"value": "123.4.5.6"}, {"value": "123.5.6.7"}]}}}' + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "networkRuleSet": + {"ipRules": [{"value": "123.4.5.6"}, {"value": "123.5.6.7"}]}, "partitionCount": + 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "standard"}}' headers: Accept: - application/json @@ -56,45 +57,50 @@ interactions: Connection: - keep-alive Content-Length: - - '248' + - '253' Content-Type: - application/json ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '661' + - '783' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:35:56 GMT + - Wed, 18 Oct 2023 22:41:34 GMT elapsed-time: - - '6754' + - '3917' etag: - - W/"datetime'2023-03-13T13%3A35%3A57.2477674Z'" + - W/"datetime'2023-10-18T22%3A41%3A34.1588688Z'" expires: - '-1' pragma: - no-cache request-id: - - f73f1262-c1a3-11ed-a808-b7b53f28d5a3 + - 7ab9962c-6e07-11ee-9c86-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/f5375722-0f8b-4de8-a3f0-1fdd35a4e638 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + x-msedge-ref: + - 'Ref A: 171D594DC340455B90BC8BE9E3738ADE Ref B: CO6AA3150219039 Ref C: 2023-10-18T22:41:30Z' status: code: 201 message: Created @@ -112,41 +118,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '661' + - '783' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:36:28 GMT + - Wed, 18 Oct 2023 22:41:34 GMT elapsed-time: - - '206' + - '298' etag: - - W/"datetime'2023-03-13T13%3A35%3A57.2477674Z'" + - W/"datetime'2023-10-18T22%3A41%3A34.1588688Z'" expires: - '-1' pragma: - no-cache request-id: - - f73f1262-c1a3-11ed-a808-b7b53f28d5a3 + - 7ab9962c-6e07-11ee-9c86-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: CEF9D53E0FF64BC0852C53DE5D1D4B72 Ref B: CO6AA3150219039 Ref C: 2023-10-18T22:41:34Z' status: code: 200 message: OK @@ -164,41 +169,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '661' + - '783' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:36:58 GMT + - Wed, 18 Oct 2023 22:42:04 GMT elapsed-time: - - '205' + - '180' etag: - - W/"datetime'2023-03-13T13%3A35%3A57.2477674Z'" + - W/"datetime'2023-10-18T22%3A41%3A34.1588688Z'" expires: - '-1' pragma: - no-cache request-id: - - f73f1262-c1a3-11ed-a808-b7b53f28d5a3 + - 7ab9962c-6e07-11ee-9c86-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 097D1480150C41BCA9828DFB6E1ADE60 Ref B: CO6AA3150219039 Ref C: 2023-10-18T22:42:04Z' status: code: 200 message: OK @@ -216,41 +220,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '661' + - '783' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:37:28 GMT + - Wed, 18 Oct 2023 22:42:35 GMT elapsed-time: - - '250' + - '292' etag: - - W/"datetime'2023-03-13T13%3A35%3A57.2477674Z'" + - W/"datetime'2023-10-18T22%3A41%3A34.1588688Z'" expires: - '-1' pragma: - no-cache request-id: - - f73f1262-c1a3-11ed-a808-b7b53f28d5a3 + - 7ab9962c-6e07-11ee-9c86-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4A1E10A2F3904D9B802D8A135B6820CA Ref B: CO6AA3150219039 Ref C: 2023-10-18T22:42:35Z' status: code: 200 message: OK @@ -268,41 +271,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '661' + - '783' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:37:59 GMT + - Wed, 18 Oct 2023 22:43:05 GMT elapsed-time: - - '195' + - '249' etag: - - W/"datetime'2023-03-13T13%3A35%3A57.2477674Z'" + - W/"datetime'2023-10-18T22%3A41%3A34.1588688Z'" expires: - '-1' pragma: - no-cache request-id: - - f73f1262-c1a3-11ed-a808-b7b53f28d5a3 + - 7ab9962c-6e07-11ee-9c86-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F7416DCBD6724B739EEB9C6E13EA96E2 Ref B: CO6AA3150219039 Ref C: 2023-10-18T22:43:05Z' status: code: 200 message: OK @@ -320,41 +322,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '661' + - '783' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:38:29 GMT + - Wed, 18 Oct 2023 22:43:35 GMT elapsed-time: - - '196' + - '236' etag: - - W/"datetime'2023-03-13T13%3A35%3A57.2477674Z'" + - W/"datetime'2023-10-18T22%3A41%3A34.1588688Z'" expires: - '-1' pragma: - no-cache request-id: - - f73f1262-c1a3-11ed-a808-b7b53f28d5a3 + - 7ab9962c-6e07-11ee-9c86-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 97A200E657A04456B5CF0E7F4EC8298D Ref B: CO6AA3150219039 Ref C: 2023-10-18T22:43:36Z' status: code: 200 message: OK @@ -372,41 +373,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '661' + - '783' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:39:00 GMT + - Wed, 18 Oct 2023 22:44:06 GMT elapsed-time: - - '214' + - '229' etag: - - W/"datetime'2023-03-13T13%3A35%3A57.2477674Z'" + - W/"datetime'2023-10-18T22%3A41%3A34.1588688Z'" expires: - '-1' pragma: - no-cache request-id: - - f73f1262-c1a3-11ed-a808-b7b53f28d5a3 + - 7ab9962c-6e07-11ee-9c86-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 789BB0C725B34524BC46B12B5C95E2D7 Ref B: CO6AA3150219039 Ref C: 2023-10-18T22:44:06Z' status: code: 200 message: OK @@ -424,41 +424,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '661' + - '783' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:39:30 GMT + - Wed, 18 Oct 2023 22:44:36 GMT elapsed-time: - - '159' + - '283' etag: - - W/"datetime'2023-03-13T13%3A35%3A57.2477674Z'" + - W/"datetime'2023-10-18T22%3A41%3A34.1588688Z'" expires: - '-1' pragma: - no-cache request-id: - - f73f1262-c1a3-11ed-a808-b7b53f28d5a3 + - 7ab9962c-6e07-11ee-9c86-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4B70F8A98885411EA3C5760B123640E5 Ref B: CO6AA3150219039 Ref C: 2023-10-18T22:44:36Z' status: code: 200 message: OK @@ -476,41 +475,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '661' + - '783' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:40:01 GMT + - Wed, 18 Oct 2023 22:45:06 GMT elapsed-time: - - '251' + - '193' etag: - - W/"datetime'2023-03-13T13%3A35%3A57.2477674Z'" + - W/"datetime'2023-10-18T22%3A41%3A34.1588688Z'" expires: - '-1' pragma: - no-cache request-id: - - f73f1262-c1a3-11ed-a808-b7b53f28d5a3 + - 7ab9962c-6e07-11ee-9c86-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8B54D8D02A5E4041B393A886217DA9A4 Ref B: CO6AA3150219039 Ref C: 2023-10-18T22:45:07Z' status: code: 200 message: OK @@ -528,41 +526,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '661' + - '783' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:40:31 GMT + - Wed, 18 Oct 2023 22:45:37 GMT elapsed-time: - - '164' + - '211' etag: - - W/"datetime'2023-03-13T13%3A35%3A57.2477674Z'" + - W/"datetime'2023-10-18T22%3A41%3A34.1588688Z'" expires: - '-1' pragma: - no-cache request-id: - - f73f1262-c1a3-11ed-a808-b7b53f28d5a3 + - 7ab9962c-6e07-11ee-9c86-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A709CE8044D24F1980B8F0ACD8721219 Ref B: CO6AA3150219039 Ref C: 2023-10-18T22:45:37Z' status: code: 200 message: OK @@ -580,41 +577,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '661' + - '783' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:41:02 GMT + - Wed, 18 Oct 2023 22:46:07 GMT elapsed-time: - - '187' + - '239' etag: - - W/"datetime'2023-03-13T13%3A35%3A57.2477674Z'" + - W/"datetime'2023-10-18T22%3A41%3A34.1588688Z'" expires: - '-1' pragma: - no-cache request-id: - - f73f1262-c1a3-11ed-a808-b7b53f28d5a3 + - 7ab9962c-6e07-11ee-9c86-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3EE835865CDD49FCBFBD824F83D81784 Ref B: CO6AA3150219039 Ref C: 2023-10-18T22:46:07Z' status: code: 200 message: OK @@ -632,41 +628,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '661' + - '783' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:41:32 GMT + - Wed, 18 Oct 2023 22:46:37 GMT elapsed-time: - - '163' + - '193' etag: - - W/"datetime'2023-03-13T13%3A35%3A57.2477674Z'" + - W/"datetime'2023-10-18T22%3A41%3A34.1588688Z'" expires: - '-1' pragma: - no-cache request-id: - - f73f1262-c1a3-11ed-a808-b7b53f28d5a3 + - 7ab9962c-6e07-11ee-9c86-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1D411AE096A64872846E32CBD1A8695A Ref B: CO6AA3150219039 Ref C: 2023-10-18T22:46:38Z' status: code: 200 message: OK @@ -684,41 +679,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '661' + - '783' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:42:02 GMT + - Wed, 18 Oct 2023 22:47:08 GMT elapsed-time: - - '221' + - '258' etag: - - W/"datetime'2023-03-13T13%3A35%3A57.2477674Z'" + - W/"datetime'2023-10-18T22%3A41%3A34.1588688Z'" expires: - '-1' pragma: - no-cache request-id: - - f73f1262-c1a3-11ed-a808-b7b53f28d5a3 + - 7ab9962c-6e07-11ee-9c86-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 228FCA7FFF654D51A17ABAD2A0348742 Ref B: CO6AA3150219039 Ref C: 2023-10-18T22:47:08Z' status: code: 200 message: OK @@ -736,41 +730,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '661' + - '783' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:42:33 GMT + - Wed, 18 Oct 2023 22:47:38 GMT elapsed-time: - - '187' + - '170' etag: - - W/"datetime'2023-03-13T13%3A35%3A57.2477674Z'" + - W/"datetime'2023-10-18T22%3A41%3A34.1588688Z'" expires: - '-1' pragma: - no-cache request-id: - - f73f1262-c1a3-11ed-a808-b7b53f28d5a3 + - 7ab9962c-6e07-11ee-9c86-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 75F884EF9047404DBF7C9956CFF53113 Ref B: CO6AA3150219039 Ref C: 2023-10-18T22:47:38Z' status: code: 200 message: OK @@ -788,41 +781,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '661' + - '783' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:43:04 GMT + - Wed, 18 Oct 2023 22:48:08 GMT elapsed-time: - - '164' + - '225' etag: - - W/"datetime'2023-03-13T13%3A35%3A57.2477674Z'" + - W/"datetime'2023-10-18T22%3A41%3A34.1588688Z'" expires: - '-1' pragma: - no-cache request-id: - - f73f1262-c1a3-11ed-a808-b7b53f28d5a3 + - 7ab9962c-6e07-11ee-9c86-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 917BB75BF12C4E73A53F73A6C744598E Ref B: CO6AA3150219039 Ref C: 2023-10-18T22:48:09Z' status: code: 200 message: OK @@ -840,41 +832,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '661' + - '783' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:43:34 GMT + - Wed, 18 Oct 2023 22:48:39 GMT elapsed-time: - - '168' + - '176' etag: - - W/"datetime'2023-03-13T13%3A35%3A57.2477674Z'" + - W/"datetime'2023-10-18T22%3A41%3A34.1588688Z'" expires: - '-1' pragma: - no-cache request-id: - - f73f1262-c1a3-11ed-a808-b7b53f28d5a3 + - 7ab9962c-6e07-11ee-9c86-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B76986AB82864436A844EAE4798A0EB5 Ref B: CO6AA3150219039 Ref C: 2023-10-18T22:48:39Z' status: code: 200 message: OK @@ -892,41 +883,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '661' + - '783' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:44:04 GMT + - Wed, 18 Oct 2023 22:49:09 GMT elapsed-time: - - '192' + - '267' etag: - - W/"datetime'2023-03-13T13%3A35%3A57.2477674Z'" + - W/"datetime'2023-10-18T22%3A41%3A34.1588688Z'" expires: - '-1' pragma: - no-cache request-id: - - f73f1262-c1a3-11ed-a808-b7b53f28d5a3 + - 7ab9962c-6e07-11ee-9c86-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 783715721C814E479BB963D8677B8A10 Ref B: CO6AA3150219039 Ref C: 2023-10-18T22:49:09Z' status: code: 200 message: OK @@ -944,41 +934,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '661' + - '783' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:44:35 GMT + - Wed, 18 Oct 2023 22:49:40 GMT elapsed-time: - - '166' + - '866' etag: - - W/"datetime'2023-03-13T13%3A35%3A57.2477674Z'" + - W/"datetime'2023-10-18T22%3A41%3A34.1588688Z'" expires: - '-1' pragma: - no-cache request-id: - - f73f1262-c1a3-11ed-a808-b7b53f28d5a3 + - 7ab9962c-6e07-11ee-9c86-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8C50A1BF33D647FD8ADEDD3982F10F1A Ref B: CO6AA3150219039 Ref C: 2023-10-18T22:49:40Z' status: code: 200 message: OK @@ -996,41 +985,40 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '661' + - '775' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:45:06 GMT + - Wed, 18 Oct 2023 22:50:10 GMT elapsed-time: - - '176' + - '224' etag: - - W/"datetime'2023-03-13T13%3A35%3A57.2477674Z'" + - W/"datetime'2023-10-18T22%3A41%3A34.1588688Z'" expires: - '-1' pragma: - no-cache request-id: - - f73f1262-c1a3-11ed-a808-b7b53f28d5a3 + - 7ab9962c-6e07-11ee-9c86-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4C1465F5DF8D448A88CF31700A6BEA6E Ref B: CO6AA3150219039 Ref C: 2023-10-18T22:50:11Z' status: code: 200 message: OK @@ -1038,103 +1026,113 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - search service create + - search service update Connection: - keep-alive ParameterSetName: - - -n -g --sku --ip-rules + - -n -g --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '661' + - '751' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:45:36 GMT + - Wed, 18 Oct 2023 22:50:12 GMT elapsed-time: - - '188' + - '219' etag: - - W/"datetime'2023-03-13T13%3A35%3A57.2477674Z'" + - W/"datetime'2023-10-18T22%3A41%3A34.1588688Z'" expires: - '-1' pragma: - no-cache request-id: - - f73f1262-c1a3-11ed-a808-b7b53f28d5a3 + - b1ce39b3-6e08-11ee-aed5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E770F75AF1DA414D8345E0960890DC31 Ref B: CO6AA3150217033 Ref C: 2023-10-18T22:50:11Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "East US 2 EUAP", "properties": {"authOptions": {"apiKeyOnly": + {}}, "disableLocalAuth": false, "encryptionWithCmk": {"enforcement": "Unspecified"}, + "hostingMode": "default", "networkRuleSet": {"ipRules": [{"value": "123.4.5.6"}, + {"value": "123.5.6.7"}, {"value": "123.6.7.8"}]}, "partitionCount": 1, "publicNetworkAccess": + "Enabled", "replicaCount": 1}, "sku": {"name": "standard"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - search service create + - search service update Connection: - keep-alive + Content-Length: + - '395' + Content-Type: + - application/json ParameterSetName: - - -n -g --sku --ip-rules + - -n -g --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '661' + - '781' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:46:06 GMT + - Wed, 18 Oct 2023 22:50:13 GMT elapsed-time: - - '171' + - '701' etag: - - W/"datetime'2023-03-13T13%3A35%3A57.2477674Z'" + - W/"datetime'2023-10-18T22%3A50%3A13.0498284Z'" expires: - '-1' pragma: - no-cache request-id: - - f73f1262-c1a3-11ed-a808-b7b53f28d5a3 + - b1ce39b3-6e08-11ee-aed5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/d73c80b9-9503-46e0-a54d-f64c6d0740bd + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + x-msedge-ref: + - 'Ref A: EAC5DBECF72E47D9AE34F4D70031912F Ref B: CO6AA3150217033 Ref C: 2023-10-18T22:50:12Z' status: code: 200 message: OK @@ -1146,160 +1144,97 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --ip-rules - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '653' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 13:46:36 GMT - elapsed-time: - - '164' - etag: - - W/"datetime'2023-03-13T13%3A35%3A57.2477674Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - f73f1262-c1a3-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - search service update Connection: - keep-alive ParameterSetName: - -n -g --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '653' + - '781' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:46:37 GMT + - Wed, 18 Oct 2023 22:50:13 GMT elapsed-time: - - '212' + - '257' etag: - - W/"datetime'2023-03-13T13%3A35%3A57.2477674Z'" + - W/"datetime'2023-10-18T22%3A50%3A13.0498284Z'" expires: - '-1' pragma: - no-cache request-id: - - 79e3a4e8-c1a5-11ed-a808-b7b53f28d5a3 + - b1ce39b3-6e08-11ee-aed5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 32D33A181E4043E9A653EC10BBD89A73 Ref B: CO6AA3150217033 Ref C: 2023-10-18T22:50:13Z' status: code: 200 message: OK - request: - body: '{"location": "West US", "sku": {"name": "standard"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "Enabled", - "networkRuleSet": {"ipRules": [{"value": "123.4.5.6"}, {"value": "123.5.6.7"}, - {"value": "123.6.7.8"}]}, "authOptions": {"apiKeyOnly": {}}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - search service update Connection: - keep-alive - Content-Length: - - '308' - Content-Type: - - application/json ParameterSetName: - -n -g --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '781' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:46:39 GMT + - Wed, 18 Oct 2023 22:50:44 GMT elapsed-time: - - '712' + - '282' etag: - - W/"datetime'2023-03-13T13%3A46%3A39.8660392Z'" + - W/"datetime'2023-10-18T22%3A50%3A13.0498284Z'" expires: - '-1' pragma: - no-cache request-id: - - 79e3a4e8-c1a5-11ed-a808-b7b53f28d5a3 + - b1ce39b3-6e08-11ee-aed5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-msedge-ref: + - 'Ref A: 88205B60279741C896C09EA314BF9E56 Ref B: CO6AA3150217033 Ref C: 2023-10-18T22:50:43Z' status: code: 200 message: OK @@ -1317,41 +1252,40 @@ interactions: ParameterSetName: - -n -g --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '683' + - '773' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:47:10 GMT + - Wed, 18 Oct 2023 22:51:14 GMT elapsed-time: - - '201' + - '241' etag: - - W/"datetime'2023-03-13T13%3A46%3A39.8660392Z'" + - W/"datetime'2023-10-18T22%3A50%3A13.0498284Z'" expires: - '-1' pragma: - no-cache request-id: - - 79e3a4e8-c1a5-11ed-a808-b7b53f28d5a3 + - b1ce39b3-6e08-11ee-aed5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: FD06418FB2C245738E17200E52AA9638 Ref B: CO6AA3150217033 Ref C: 2023-10-18T22:51:14Z' status: code: 200 message: OK @@ -1359,7 +1293,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1369,46 +1303,48 @@ interactions: ParameterSetName: - -n -g --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '675' + - '773' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:47:40 GMT + - Wed, 18 Oct 2023 22:51:14 GMT elapsed-time: - - '166' + - '339' etag: - - W/"datetime'2023-03-13T13%3A46%3A39.8660392Z'" + - W/"datetime'2023-10-18T22%3A50%3A13.0498284Z'" expires: - '-1' pragma: - no-cache request-id: - - 79e3a4e8-c1a5-11ed-a808-b7b53f28d5a3 + - d758db7c-6e08-11ee-b85c-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 05631F9C8AE8401892050DD50C99D5BA Ref B: CO6AA3150220027 Ref C: 2023-10-18T22:51:14Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "East US 2 EUAP", "properties": {"authOptions": {"apiKeyOnly": + {}}, "disableLocalAuth": false, "encryptionWithCmk": {"enforcement": "Unspecified"}, + "hostingMode": "default", "networkRuleSet": {}, "partitionCount": 1, "publicNetworkAccess": + "Enabled", "replicaCount": 1}, "sku": {"name": "standard"}}' headers: Accept: - application/json @@ -1418,104 +1354,102 @@ interactions: - search service update Connection: - keep-alive + Content-Length: + - '312' + Content-Type: + - application/json ParameterSetName: - -n -g --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '675' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:47:41 GMT + - Wed, 18 Oct 2023 22:51:15 GMT elapsed-time: - - '166' + - '641' etag: - - W/"datetime'2023-03-13T13%3A46%3A39.8660392Z'" + - W/"datetime'2023-10-18T22%3A51%3A15.9960342Z'" expires: - '-1' pragma: - no-cache request-id: - - 9fa70f08-c1a5-11ed-a808-b7b53f28d5a3 + - d758db7c-6e08-11ee-b85c-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/82e2e434-56de-4698-b9b7-79d18fd8ed69 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 2D709EAEEF8E4F9597C1EB5E747B6C7F Ref B: CO6AA3150220027 Ref C: 2023-10-18T22:51:15Z' status: code: 200 message: OK - request: - body: '{"location": "West US", "sku": {"name": "standard"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "Enabled", - "networkRuleSet": {"ipRules": []}, "authOptions": {"apiKeyOnly": {}}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - search service update Connection: - keep-alive - Content-Length: - - '238' - Content-Type: - - application/json ParameterSetName: - -n -g --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:47:42 GMT + - Wed, 18 Oct 2023 22:51:15 GMT elapsed-time: - - '493' + - '250' etag: - - W/"datetime'2023-03-13T13%3A47%3A42.5091452Z'" + - W/"datetime'2023-10-18T22%3A51%3A15.9960342Z'" expires: - '-1' pragma: - no-cache request-id: - - 9fa70f08-c1a5-11ed-a808-b7b53f28d5a3 + - d758db7c-6e08-11ee-b85c-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-msedge-ref: + - 'Ref A: 61618C63FBFB446AAB52D884D4CE0C02 Ref B: CO6AA3150220027 Ref C: 2023-10-18T22:51:16Z' status: code: 200 message: OK @@ -1533,41 +1467,40 @@ interactions: ParameterSetName: - -n -g --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '618' + - '716' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:12 GMT + - Wed, 18 Oct 2023 22:51:46 GMT elapsed-time: - - '203' + - '282' etag: - - W/"datetime'2023-03-13T13%3A47%3A42.5091452Z'" + - W/"datetime'2023-10-18T22%3A51%3A15.9960342Z'" expires: - '-1' pragma: - no-cache request-id: - - 9fa70f08-c1a5-11ed-a808-b7b53f28d5a3 + - d758db7c-6e08-11ee-b85c-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7B0A2B8D1B0C48F89172DB910EBC3567 Ref B: CO6AA3150220027 Ref C: 2023-10-18T22:51:46Z' status: code: 200 message: OK @@ -1585,41 +1518,40 @@ interactions: ParameterSetName: - -n -g --ip-rules User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' headers: cache-control: - no-cache content-length: - - '610' + - '708' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:43 GMT + - Wed, 18 Oct 2023 22:52:16 GMT elapsed-time: - - '154' + - '183' etag: - - W/"datetime'2023-03-13T13%3A47%3A42.5091452Z'" + - W/"datetime'2023-10-18T22%3A51%3A15.9960342Z'" expires: - '-1' pragma: - no-cache request-id: - - 9fa70f08-c1a5-11ed-a808-b7b53f28d5a3 + - d758db7c-6e08-11ee-b85c-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 41C1133732784FC6B804EB89CF124E39 Ref B: CO6AA3150220027 Ref C: 2023-10-18T22:52:17Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_msi.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_msi.yaml index e1b630e358a..2ee85025d8c 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_msi.yaml @@ -13,39 +13,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T13:48:45Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_update_msi","date":"2023-10-18T23:26:58Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '388' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:47 GMT + - Wed, 18 Oct 2023 23:27:00 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: AD4AFDF87353420588A8847700CD972B Ref B: CO6AA3150219035 Ref C: 2023-10-18T23:27:00Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "sku": {"name": "basic"}, "identity": {"type": "SystemAssigned"}, - "properties": {"replicaCount": 1, "partitionCount": 1, "hostingMode": "default", - "publicNetworkAccess": "enabled"}}' + body: '{"identity": {"type": "SystemAssigned"}, "location": "eastus2euap", "properties": + {"hostingMode": "default", "partitionCount": 1, "publicNetworkAccess": "enabled", + "replicaCount": 1}, "sku": {"name": "basic"}}' headers: Accept: - application/json @@ -56,45 +57,50 @@ interactions: Connection: - keep-alive Content-Length: - - '204' + - '209' Content-Type: - application/json ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"6c6f9d4f-1a9b-4ce7-a2b4-7b6f1c9db92a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"55897b93-812f-41c6-9fa2-fc535594ae3a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:58 GMT + - Wed, 18 Oct 2023 23:27:05 GMT elapsed-time: - - '7590' + - '3762' etag: - - W/"datetime'2023-03-13T13%3A48%3A58.3556119Z'" + - W/"datetime'2023-10-18T23%3A27%3A06.0243972Z'" expires: - '-1' pragma: - no-cache request-id: - - c7625dea-c1a5-11ed-a808-b7b53f28d5a3 + - d64b97c3-6e0d-11ee-8dbc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/1bc8f3c9-a33e-4cca-9562-e7c1b55bf1b8 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' + x-msedge-ref: + - 'Ref A: 1AAD128309704106ACE8F6AEAA1A4CDB Ref B: CO6AA3150217021 Ref C: 2023-10-18T23:27:01Z' status: code: 201 message: Created @@ -112,93 +118,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"6c6f9d4f-1a9b-4ce7-a2b4-7b6f1c9db92a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 13:49:28 GMT - elapsed-time: - - '187' - etag: - - W/"datetime'2023-03-13T13%3A48%3A58.3556119Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c7625dea-c1a5-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"6c6f9d4f-1a9b-4ce7-a2b4-7b6f1c9db92a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"55897b93-812f-41c6-9fa2-fc535594ae3a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:49:58 GMT + - Wed, 18 Oct 2023 23:27:06 GMT elapsed-time: - - '169' + - '181' etag: - - W/"datetime'2023-03-13T13%3A48%3A58.3556119Z'" + - W/"datetime'2023-10-18T23%3A27%3A06.0243972Z'" expires: - '-1' pragma: - no-cache request-id: - - c7625dea-c1a5-11ed-a808-b7b53f28d5a3 + - d64b97c3-6e0d-11ee-8dbc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: FF4791F057D948CBB6278DA2B6A238A6 Ref B: CO6AA3150217021 Ref C: 2023-10-18T23:27:06Z' status: code: 200 message: OK @@ -216,41 +169,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"6c6f9d4f-1a9b-4ce7-a2b4-7b6f1c9db92a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"55897b93-812f-41c6-9fa2-fc535594ae3a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:50:29 GMT + - Wed, 18 Oct 2023 23:27:36 GMT elapsed-time: - - '180' + - '272' etag: - - W/"datetime'2023-03-13T13%3A48%3A58.3556119Z'" + - W/"datetime'2023-10-18T23%3A27%3A06.0243972Z'" expires: - '-1' pragma: - no-cache request-id: - - c7625dea-c1a5-11ed-a808-b7b53f28d5a3 + - d64b97c3-6e0d-11ee-8dbc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6B54135FA9404516BD5E8177D829940B Ref B: CO6AA3150217021 Ref C: 2023-10-18T23:27:36Z' status: code: 200 message: OK @@ -268,41 +220,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"6c6f9d4f-1a9b-4ce7-a2b4-7b6f1c9db92a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"55897b93-812f-41c6-9fa2-fc535594ae3a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:51:00 GMT + - Wed, 18 Oct 2023 23:28:07 GMT elapsed-time: - - '160' + - '269' etag: - - W/"datetime'2023-03-13T13%3A48%3A58.3556119Z'" + - W/"datetime'2023-10-18T23%3A27%3A06.0243972Z'" expires: - '-1' pragma: - no-cache request-id: - - c7625dea-c1a5-11ed-a808-b7b53f28d5a3 + - d64b97c3-6e0d-11ee-8dbc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 0F50D5B934AA40A6B0E113434EE7C2F5 Ref B: CO6AA3150217021 Ref C: 2023-10-18T23:28:07Z' status: code: 200 message: OK @@ -320,41 +271,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"6c6f9d4f-1a9b-4ce7-a2b4-7b6f1c9db92a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"55897b93-812f-41c6-9fa2-fc535594ae3a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:51:30 GMT + - Wed, 18 Oct 2023 23:28:37 GMT elapsed-time: - - '157' + - '296' etag: - - W/"datetime'2023-03-13T13%3A48%3A58.3556119Z'" + - W/"datetime'2023-10-18T23%3A27%3A06.0243972Z'" expires: - '-1' pragma: - no-cache request-id: - - c7625dea-c1a5-11ed-a808-b7b53f28d5a3 + - d64b97c3-6e0d-11ee-8dbc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: CCB5E6BD6D8E4A04B1DFF5ADEF3F2248 Ref B: CO6AA3150217021 Ref C: 2023-10-18T23:28:37Z' status: code: 200 message: OK @@ -372,41 +322,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"6c6f9d4f-1a9b-4ce7-a2b4-7b6f1c9db92a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"55897b93-812f-41c6-9fa2-fc535594ae3a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:52:01 GMT + - Wed, 18 Oct 2023 23:29:07 GMT elapsed-time: - - '180' + - '289' etag: - - W/"datetime'2023-03-13T13%3A48%3A58.3556119Z'" + - W/"datetime'2023-10-18T23%3A27%3A06.0243972Z'" expires: - '-1' pragma: - no-cache request-id: - - c7625dea-c1a5-11ed-a808-b7b53f28d5a3 + - d64b97c3-6e0d-11ee-8dbc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 59C6A0B8119C49BE9214E69C6B006811 Ref B: CO6AA3150217021 Ref C: 2023-10-18T23:29:08Z' status: code: 200 message: OK @@ -424,41 +373,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"6c6f9d4f-1a9b-4ce7-a2b4-7b6f1c9db92a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"55897b93-812f-41c6-9fa2-fc535594ae3a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:52:31 GMT + - Wed, 18 Oct 2023 23:29:38 GMT elapsed-time: - - '180' + - '270' etag: - - W/"datetime'2023-03-13T13%3A48%3A58.3556119Z'" + - W/"datetime'2023-10-18T23%3A27%3A06.0243972Z'" expires: - '-1' pragma: - no-cache request-id: - - c7625dea-c1a5-11ed-a808-b7b53f28d5a3 + - d64b97c3-6e0d-11ee-8dbc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5C9D7B05CB4A485AAF09D0E594C0FFFB Ref B: CO6AA3150217021 Ref C: 2023-10-18T23:29:38Z' status: code: 200 message: OK @@ -476,41 +424,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"6c6f9d4f-1a9b-4ce7-a2b4-7b6f1c9db92a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"55897b93-812f-41c6-9fa2-fc535594ae3a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:53:01 GMT + - Wed, 18 Oct 2023 23:30:08 GMT elapsed-time: - - '169' + - '470' etag: - - W/"datetime'2023-03-13T13%3A48%3A58.3556119Z'" + - W/"datetime'2023-10-18T23%3A27%3A06.0243972Z'" expires: - '-1' pragma: - no-cache request-id: - - c7625dea-c1a5-11ed-a808-b7b53f28d5a3 + - d64b97c3-6e0d-11ee-8dbc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4B390379FEC141BD91486FCCD0689D66 Ref B: CO6AA3150217021 Ref C: 2023-10-18T23:30:08Z' status: code: 200 message: OK @@ -528,93 +475,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"6c6f9d4f-1a9b-4ce7-a2b4-7b6f1c9db92a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"55897b93-812f-41c6-9fa2-fc535594ae3a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:53:32 GMT + - Wed, 18 Oct 2023 23:30:39 GMT elapsed-time: - - '167' - etag: - - W/"datetime'2023-03-13T13%3A48%3A58.3556119Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c7625dea-c1a5-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"6c6f9d4f-1a9b-4ce7-a2b4-7b6f1c9db92a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 13:54:03 GMT - elapsed-time: - - '170' + - '275' etag: - - W/"datetime'2023-03-13T13%3A48%3A58.3556119Z'" + - W/"datetime'2023-10-18T23%3A27%3A06.0243972Z'" expires: - '-1' pragma: - no-cache request-id: - - c7625dea-c1a5-11ed-a808-b7b53f28d5a3 + - d64b97c3-6e0d-11ee-8dbc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 688D3AB731324D64931E1045D6DA004D Ref B: CO6AA3150217021 Ref C: 2023-10-18T23:30:39Z' status: code: 200 message: OK @@ -632,41 +526,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"6c6f9d4f-1a9b-4ce7-a2b4-7b6f1c9db92a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"55897b93-812f-41c6-9fa2-fc535594ae3a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:54:33 GMT + - Wed, 18 Oct 2023 23:31:09 GMT elapsed-time: - - '156' + - '228' etag: - - W/"datetime'2023-03-13T13%3A48%3A58.3556119Z'" + - W/"datetime'2023-10-18T23%3A27%3A06.0243972Z'" expires: - '-1' pragma: - no-cache request-id: - - c7625dea-c1a5-11ed-a808-b7b53f28d5a3 + - d64b97c3-6e0d-11ee-8dbc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C1C38D741085406589085FA2AA428236 Ref B: CO6AA3150217021 Ref C: 2023-10-18T23:31:09Z' status: code: 200 message: OK @@ -684,41 +577,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"6c6f9d4f-1a9b-4ce7-a2b4-7b6f1c9db92a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"55897b93-812f-41c6-9fa2-fc535594ae3a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:03 GMT + - Wed, 18 Oct 2023 23:31:39 GMT elapsed-time: - - '206' + - '194' etag: - - W/"datetime'2023-03-13T13%3A48%3A58.3556119Z'" + - W/"datetime'2023-10-18T23%3A27%3A06.0243972Z'" expires: - '-1' pragma: - no-cache request-id: - - c7625dea-c1a5-11ed-a808-b7b53f28d5a3 + - d64b97c3-6e0d-11ee-8dbc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3985795DC42D48B8A3C1407C8DB66E88 Ref B: CO6AA3150217021 Ref C: 2023-10-18T23:31:40Z' status: code: 200 message: OK @@ -736,41 +628,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"6c6f9d4f-1a9b-4ce7-a2b4-7b6f1c9db92a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"55897b93-812f-41c6-9fa2-fc535594ae3a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:35 GMT + - Wed, 18 Oct 2023 23:32:10 GMT elapsed-time: - - '172' + - '247' etag: - - W/"datetime'2023-03-13T13%3A48%3A58.3556119Z'" + - W/"datetime'2023-10-18T23%3A27%3A06.0243972Z'" expires: - '-1' pragma: - no-cache request-id: - - c7625dea-c1a5-11ed-a808-b7b53f28d5a3 + - d64b97c3-6e0d-11ee-8dbc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D6AA093DA378400CBEE035FEB3E39D52 Ref B: CO6AA3150217021 Ref C: 2023-10-18T23:32:10Z' status: code: 200 message: OK @@ -788,41 +679,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"6c6f9d4f-1a9b-4ce7-a2b4-7b6f1c9db92a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"55897b93-812f-41c6-9fa2-fc535594ae3a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:56:05 GMT + - Wed, 18 Oct 2023 23:32:40 GMT elapsed-time: - - '169' + - '223' etag: - - W/"datetime'2023-03-13T13%3A48%3A58.3556119Z'" + - W/"datetime'2023-10-18T23%3A27%3A06.0243972Z'" expires: - '-1' pragma: - no-cache request-id: - - c7625dea-c1a5-11ed-a808-b7b53f28d5a3 + - d64b97c3-6e0d-11ee-8dbc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E5400F5EDEE54B549C6AEC56C308BA78 Ref B: CO6AA3150217021 Ref C: 2023-10-18T23:32:41Z' status: code: 200 message: OK @@ -840,41 +730,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"6c6f9d4f-1a9b-4ce7-a2b4-7b6f1c9db92a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"55897b93-812f-41c6-9fa2-fc535594ae3a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:56:36 GMT + - Wed, 18 Oct 2023 23:33:10 GMT elapsed-time: - - '188' + - '170' etag: - - W/"datetime'2023-03-13T13%3A48%3A58.3556119Z'" + - W/"datetime'2023-10-18T23%3A27%3A06.0243972Z'" expires: - '-1' pragma: - no-cache request-id: - - c7625dea-c1a5-11ed-a808-b7b53f28d5a3 + - d64b97c3-6e0d-11ee-8dbc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 003B2094C3E44A03853A38656ECC8B33 Ref B: CO6AA3150217021 Ref C: 2023-10-18T23:33:11Z' status: code: 200 message: OK @@ -892,41 +781,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"6c6f9d4f-1a9b-4ce7-a2b4-7b6f1c9db92a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"55897b93-812f-41c6-9fa2-fc535594ae3a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:57:06 GMT + - Wed, 18 Oct 2023 23:33:41 GMT elapsed-time: - - '165' + - '279' etag: - - W/"datetime'2023-03-13T13%3A48%3A58.3556119Z'" + - W/"datetime'2023-10-18T23%3A27%3A06.0243972Z'" expires: - '-1' pragma: - no-cache request-id: - - c7625dea-c1a5-11ed-a808-b7b53f28d5a3 + - d64b97c3-6e0d-11ee-8dbc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5CA1DC9E99D540B69D05F4BA0875C092 Ref B: CO6AA3150217021 Ref C: 2023-10-18T23:33:41Z' status: code: 200 message: OK @@ -944,41 +832,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"6c6f9d4f-1a9b-4ce7-a2b4-7b6f1c9db92a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"55897b93-812f-41c6-9fa2-fc535594ae3a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:57:36 GMT + - Wed, 18 Oct 2023 23:34:12 GMT elapsed-time: - - '191' + - '179' etag: - - W/"datetime'2023-03-13T13%3A48%3A58.3556119Z'" + - W/"datetime'2023-10-18T23%3A27%3A06.0243972Z'" expires: - '-1' pragma: - no-cache request-id: - - c7625dea-c1a5-11ed-a808-b7b53f28d5a3 + - d64b97c3-6e0d-11ee-8dbc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 685CFA089FFC438A931C91D5BF50295D Ref B: CO6AA3150217021 Ref C: 2023-10-18T23:34:12Z' status: code: 200 message: OK @@ -996,41 +883,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"6c6f9d4f-1a9b-4ce7-a2b4-7b6f1c9db92a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"55897b93-812f-41c6-9fa2-fc535594ae3a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:58:06 GMT + - Wed, 18 Oct 2023 23:34:42 GMT elapsed-time: - - '160' + - '246' etag: - - W/"datetime'2023-03-13T13%3A48%3A58.3556119Z'" + - W/"datetime'2023-10-18T23%3A27%3A06.0243972Z'" expires: - '-1' pragma: - no-cache request-id: - - c7625dea-c1a5-11ed-a808-b7b53f28d5a3 + - d64b97c3-6e0d-11ee-8dbc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 27275184CB9442E79043C3480EBDA564 Ref B: CO6AA3150217021 Ref C: 2023-10-18T23:34:42Z' status: code: 200 message: OK @@ -1048,41 +934,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"6c6f9d4f-1a9b-4ce7-a2b4-7b6f1c9db92a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"55897b93-812f-41c6-9fa2-fc535594ae3a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '755' + - '877' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:58:37 GMT + - Wed, 18 Oct 2023 23:35:13 GMT elapsed-time: - - '196' + - '194' etag: - - W/"datetime'2023-03-13T13%3A48%3A58.3556119Z'" + - W/"datetime'2023-10-18T23%3A27%3A06.0243972Z'" expires: - '-1' pragma: - no-cache request-id: - - c7625dea-c1a5-11ed-a808-b7b53f28d5a3 + - d64b97c3-6e0d-11ee-8dbc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7E76D11261D74353B60D22BF968E89CA Ref B: CO6AA3150217021 Ref C: 2023-10-18T23:35:12Z' status: code: 200 message: OK @@ -1100,41 +985,40 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"6c6f9d4f-1a9b-4ce7-a2b4-7b6f1c9db92a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"55897b93-812f-41c6-9fa2-fc535594ae3a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '747' + - '869' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:59:07 GMT + - Wed, 18 Oct 2023 23:35:43 GMT elapsed-time: - - '178' + - '243' etag: - - W/"datetime'2023-03-13T13%3A48%3A58.3556119Z'" + - W/"datetime'2023-10-18T23%3A27%3A06.0243972Z'" expires: - '-1' pragma: - no-cache request-id: - - c7625dea-c1a5-11ed-a808-b7b53f28d5a3 + - d64b97c3-6e0d-11ee-8dbc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: EDCB5B4F65194D23B5ECDD5E4B78123D Ref B: CO6AA3150217021 Ref C: 2023-10-18T23:35:43Z' status: code: 200 message: OK @@ -1152,49 +1036,49 @@ interactions: ParameterSetName: - -n -g --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"6c6f9d4f-1a9b-4ce7-a2b4-7b6f1c9db92a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"55897b93-812f-41c6-9fa2-fc535594ae3a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '747' + - '845' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:59:09 GMT + - Wed, 18 Oct 2023 23:35:43 GMT elapsed-time: - - '183' + - '241' etag: - - W/"datetime'2023-03-13T13%3A48%3A58.3556119Z'" + - W/"datetime'2023-10-18T23%3A27%3A06.0243972Z'" expires: - '-1' pragma: - no-cache request-id: - - 399181ba-c1a7-11ed-a808-b7b53f28d5a3 + - 0e56514b-6e0f-11ee-86e3-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6C1C49D737824E8292F77CF7572B395D Ref B: CO6AA3150218025 Ref C: 2023-10-18T23:35:43Z' status: code: 200 message: OK - request: - body: '{"location": "West US", "sku": {"name": "basic"}, "identity": {"type": - "None"}, "properties": {"replicaCount": 1, "partitionCount": 1, "hostingMode": - "default", "publicNetworkAccess": "Enabled", "networkRuleSet": {"ipRules": []}, - "authOptions": {"apiKeyOnly": {}}}}' + body: '{"identity": {"type": "None"}, "location": "East US 2 EUAP", "properties": + {"authOptions": {"apiKeyOnly": {}}, "disableLocalAuth": false, "encryptionWithCmk": + {"enforcement": "Unspecified"}, "hostingMode": "default", "networkRuleSet": + {"ipRules": []}, "partitionCount": 1, "publicNetworkAccess": "Enabled", "replicaCount": + 1}, "sku": {"name": "basic"}}' headers: Accept: - application/json @@ -1205,49 +1089,50 @@ interactions: Connection: - keep-alive Content-Length: - - '265' + - '352' Content-Type: - application/json ParameterSetName: - -n -g --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '607' + - '705' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:59:11 GMT + - Wed, 18 Oct 2023 23:35:44 GMT elapsed-time: - - '378' + - '556' etag: - - W/"datetime'2023-03-13T13%3A59%3A11.1281119Z'" + - W/"datetime'2023-10-18T23%3A35%3A45.5943137Z'" expires: - '-1' pragma: - no-cache request-id: - - 399181ba-c1a7-11ed-a808-b7b53f28d5a3 + - 0e56514b-6e0f-11ee-86e3-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/557258f4-caab-4437-92ae-8fc71df1c50d x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: DB85864D735F45158AB01D80199FD97A Ref B: CO6AA3150218025 Ref C: 2023-10-18T23:35:44Z' status: code: 200 message: OK @@ -1265,49 +1150,49 @@ interactions: ParameterSetName: - -n -g --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '607' + - '705' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:59:12 GMT + - Wed, 18 Oct 2023 23:35:46 GMT elapsed-time: - - '278' + - '206' etag: - - W/"datetime'2023-03-13T13%3A59%3A11.1281119Z'" + - W/"datetime'2023-10-18T23%3A35%3A45.5943137Z'" expires: - '-1' pragma: - no-cache request-id: - - 3b956dd2-c1a7-11ed-a808-b7b53f28d5a3 + - 0f8e13a2-6e0f-11ee-b003-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6AEE354113FF4B77A09B54737FBD08CE Ref B: CO6AA3150220045 Ref C: 2023-10-18T23:35:46Z' status: code: 200 message: OK - request: - body: '{"location": "West US", "sku": {"name": "basic"}, "identity": {"type": - "SystemAssigned"}, "properties": {"replicaCount": 1, "partitionCount": 1, "hostingMode": - "default", "publicNetworkAccess": "Enabled", "networkRuleSet": {"ipRules": []}, - "authOptions": {"apiKeyOnly": {}}}}' + body: '{"identity": {"type": "SystemAssigned"}, "location": "East US 2 EUAP", + "properties": {"authOptions": {"apiKeyOnly": {}}, "disableLocalAuth": false, + "encryptionWithCmk": {"enforcement": "Unspecified"}, "hostingMode": "default", + "networkRuleSet": {"ipRules": []}, "partitionCount": 1, "publicNetworkAccess": + "Enabled", "replicaCount": 1}, "sku": {"name": "basic"}}' headers: Accept: - application/json @@ -1318,49 +1203,50 @@ interactions: Connection: - keep-alive Content-Length: - - '275' + - '362' Content-Type: - application/json ParameterSetName: - -n -g --identity-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"358151ad-bdf4-480c-8a04-ce110460c6e7","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"6a71d865-13e8-4b4b-9f39-c89e6a848297","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: cache-control: - no-cache content-length: - - '747' + - '845' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:59:16 GMT + - Wed, 18 Oct 2023 23:35:48 GMT elapsed-time: - - '1424' + - '1843' etag: - - W/"datetime'2023-03-13T13%3A59%3A15.7282506Z'" + - W/"datetime'2023-10-18T23%3A35%3A48.896856Z'" expires: - '-1' pragma: - no-cache request-id: - - 3b956dd2-c1a7-11ed-a808-b7b53f28d5a3 + - 0f8e13a2-6e0f-11ee-b003-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/6cef6979-d581-4c15-8bfa-9ebdc5f56f5c x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: D4A25BB794A7414C966FB90F3814A326 Ref B: CO6AA3150220045 Ref C: 2023-10-18T23:35:46Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_private_endpoint.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_private_endpoint.yaml index 6236fdfac6c..76981263ce7 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_private_endpoint.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_private_endpoint.yaml @@ -13,38 +13,39 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T13:59:18Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_update_private_endpoint","date":"2023-10-18T23:27:22Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '401' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:59:19 GMT + - Wed, 18 Oct 2023 23:27:22 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A5354249432842078B3412BCE66543FD Ref B: CO6AA3150218039 Ref C: 2023-10-18T23:27:23Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "sku": {"name": "basic"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "Disabled"}}' + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": + 1, "publicNetworkAccess": "disabled", "replicaCount": 1}, "sku": {"name": "basic"}}' headers: Accept: - application/json @@ -55,45 +56,50 @@ interactions: Connection: - keep-alive Content-Length: - - '165' + - '170' Content-Type: - application/json ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:59:31 GMT + - Wed, 18 Oct 2023 23:27:28 GMT elapsed-time: - - '9989' + - '5262' etag: - - W/"datetime'2023-03-13T13%3A59%3A32.0417491Z'" + - W/"datetime'2023-10-18T23%3A27%3A29.0162446Z'" expires: - '-1' pragma: - no-cache request-id: - - 407012e4-c1a7-11ed-a808-b7b53f28d5a3 + - e405e8b8-6e0d-11ee-8cd2-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/025e4149-dba9-49b1-838e-bc6703e91a0f x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 104651480E7B4F1DA9047707708AEB38 Ref B: CO6AA3150217025 Ref C: 2023-10-18T23:27:23Z' status: code: 201 message: Created @@ -111,41 +117,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:00:02 GMT + - Wed, 18 Oct 2023 23:27:29 GMT elapsed-time: - - '190' + - '232' etag: - - W/"datetime'2023-03-13T13%3A59%3A32.0417491Z'" + - W/"datetime'2023-10-18T23%3A27%3A29.0162446Z'" expires: - '-1' pragma: - no-cache request-id: - - 407012e4-c1a7-11ed-a808-b7b53f28d5a3 + - e405e8b8-6e0d-11ee-8cd2-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 768C74557A2A46728F4EEC8C21B2E4FE Ref B: CO6AA3150217025 Ref C: 2023-10-18T23:27:29Z' status: code: 200 message: OK @@ -163,41 +168,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:00:32 GMT + - Wed, 18 Oct 2023 23:27:59 GMT elapsed-time: - - '188' + - '176' etag: - - W/"datetime'2023-03-13T13%3A59%3A32.0417491Z'" + - W/"datetime'2023-10-18T23%3A27%3A29.0162446Z'" expires: - '-1' pragma: - no-cache request-id: - - 407012e4-c1a7-11ed-a808-b7b53f28d5a3 + - e405e8b8-6e0d-11ee-8cd2-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 51A80777ABC04359B149FE1010E614CE Ref B: CO6AA3150217025 Ref C: 2023-10-18T23:27:59Z' status: code: 200 message: OK @@ -215,41 +219,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:01:03 GMT + - Wed, 18 Oct 2023 23:28:29 GMT elapsed-time: - - '202' + - '255' etag: - - W/"datetime'2023-03-13T13%3A59%3A32.0417491Z'" + - W/"datetime'2023-10-18T23%3A27%3A29.0162446Z'" expires: - '-1' pragma: - no-cache request-id: - - 407012e4-c1a7-11ed-a808-b7b53f28d5a3 + - e405e8b8-6e0d-11ee-8cd2-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E7D0E917114E4418B3373BF3D8D72AE8 Ref B: CO6AA3150217025 Ref C: 2023-10-18T23:28:30Z' status: code: 200 message: OK @@ -267,41 +270,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:01:33 GMT + - Wed, 18 Oct 2023 23:29:00 GMT elapsed-time: - - '238' + - '297' etag: - - W/"datetime'2023-03-13T13%3A59%3A32.0417491Z'" + - W/"datetime'2023-10-18T23%3A27%3A29.0162446Z'" expires: - '-1' pragma: - no-cache request-id: - - 407012e4-c1a7-11ed-a808-b7b53f28d5a3 + - e405e8b8-6e0d-11ee-8cd2-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 37E6373DB8AA4DDE8B8F43E3D9F9036D Ref B: CO6AA3150217025 Ref C: 2023-10-18T23:29:00Z' status: code: 200 message: OK @@ -319,41 +321,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:02:04 GMT + - Wed, 18 Oct 2023 23:29:30 GMT elapsed-time: - - '204' + - '318' etag: - - W/"datetime'2023-03-13T13%3A59%3A32.0417491Z'" + - W/"datetime'2023-10-18T23%3A27%3A29.0162446Z'" expires: - '-1' pragma: - no-cache request-id: - - 407012e4-c1a7-11ed-a808-b7b53f28d5a3 + - e405e8b8-6e0d-11ee-8cd2-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B2015E15C77E42309452840CD7A74EFF Ref B: CO6AA3150217025 Ref C: 2023-10-18T23:29:30Z' status: code: 200 message: OK @@ -371,41 +372,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:02:34 GMT + - Wed, 18 Oct 2023 23:30:00 GMT elapsed-time: - - '202' + - '254' etag: - - W/"datetime'2023-03-13T13%3A59%3A32.0417491Z'" + - W/"datetime'2023-10-18T23%3A27%3A29.0162446Z'" expires: - '-1' pragma: - no-cache request-id: - - 407012e4-c1a7-11ed-a808-b7b53f28d5a3 + - e405e8b8-6e0d-11ee-8cd2-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 741DA65153F44105B04F8D8672F35B38 Ref B: CO6AA3150217025 Ref C: 2023-10-18T23:30:01Z' status: code: 200 message: OK @@ -423,41 +423,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:03:05 GMT + - Wed, 18 Oct 2023 23:30:31 GMT elapsed-time: - - '236' + - '305' etag: - - W/"datetime'2023-03-13T13%3A59%3A32.0417491Z'" + - W/"datetime'2023-10-18T23%3A27%3A29.0162446Z'" expires: - '-1' pragma: - no-cache request-id: - - 407012e4-c1a7-11ed-a808-b7b53f28d5a3 + - e405e8b8-6e0d-11ee-8cd2-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1D04B41E48D148EA998927C439116C8D Ref B: CO6AA3150217025 Ref C: 2023-10-18T23:30:31Z' status: code: 200 message: OK @@ -475,41 +474,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:03:35 GMT + - Wed, 18 Oct 2023 23:31:01 GMT elapsed-time: - - '194' + - '235' etag: - - W/"datetime'2023-03-13T13%3A59%3A32.0417491Z'" + - W/"datetime'2023-10-18T23%3A27%3A29.0162446Z'" expires: - '-1' pragma: - no-cache request-id: - - 407012e4-c1a7-11ed-a808-b7b53f28d5a3 + - e405e8b8-6e0d-11ee-8cd2-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 03DF13F4E18543FABB8E96F1C715266D Ref B: CO6AA3150217025 Ref C: 2023-10-18T23:31:02Z' status: code: 200 message: OK @@ -527,41 +525,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:04:05 GMT + - Wed, 18 Oct 2023 23:31:31 GMT elapsed-time: - - '219' + - '208' etag: - - W/"datetime'2023-03-13T13%3A59%3A32.0417491Z'" + - W/"datetime'2023-10-18T23%3A27%3A29.0162446Z'" expires: - '-1' pragma: - no-cache request-id: - - 407012e4-c1a7-11ed-a808-b7b53f28d5a3 + - e405e8b8-6e0d-11ee-8cd2-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 945F986DE7F24438BC23ADCFD933256C Ref B: CO6AA3150217025 Ref C: 2023-10-18T23:31:32Z' status: code: 200 message: OK @@ -579,41 +576,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:04:37 GMT + - Wed, 18 Oct 2023 23:32:02 GMT elapsed-time: - - '178' + - '189' etag: - - W/"datetime'2023-03-13T13%3A59%3A32.0417491Z'" + - W/"datetime'2023-10-18T23%3A27%3A29.0162446Z'" expires: - '-1' pragma: - no-cache request-id: - - 407012e4-c1a7-11ed-a808-b7b53f28d5a3 + - e405e8b8-6e0d-11ee-8cd2-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: FF953D926E2E4F33B17BC51701A3B172 Ref B: CO6AA3150217025 Ref C: 2023-10-18T23:32:02Z' status: code: 200 message: OK @@ -631,41 +627,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:05:06 GMT + - Wed, 18 Oct 2023 23:32:32 GMT elapsed-time: - - '235' + - '263' etag: - - W/"datetime'2023-03-13T13%3A59%3A32.0417491Z'" + - W/"datetime'2023-10-18T23%3A27%3A29.0162446Z'" expires: - '-1' pragma: - no-cache request-id: - - 407012e4-c1a7-11ed-a808-b7b53f28d5a3 + - e405e8b8-6e0d-11ee-8cd2-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 18238CB777F9440A943A9313F2035048 Ref B: CO6AA3150217025 Ref C: 2023-10-18T23:32:33Z' status: code: 200 message: OK @@ -683,41 +678,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:05:38 GMT + - Wed, 18 Oct 2023 23:33:02 GMT elapsed-time: - - '203' + - '207' etag: - - W/"datetime'2023-03-13T13%3A59%3A32.0417491Z'" + - W/"datetime'2023-10-18T23%3A27%3A29.0162446Z'" expires: - '-1' pragma: - no-cache request-id: - - 407012e4-c1a7-11ed-a808-b7b53f28d5a3 + - e405e8b8-6e0d-11ee-8cd2-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 0B7B2D82941F40549FD87C5184AC9B9C Ref B: CO6AA3150217025 Ref C: 2023-10-18T23:33:03Z' status: code: 200 message: OK @@ -735,41 +729,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:06:08 GMT + - Wed, 18 Oct 2023 23:33:34 GMT elapsed-time: - - '179' + - '211' etag: - - W/"datetime'2023-03-13T13%3A59%3A32.0417491Z'" + - W/"datetime'2023-10-18T23%3A27%3A29.0162446Z'" expires: - '-1' pragma: - no-cache request-id: - - 407012e4-c1a7-11ed-a808-b7b53f28d5a3 + - e405e8b8-6e0d-11ee-8cd2-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8274D5452FA8457099824D8C3490F4D2 Ref B: CO6AA3150217025 Ref C: 2023-10-18T23:33:33Z' status: code: 200 message: OK @@ -787,41 +780,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:06:38 GMT + - Wed, 18 Oct 2023 23:34:04 GMT elapsed-time: - - '185' + - '173' etag: - - W/"datetime'2023-03-13T13%3A59%3A32.0417491Z'" + - W/"datetime'2023-10-18T23%3A27%3A29.0162446Z'" expires: - '-1' pragma: - no-cache request-id: - - 407012e4-c1a7-11ed-a808-b7b53f28d5a3 + - e405e8b8-6e0d-11ee-8cd2-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 841536E9086A4F2B9F421EE72E200CE8 Ref B: CO6AA3150217025 Ref C: 2023-10-18T23:34:04Z' status: code: 200 message: OK @@ -839,41 +831,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:07:09 GMT + - Wed, 18 Oct 2023 23:34:34 GMT elapsed-time: - - '190' + - '241' etag: - - W/"datetime'2023-03-13T13%3A59%3A32.0417491Z'" + - W/"datetime'2023-10-18T23%3A27%3A29.0162446Z'" expires: - '-1' pragma: - no-cache request-id: - - 407012e4-c1a7-11ed-a808-b7b53f28d5a3 + - e405e8b8-6e0d-11ee-8cd2-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F25C83AA0EEC4678BBF750508B7DFA24 Ref B: CO6AA3150217025 Ref C: 2023-10-18T23:34:34Z' status: code: 200 message: OK @@ -891,41 +882,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:07:39 GMT + - Wed, 18 Oct 2023 23:35:05 GMT elapsed-time: - - '169' + - '220' etag: - - W/"datetime'2023-03-13T13%3A59%3A32.0417491Z'" + - W/"datetime'2023-10-18T23%3A27%3A29.0162446Z'" expires: - '-1' pragma: - no-cache request-id: - - 407012e4-c1a7-11ed-a808-b7b53f28d5a3 + - e405e8b8-6e0d-11ee-8cd2-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6035B60240FC450083A2522F1D15DA0B Ref B: CO6AA3150217025 Ref C: 2023-10-18T23:35:05Z' status: code: 200 message: OK @@ -943,41 +933,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:08:10 GMT + - Wed, 18 Oct 2023 23:35:35 GMT elapsed-time: - - '198' + - '184' etag: - - W/"datetime'2023-03-13T13%3A59%3A32.0417491Z'" + - W/"datetime'2023-10-18T23%3A27%3A29.0162446Z'" expires: - '-1' pragma: - no-cache request-id: - - 407012e4-c1a7-11ed-a808-b7b53f28d5a3 + - e405e8b8-6e0d-11ee-8cd2-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: CB12D53EA5DC44D0B7C544CD0DB5EF10 Ref B: CO6AA3150217025 Ref C: 2023-10-18T23:35:35Z' status: code: 200 message: OK @@ -995,41 +984,40 @@ interactions: ParameterSetName: - -n -g --sku --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '730' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:08:40 GMT + - Wed, 18 Oct 2023 23:36:05 GMT elapsed-time: - - '180' + - '239' etag: - - W/"datetime'2023-03-13T13%3A59%3A32.0417491Z'" + - W/"datetime'2023-10-18T23%3A27%3A29.0162446Z'" expires: - '-1' pragma: - no-cache request-id: - - 407012e4-c1a7-11ed-a808-b7b53f28d5a3 + - e405e8b8-6e0d-11ee-8cd2-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 91AC093EE8A74E75A87FD58BA2C0083E Ref B: CO6AA3150217025 Ref C: 2023-10-18T23:36:05Z' status: code: 200 message: OK @@ -1037,51 +1025,112 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - search service create + - search service update Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '706' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 23:36:05 GMT + elapsed-time: + - '205' + etag: + - W/"datetime'2023-10-18T23%3A27%3A29.0162446Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 1b9d2c2c-6e0f-11ee-a1f5-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 8A1AC8C7E9094995A64D0FA00F5B16B5 Ref B: CO6AA3150219051 Ref C: 2023-10-18T23:36:06Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "East US 2 EUAP", "properties": {"authOptions": {"apiKeyOnly": + {}}, "disableLocalAuth": false, "encryptionWithCmk": {"enforcement": "Unspecified"}, + "hostingMode": "default", "networkRuleSet": {"ipRules": []}, "partitionCount": + 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "basic"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - search service update + Connection: + - keep-alive + Content-Length: + - '322' + Content-Type: + - application/json + ParameterSetName: + - -n -g --public-access + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '713' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:09:10 GMT + - Wed, 18 Oct 2023 23:36:09 GMT elapsed-time: - - '179' + - '3374' etag: - - W/"datetime'2023-03-13T13%3A59%3A32.0417491Z'" + - W/"datetime'2023-10-18T23%3A36%3A10.0225334Z'" expires: - '-1' pragma: - no-cache request-id: - - 407012e4-c1a7-11ed-a808-b7b53f28d5a3 + - 1b9d2c2c-6e0f-11ee-a1f5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/06da9927-dfb7-4a91-beeb-d43681e6313f + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + x-msedge-ref: + - 'Ref A: 574FF44E39C94AC6ACC214AB35B09438 Ref B: CO6AA3150219051 Ref C: 2023-10-18T23:36:06Z' status: code: 200 message: OK @@ -1093,47 +1142,46 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service create + - search service update Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '608' + - '713' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:09:41 GMT + - Wed, 18 Oct 2023 23:36:09 GMT elapsed-time: - - '237' + - '181' etag: - - W/"datetime'2023-03-13T13%3A59%3A32.0417491Z'" + - W/"datetime'2023-10-18T23%3A36%3A10.0225334Z'" expires: - '-1' pragma: - no-cache request-id: - - 407012e4-c1a7-11ed-a808-b7b53f28d5a3 + - 1b9d2c2c-6e0f-11ee-a1f5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 00889F58B76F45F08C6B8191EDFC0072 Ref B: CO6AA3150219051 Ref C: 2023-10-18T23:36:10Z' status: code: 200 message: OK @@ -1141,7 +1189,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1151,101 +1199,91 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '608' + - '713' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:09:41 GMT + - Wed, 18 Oct 2023 23:36:39 GMT elapsed-time: - - '273' + - '204' etag: - - W/"datetime'2023-03-13T13%3A59%3A32.0417491Z'" + - W/"datetime'2023-10-18T23%3A36%3A10.0225334Z'" expires: - '-1' pragma: - no-cache request-id: - - b2ca1d48-c1a8-11ed-a808-b7b53f28d5a3 + - 1b9d2c2c-6e0f-11ee-a1f5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 533591EF168F434F9E57EF3C6EB916B5 Ref B: CO6AA3150219051 Ref C: 2023-10-18T23:36:40Z' status: code: 200 message: OK - request: - body: '{"location": "West US", "sku": {"name": "basic"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "Enabled", - "networkRuleSet": {"ipRules": []}, "authOptions": {"apiKeyOnly": {}}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - search service update Connection: - keep-alive - Content-Length: - - '235' - Content-Type: - - application/json ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '615' + - '713' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:09:45 GMT + - Wed, 18 Oct 2023 23:37:11 GMT elapsed-time: - - '2801' + - '185' etag: - - W/"datetime'2023-03-13T14%3A09%3A45.2986686Z'" + - W/"datetime'2023-10-18T23%3A36%3A10.0225334Z'" expires: - '-1' pragma: - no-cache request-id: - - b2ca1d48-c1a8-11ed-a808-b7b53f28d5a3 + - 1b9d2c2c-6e0f-11ee-a1f5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' + x-msedge-ref: + - 'Ref A: 9C45A7ED28084A4380AA40703C3CBA38 Ref B: CO6AA3150219051 Ref C: 2023-10-18T23:37:10Z' status: code: 200 message: OK @@ -1263,41 +1301,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '615' + - '713' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:10:15 GMT + - Wed, 18 Oct 2023 23:37:41 GMT elapsed-time: - - '205' + - '243' etag: - - W/"datetime'2023-03-13T14%3A09%3A45.2986686Z'" + - W/"datetime'2023-10-18T23%3A36%3A10.0225334Z'" expires: - '-1' pragma: - no-cache request-id: - - b2ca1d48-c1a8-11ed-a808-b7b53f28d5a3 + - 1b9d2c2c-6e0f-11ee-a1f5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: ABC970BF48FE4F3391263D59F105B08C Ref B: CO6AA3150219051 Ref C: 2023-10-18T23:37:41Z' status: code: 200 message: OK @@ -1315,41 +1352,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '615' + - '713' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:10:45 GMT + - Wed, 18 Oct 2023 23:38:12 GMT elapsed-time: - - '162' + - '530' etag: - - W/"datetime'2023-03-13T14%3A09%3A45.2986686Z'" + - W/"datetime'2023-10-18T23%3A36%3A10.0225334Z'" expires: - '-1' pragma: - no-cache request-id: - - b2ca1d48-c1a8-11ed-a808-b7b53f28d5a3 + - 1b9d2c2c-6e0f-11ee-a1f5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 42368E73EFEF4436B2554618B8461ABF Ref B: CO6AA3150219051 Ref C: 2023-10-18T23:38:11Z' status: code: 200 message: OK @@ -1367,41 +1403,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '615' + - '713' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:11:15 GMT + - Wed, 18 Oct 2023 23:38:42 GMT elapsed-time: - - '176' + - '285' etag: - - W/"datetime'2023-03-13T14%3A09%3A45.2986686Z'" + - W/"datetime'2023-10-18T23%3A36%3A10.0225334Z'" expires: - '-1' pragma: - no-cache request-id: - - b2ca1d48-c1a8-11ed-a808-b7b53f28d5a3 + - 1b9d2c2c-6e0f-11ee-a1f5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 577D062373F642A2860DE73FB349035C Ref B: CO6AA3150219051 Ref C: 2023-10-18T23:38:42Z' status: code: 200 message: OK @@ -1419,41 +1454,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '615' + - '713' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:11:46 GMT + - Wed, 18 Oct 2023 23:39:12 GMT elapsed-time: - - '198' + - '170' etag: - - W/"datetime'2023-03-13T14%3A09%3A45.2986686Z'" + - W/"datetime'2023-10-18T23%3A36%3A10.0225334Z'" expires: - '-1' pragma: - no-cache request-id: - - b2ca1d48-c1a8-11ed-a808-b7b53f28d5a3 + - 1b9d2c2c-6e0f-11ee-a1f5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 50DF24CA598A46CFB878BBB4CA4EFCBC Ref B: CO6AA3150219051 Ref C: 2023-10-18T23:39:12Z' status: code: 200 message: OK @@ -1471,41 +1505,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '615' + - '713' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:12:17 GMT + - Wed, 18 Oct 2023 23:39:43 GMT elapsed-time: - - '203' + - '199' etag: - - W/"datetime'2023-03-13T14%3A09%3A45.2986686Z'" + - W/"datetime'2023-10-18T23%3A36%3A10.0225334Z'" expires: - '-1' pragma: - no-cache request-id: - - b2ca1d48-c1a8-11ed-a808-b7b53f28d5a3 + - 1b9d2c2c-6e0f-11ee-a1f5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E0799DB211834C6BB8D4688BF87F96C4 Ref B: CO6AA3150219051 Ref C: 2023-10-18T23:39:43Z' status: code: 200 message: OK @@ -1523,41 +1556,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '615' + - '713' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:12:47 GMT + - Wed, 18 Oct 2023 23:40:13 GMT elapsed-time: - - '341' + - '225' etag: - - W/"datetime'2023-03-13T14%3A09%3A45.2986686Z'" + - W/"datetime'2023-10-18T23%3A36%3A10.0225334Z'" expires: - '-1' pragma: - no-cache request-id: - - b2ca1d48-c1a8-11ed-a808-b7b53f28d5a3 + - 1b9d2c2c-6e0f-11ee-a1f5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: CA7BEE05865141B99FD834266DC907E1 Ref B: CO6AA3150219051 Ref C: 2023-10-18T23:40:13Z' status: code: 200 message: OK @@ -1575,41 +1607,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '615' + - '713' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:13:18 GMT + - Wed, 18 Oct 2023 23:40:43 GMT elapsed-time: - - '216' + - '225' etag: - - W/"datetime'2023-03-13T14%3A09%3A45.2986686Z'" + - W/"datetime'2023-10-18T23%3A36%3A10.0225334Z'" expires: - '-1' pragma: - no-cache request-id: - - b2ca1d48-c1a8-11ed-a808-b7b53f28d5a3 + - 1b9d2c2c-6e0f-11ee-a1f5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4D2CDD19F7CF4CF59337B33FE287FD41 Ref B: CO6AA3150219051 Ref C: 2023-10-18T23:40:43Z' status: code: 200 message: OK @@ -1627,41 +1658,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '615' + - '713' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:13:48 GMT + - Wed, 18 Oct 2023 23:41:14 GMT elapsed-time: - - '367' + - '238' etag: - - W/"datetime'2023-03-13T14%3A09%3A45.2986686Z'" + - W/"datetime'2023-10-18T23%3A36%3A10.0225334Z'" expires: - '-1' pragma: - no-cache request-id: - - b2ca1d48-c1a8-11ed-a808-b7b53f28d5a3 + - 1b9d2c2c-6e0f-11ee-a1f5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 717E6BEFC9DE4D45A78F70AF9E007EFD Ref B: CO6AA3150219051 Ref C: 2023-10-18T23:41:14Z' status: code: 200 message: OK @@ -1679,41 +1709,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '615' + - '713' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:14:19 GMT + - Wed, 18 Oct 2023 23:41:44 GMT elapsed-time: - - '187' + - '225' etag: - - W/"datetime'2023-03-13T14%3A09%3A45.2986686Z'" + - W/"datetime'2023-10-18T23%3A36%3A10.0225334Z'" expires: - '-1' pragma: - no-cache request-id: - - b2ca1d48-c1a8-11ed-a808-b7b53f28d5a3 + - 1b9d2c2c-6e0f-11ee-a1f5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E5A0B1891CED4270B2A02A3DA696909B Ref B: CO6AA3150219051 Ref C: 2023-10-18T23:41:44Z' status: code: 200 message: OK @@ -1731,41 +1760,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '615' + - '713' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:14:49 GMT + - Wed, 18 Oct 2023 23:42:14 GMT elapsed-time: - - '166' + - '210' etag: - - W/"datetime'2023-03-13T14%3A09%3A45.2986686Z'" + - W/"datetime'2023-10-18T23%3A36%3A10.0225334Z'" expires: - '-1' pragma: - no-cache request-id: - - b2ca1d48-c1a8-11ed-a808-b7b53f28d5a3 + - 1b9d2c2c-6e0f-11ee-a1f5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 03BF691760404224AE2D177950650676 Ref B: CO6AA3150219051 Ref C: 2023-10-18T23:42:14Z' status: code: 200 message: OK @@ -1783,41 +1811,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '615' + - '713' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:15:19 GMT + - Wed, 18 Oct 2023 23:42:45 GMT elapsed-time: - - '180' + - '202' etag: - - W/"datetime'2023-03-13T14%3A09%3A45.2986686Z'" + - W/"datetime'2023-10-18T23%3A36%3A10.0225334Z'" expires: - '-1' pragma: - no-cache request-id: - - b2ca1d48-c1a8-11ed-a808-b7b53f28d5a3 + - 1b9d2c2c-6e0f-11ee-a1f5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: DC79F4BF2EB942419BDB2DC8BDA71622 Ref B: CO6AA3150219051 Ref C: 2023-10-18T23:42:45Z' status: code: 200 message: OK @@ -1835,41 +1862,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '615' + - '713' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:15:50 GMT + - Wed, 18 Oct 2023 23:43:15 GMT elapsed-time: - - '167' + - '229' etag: - - W/"datetime'2023-03-13T14%3A09%3A45.2986686Z'" + - W/"datetime'2023-10-18T23%3A36%3A10.0225334Z'" expires: - '-1' pragma: - no-cache request-id: - - b2ca1d48-c1a8-11ed-a808-b7b53f28d5a3 + - 1b9d2c2c-6e0f-11ee-a1f5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 08D0F0023F9B4B10839B484FD85BD841 Ref B: CO6AA3150219051 Ref C: 2023-10-18T23:43:15Z' status: code: 200 message: OK @@ -1887,41 +1913,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '615' + - '713' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:16:21 GMT + - Wed, 18 Oct 2023 23:43:45 GMT elapsed-time: - - '220' + - '270' etag: - - W/"datetime'2023-03-13T14%3A09%3A45.2986686Z'" + - W/"datetime'2023-10-18T23%3A36%3A10.0225334Z'" expires: - '-1' pragma: - no-cache request-id: - - b2ca1d48-c1a8-11ed-a808-b7b53f28d5a3 + - 1b9d2c2c-6e0f-11ee-a1f5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C279DBD25E2C4A2A9153FC997F2FD263 Ref B: CO6AA3150219051 Ref C: 2023-10-18T23:43:45Z' status: code: 200 message: OK @@ -1939,41 +1964,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '607' + - '713' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:16:51 GMT + - Wed, 18 Oct 2023 23:44:16 GMT elapsed-time: - - '153' + - '192' etag: - - W/"datetime'2023-03-13T14%3A09%3A45.2986686Z'" + - W/"datetime'2023-10-18T23%3A36%3A10.0225334Z'" expires: - '-1' pragma: - no-cache request-id: - - b2ca1d48-c1a8-11ed-a808-b7b53f28d5a3 + - 1b9d2c2c-6e0f-11ee-a1f5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 89B5824414BC477693C64C66C5BC8231 Ref B: CO6AA3150219051 Ref C: 2023-10-18T23:44:16Z' status: code: 200 message: OK @@ -1981,7 +2005,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1991,101 +2015,91 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '607' + - '713' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:16:51 GMT + - Wed, 18 Oct 2023 23:44:46 GMT elapsed-time: - - '177' + - '263' etag: - - W/"datetime'2023-03-13T14%3A09%3A45.2986686Z'" + - W/"datetime'2023-10-18T23%3A36%3A10.0225334Z'" expires: - '-1' pragma: - no-cache request-id: - - b34ef594-c1a9-11ed-a808-b7b53f28d5a3 + - 1b9d2c2c-6e0f-11ee-a1f5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5B933A05C73A4D019ACBDF34612F97C6 Ref B: CO6AA3150219051 Ref C: 2023-10-18T23:44:46Z' status: code: 200 message: OK - request: - body: '{"location": "West US", "sku": {"name": "basic"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "Disabled", - "networkRuleSet": {"ipRules": []}, "authOptions": {"apiKeyOnly": {}}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - search service update Connection: - keep-alive - Content-Length: - - '236' - Content-Type: - - application/json ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '713' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:16:55 GMT + - Wed, 18 Oct 2023 23:45:16 GMT elapsed-time: - - '2815' + - '194' etag: - - W/"datetime'2023-03-13T14%3A16%3A55.7484651Z'" + - W/"datetime'2023-10-18T23%3A36%3A10.0225334Z'" expires: - '-1' pragma: - no-cache request-id: - - b34ef594-c1a9-11ed-a808-b7b53f28d5a3 + - 1b9d2c2c-6e0f-11ee-a1f5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-msedge-ref: + - 'Ref A: A43003C58EF144FAA6809BB940689A7C Ref B: CO6AA3150219051 Ref C: 2023-10-18T23:45:16Z' status: code: 200 message: OK @@ -2103,41 +2117,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '713' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:17:25 GMT + - Wed, 18 Oct 2023 23:45:47 GMT elapsed-time: - - '226' + - '237' etag: - - W/"datetime'2023-03-13T14%3A16%3A55.7484651Z'" + - W/"datetime'2023-10-18T23%3A36%3A10.0225334Z'" expires: - '-1' pragma: - no-cache request-id: - - b34ef594-c1a9-11ed-a808-b7b53f28d5a3 + - 1b9d2c2c-6e0f-11ee-a1f5-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 80DD7A90F12E4793A453804F9FF048D8 Ref B: CO6AA3150219051 Ref C: 2023-10-18T23:45:47Z' status: code: 200 message: OK @@ -2155,41 +2168,153 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '705' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 23:46:17 GMT + elapsed-time: + - '187' + etag: + - W/"datetime'2023-10-18T23%3A36%3A10.0225334Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 1b9d2c2c-6e0f-11ee-a1f5-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 6C643E669B044D7F82697F6BA00C9EA5 Ref B: CO6AA3150219051 Ref C: 2023-10-18T23:46:17Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - search service update + Connection: + - keep-alive + ParameterSetName: + - -n -g --public-access + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '705' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 23:46:17 GMT + elapsed-time: + - '166' + etag: + - W/"datetime'2023-10-18T23%3A36%3A10.0225334Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: FF472BA4CF1F43D1A16D4B19B00F27CE Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:46:18Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "East US 2 EUAP", "properties": {"authOptions": {"apiKeyOnly": + {}}, "disableLocalAuth": false, "encryptionWithCmk": {"enforcement": "Unspecified"}, + "hostingMode": "default", "networkRuleSet": {"ipRules": []}, "partitionCount": + 1, "publicNetworkAccess": "disabled", "replicaCount": 1}, "sku": {"name": "basic"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - search service update + Connection: + - keep-alive + Content-Length: + - '323' + Content-Type: + - application/json + ParameterSetName: + - -n -g --public-access + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '714' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:17:56 GMT + - Wed, 18 Oct 2023 23:46:23 GMT elapsed-time: - - '214' + - '3418' etag: - - W/"datetime'2023-03-13T14%3A16%3A55.7484651Z'" + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" expires: - '-1' pragma: - no-cache request-id: - - b34ef594-c1a9-11ed-a808-b7b53f28d5a3 + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/c444c2dc-0dea-4d66-99a6-13f5becb57d5 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-msedge-ref: + - 'Ref A: 845EA03EC2CF4131A25BBB8B773BDAE2 Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:46:18Z' status: code: 200 message: OK @@ -2207,41 +2332,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '714' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:18:27 GMT + - Wed, 18 Oct 2023 23:46:23 GMT elapsed-time: - - '255' + - '217' etag: - - W/"datetime'2023-03-13T14%3A16%3A55.7484651Z'" + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" expires: - '-1' pragma: - no-cache request-id: - - b34ef594-c1a9-11ed-a808-b7b53f28d5a3 + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: BF76C62FB0A542BE9595AADD32E21464 Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:46:23Z' status: code: 200 message: OK @@ -2259,41 +2383,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '714' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:18:57 GMT + - Wed, 18 Oct 2023 23:46:53 GMT elapsed-time: - - '587' + - '338' etag: - - W/"datetime'2023-03-13T14%3A16%3A55.7484651Z'" + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" expires: - '-1' pragma: - no-cache request-id: - - b34ef594-c1a9-11ed-a808-b7b53f28d5a3 + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: AB757579D72144139129DB32CFD5D22E Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:46:53Z' status: code: 200 message: OK @@ -2311,41 +2434,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '714' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:19:28 GMT + - Wed, 18 Oct 2023 23:47:24 GMT elapsed-time: - - '233' + - '217' etag: - - W/"datetime'2023-03-13T14%3A16%3A55.7484651Z'" + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" expires: - '-1' pragma: - no-cache request-id: - - b34ef594-c1a9-11ed-a808-b7b53f28d5a3 + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B889BD3783EA49F7AE72C998C7BFE701 Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:47:23Z' status: code: 200 message: OK @@ -2363,41 +2485,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '714' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:19:58 GMT + - Wed, 18 Oct 2023 23:47:54 GMT elapsed-time: - - '200' + - '364' etag: - - W/"datetime'2023-03-13T14%3A16%3A55.7484651Z'" + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" expires: - '-1' pragma: - no-cache request-id: - - b34ef594-c1a9-11ed-a808-b7b53f28d5a3 + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 136754627616484FABDE63B8411A4ECA Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:47:54Z' status: code: 200 message: OK @@ -2415,41 +2536,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '714' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:20:28 GMT + - Wed, 18 Oct 2023 23:48:24 GMT elapsed-time: - - '340' + - '230' etag: - - W/"datetime'2023-03-13T14%3A16%3A55.7484651Z'" + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" expires: - '-1' pragma: - no-cache request-id: - - b34ef594-c1a9-11ed-a808-b7b53f28d5a3 + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 08EDA21BE4CE46088F53FD1BCADA7474 Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:48:24Z' status: code: 200 message: OK @@ -2467,41 +2587,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '714' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:20:59 GMT + - Wed, 18 Oct 2023 23:48:55 GMT elapsed-time: - - '225' + - '184' etag: - - W/"datetime'2023-03-13T14%3A16%3A55.7484651Z'" + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" expires: - '-1' pragma: - no-cache request-id: - - b34ef594-c1a9-11ed-a808-b7b53f28d5a3 + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 122566CABD424056A8D203F1AC53A96A Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:48:55Z' status: code: 200 message: OK @@ -2519,41 +2638,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '714' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:21:30 GMT + - Wed, 18 Oct 2023 23:49:25 GMT elapsed-time: - - '230' + - '222' etag: - - W/"datetime'2023-03-13T14%3A16%3A55.7484651Z'" + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" expires: - '-1' pragma: - no-cache request-id: - - b34ef594-c1a9-11ed-a808-b7b53f28d5a3 + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 78A21D2DF023479C9C2DC7BE0C8DEC9D Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:49:25Z' status: code: 200 message: OK @@ -2571,41 +2689,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '714' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:22:01 GMT + - Wed, 18 Oct 2023 23:49:55 GMT elapsed-time: - - '221' + - '279' etag: - - W/"datetime'2023-03-13T14%3A16%3A55.7484651Z'" + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" expires: - '-1' pragma: - no-cache request-id: - - b34ef594-c1a9-11ed-a808-b7b53f28d5a3 + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A692D21928F9452B961A45379A2FAB1E Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:49:55Z' status: code: 200 message: OK @@ -2623,41 +2740,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '714' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:22:31 GMT + - Wed, 18 Oct 2023 23:50:26 GMT elapsed-time: - - '192' + - '312' etag: - - W/"datetime'2023-03-13T14%3A16%3A55.7484651Z'" + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" expires: - '-1' pragma: - no-cache request-id: - - b34ef594-c1a9-11ed-a808-b7b53f28d5a3 + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: AA68609899D94E5B813A4AEE70CF7B95 Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:50:26Z' status: code: 200 message: OK @@ -2675,41 +2791,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '714' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:23:01 GMT + - Wed, 18 Oct 2023 23:50:56 GMT elapsed-time: - - '236' + - '386' etag: - - W/"datetime'2023-03-13T14%3A16%3A55.7484651Z'" + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" expires: - '-1' pragma: - no-cache request-id: - - b34ef594-c1a9-11ed-a808-b7b53f28d5a3 + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 96E1F740A7344F8D800C82C2FFB79EB8 Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:50:56Z' status: code: 200 message: OK @@ -2727,41 +2842,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '714' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:23:32 GMT + - Wed, 18 Oct 2023 23:51:27 GMT elapsed-time: - - '173' + - '192' etag: - - W/"datetime'2023-03-13T14%3A16%3A55.7484651Z'" + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" expires: - '-1' pragma: - no-cache request-id: - - b34ef594-c1a9-11ed-a808-b7b53f28d5a3 + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 77992BAFDEBE4224841B6A6C19FD4935 Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:51:27Z' status: code: 200 message: OK @@ -2779,41 +2893,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '714' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:24:03 GMT + - Wed, 18 Oct 2023 23:51:57 GMT elapsed-time: - - '197' + - '212' etag: - - W/"datetime'2023-03-13T14%3A16%3A55.7484651Z'" + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" expires: - '-1' pragma: - no-cache request-id: - - b34ef594-c1a9-11ed-a808-b7b53f28d5a3 + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 141A1AFF3BBB4DAA94F35D3B22083EF9 Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:51:57Z' status: code: 200 message: OK @@ -2831,41 +2944,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '714' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:24:33 GMT + - Wed, 18 Oct 2023 23:52:27 GMT elapsed-time: - - '248' + - '210' etag: - - W/"datetime'2023-03-13T14%3A16%3A55.7484651Z'" + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" expires: - '-1' pragma: - no-cache request-id: - - b34ef594-c1a9-11ed-a808-b7b53f28d5a3 + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 563BBDC140364F3CA38EE423C0EA6776 Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:52:27Z' status: code: 200 message: OK @@ -2883,41 +2995,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '714' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:25:03 GMT + - Wed, 18 Oct 2023 23:52:58 GMT elapsed-time: - - '171' + - '196' etag: - - W/"datetime'2023-03-13T14%3A16%3A55.7484651Z'" + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" expires: - '-1' pragma: - no-cache request-id: - - b34ef594-c1a9-11ed-a808-b7b53f28d5a3 + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7579B992526A4A91B52CCA96A05CA253 Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:52:58Z' status: code: 200 message: OK @@ -2935,41 +3046,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '714' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:25:34 GMT + - Wed, 18 Oct 2023 23:53:28 GMT elapsed-time: - - '185' + - '361' etag: - - W/"datetime'2023-03-13T14%3A16%3A55.7484651Z'" + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" expires: - '-1' pragma: - no-cache request-id: - - b34ef594-c1a9-11ed-a808-b7b53f28d5a3 + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: AFCD104B8ABA4966B201D92BB3E94674 Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:53:28Z' status: code: 200 message: OK @@ -2987,41 +3097,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '714' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:26:04 GMT + - Wed, 18 Oct 2023 23:53:58 GMT elapsed-time: - - '164' + - '286' etag: - - W/"datetime'2023-03-13T14%3A16%3A55.7484651Z'" + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" expires: - '-1' pragma: - no-cache request-id: - - b34ef594-c1a9-11ed-a808-b7b53f28d5a3 + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8DD613606D874DC49F4829A6B056B4EE Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:53:59Z' status: code: 200 message: OK @@ -3039,41 +3148,40 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '616' + - '714' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:26:35 GMT + - Wed, 18 Oct 2023 23:54:29 GMT elapsed-time: - - '157' + - '169' etag: - - W/"datetime'2023-03-13T14%3A16%3A55.7484651Z'" + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" expires: - '-1' pragma: - no-cache request-id: - - b34ef594-c1a9-11ed-a808-b7b53f28d5a3 + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 883364150C3448419D5DBEB8A6F595A1 Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:54:29Z' status: code: 200 message: OK @@ -3091,41 +3199,907 @@ interactions: ParameterSetName: - -n -g --public-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '608' + - '714' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:27:05 GMT + - Wed, 18 Oct 2023 23:54:59 GMT elapsed-time: - '177' etag: - - W/"datetime'2023-03-13T14%3A16%3A55.7484651Z'" + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: AFD795A62F9D4E61B0F1416D74680DFE Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:54:59Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service update + Connection: + - keep-alive + ParameterSetName: + - -n -g --public-access + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '714' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 23:55:29 GMT + elapsed-time: + - '259' + etag: + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 1AC89811D64D463880538FA0F38AF30A Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:55:30Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service update + Connection: + - keep-alive + ParameterSetName: + - -n -g --public-access + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '714' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 23:56:00 GMT + elapsed-time: + - '239' + etag: + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: DC0D8B49E9DB43C69BE5C227704CA4DB Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:56:00Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service update + Connection: + - keep-alive + ParameterSetName: + - -n -g --public-access + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '714' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 23:56:30 GMT + elapsed-time: + - '247' + etag: + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 04D1A8E530B849B88AA5C0CF48C5B2D5 Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:56:30Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service update + Connection: + - keep-alive + ParameterSetName: + - -n -g --public-access + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '714' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 23:57:00 GMT + elapsed-time: + - '293' + etag: + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: E3602070F620408FADB87B2D9FA51076 Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:57:01Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service update + Connection: + - keep-alive + ParameterSetName: + - -n -g --public-access + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '714' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 23:57:31 GMT + elapsed-time: + - '263' + etag: + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 8CB9DA6EB16E40E0A1D426F64F9DD9C9 Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:57:31Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service update + Connection: + - keep-alive + ParameterSetName: + - -n -g --public-access + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '714' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 23:58:01 GMT + elapsed-time: + - '208' + etag: + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 342CFE98B1F345719A7EA6453567F011 Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:58:01Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service update + Connection: + - keep-alive + ParameterSetName: + - -n -g --public-access + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '714' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 23:58:31 GMT + elapsed-time: + - '320' + etag: + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 2F2F219F171D48EF9345A9842276B71C Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:58:32Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service update + Connection: + - keep-alive + ParameterSetName: + - -n -g --public-access + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '714' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 23:59:02 GMT + elapsed-time: + - '216' + etag: + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 08E1CF095AF84D959B16E54BB653F50D Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:59:02Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service update + Connection: + - keep-alive + ParameterSetName: + - -n -g --public-access + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '714' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 Oct 2023 23:59:32 GMT + elapsed-time: + - '208' + etag: + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 48E33E32C06A462AADADD14D3E28690B Ref B: CO6AA3150220033 Ref C: 2023-10-18T23:59:33Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service update + Connection: + - keep-alive + ParameterSetName: + - -n -g --public-access + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '714' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 19 Oct 2023 00:00:03 GMT + elapsed-time: + - '169' + etag: + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 8365667438D94D2D8F2ADDAE1233628E Ref B: CO6AA3150220033 Ref C: 2023-10-19T00:00:03Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service update + Connection: + - keep-alive + ParameterSetName: + - -n -g --public-access + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '714' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 19 Oct 2023 00:00:34 GMT + elapsed-time: + - '247' + etag: + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 95D35628A1E34A609358EEE808E32D7B Ref B: CO6AA3150220033 Ref C: 2023-10-19T00:00:33Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service update + Connection: + - keep-alive + ParameterSetName: + - -n -g --public-access + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '714' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 19 Oct 2023 00:01:04 GMT + elapsed-time: + - '320' + etag: + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: B60BB1225CD64EF3A5E61761CC9687E8 Ref B: CO6AA3150220033 Ref C: 2023-10-19T00:01:04Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service update + Connection: + - keep-alive + ParameterSetName: + - -n -g --public-access + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '714' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 19 Oct 2023 00:01:34 GMT + elapsed-time: + - '289' + etag: + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: E5C50AD6AEAF41BBA621757DA7031E3D Ref B: CO6AA3150220033 Ref C: 2023-10-19T00:01:34Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service update + Connection: + - keep-alive + ParameterSetName: + - -n -g --public-access + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '714' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 19 Oct 2023 00:02:05 GMT + elapsed-time: + - '181' + etag: + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: FD1341365B8B4BC6A22CA1E1A9F6EAA6 Ref B: CO6AA3150220033 Ref C: 2023-10-19T00:02:04Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service update + Connection: + - keep-alive + ParameterSetName: + - -n -g --public-access + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '714' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 19 Oct 2023 00:02:35 GMT + elapsed-time: + - '192' + etag: + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: E2021405018841B79813045D4D98792E Ref B: CO6AA3150220033 Ref C: 2023-10-19T00:02:35Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service update + Connection: + - keep-alive + ParameterSetName: + - -n -g --public-access + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '714' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 19 Oct 2023 00:03:05 GMT + elapsed-time: + - '178' + etag: + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: B7BA14DA68CB434D8A9980872B74F2E0 Ref B: CO6AA3150220033 Ref C: 2023-10-19T00:03:05Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service update + Connection: + - keep-alive + ParameterSetName: + - -n -g --public-access + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '706' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 19 Oct 2023 00:03:36 GMT + elapsed-time: + - '300' + etag: + - W/"datetime'2023-10-18T23%3A46%3A22.892088Z'" expires: - '-1' pragma: - no-cache request-id: - - b34ef594-c1a9-11ed-a808-b7b53f28d5a3 + - 888b3cf1-6e10-11ee-acb1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C7FDCA0249D9412D9E0ACC98394EE143 Ref B: CO6AA3150220033 Ref C: 2023-10-19T00:03:35Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_shared_private_link_resource_crud.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_shared_private_link_resource_crud.yaml index bd6f6801719..7d72b022daf 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_shared_private_link_resource_crud.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_shared_private_link_resource_crud.yaml @@ -13,36 +13,38 @@ interactions: ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T14:27:08Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_shared_private_link_resource_crud","date":"2023-10-20T04:32:05Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '405' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:27:33 GMT + - Fri, 20 Oct 2023 04:32:31 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": "basic"}, "properties": {"replicaCount": - 1, "partitionCount": 1, "hostingMode": "default", "publicNetworkAccess": "Disabled"}}' + body: '{"location": "westcentralus", "properties": {"hostingMode": "default", + "partitionCount": 1, "publicNetworkAccess": "disabled", "replicaCount": 1}, + "sku": {"name": "basic"}}' headers: Accept: - application/json @@ -53,43 +55,44 @@ interactions: Connection: - keep-alive Content-Length: - - '165' + - '172' Content-Type: - application/json ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '622' + - '745' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:27:43 GMT + - Fri, 20 Oct 2023 04:32:39 GMT elapsed-time: - - '7524' + - '4631' etag: - - W/"datetime'2023-03-13T14%3A27%3A42.5444834Z'" + - W/"datetime'2023-10-20T04%3A32%3A39.7779076Z'" expires: - '-1' pragma: - no-cache request-id: - - 315560a9-c1ab-11ed-a808-b7b53f28d5a3 + - aea352a4-6f01-11ee-93cc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=44e5f686-35a1-4e2c-9ff3-7b6adafcd3c3/eastus2euap/4080b9a9-9c33-484f-9897-bc7bff9c31d4 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -109,33 +112,32 @@ interactions: ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '622' + - '745' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:28:13 GMT + - Fri, 20 Oct 2023 04:32:39 GMT elapsed-time: - - '194' + - '365' etag: - - W/"datetime'2023-03-13T14%3A27%3A42.5444834Z'" + - W/"datetime'2023-10-20T04%3A32%3A39.7779076Z'" expires: - '-1' pragma: - no-cache request-id: - - 315560a9-c1ab-11ed-a808-b7b53f28d5a3 + - aea352a4-6f01-11ee-93cc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -161,33 +163,32 @@ interactions: ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '622' + - '745' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:28:43 GMT + - Fri, 20 Oct 2023 04:33:11 GMT elapsed-time: - - '169' + - '411' etag: - - W/"datetime'2023-03-13T14%3A27%3A42.5444834Z'" + - W/"datetime'2023-10-20T04%3A32%3A39.7779076Z'" expires: - '-1' pragma: - no-cache request-id: - - 315560a9-c1ab-11ed-a808-b7b53f28d5a3 + - aea352a4-6f01-11ee-93cc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -213,33 +214,32 @@ interactions: ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '622' + - '745' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:29:13 GMT + - Fri, 20 Oct 2023 04:33:41 GMT elapsed-time: - - '198' + - '165' etag: - - W/"datetime'2023-03-13T14%3A27%3A42.5444834Z'" + - W/"datetime'2023-10-20T04%3A32%3A39.7779076Z'" expires: - '-1' pragma: - no-cache request-id: - - 315560a9-c1ab-11ed-a808-b7b53f28d5a3 + - aea352a4-6f01-11ee-93cc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -265,33 +265,32 @@ interactions: ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '622' + - '745' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:29:43 GMT + - Fri, 20 Oct 2023 04:34:11 GMT elapsed-time: - - '170' + - '197' etag: - - W/"datetime'2023-03-13T14%3A27%3A42.5444834Z'" + - W/"datetime'2023-10-20T04%3A32%3A39.7779076Z'" expires: - '-1' pragma: - no-cache request-id: - - 315560a9-c1ab-11ed-a808-b7b53f28d5a3 + - aea352a4-6f01-11ee-93cc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -317,33 +316,32 @@ interactions: ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '622' + - '745' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:30:15 GMT + - Fri, 20 Oct 2023 04:34:41 GMT elapsed-time: - - '172' + - '201' etag: - - W/"datetime'2023-03-13T14%3A27%3A42.5444834Z'" + - W/"datetime'2023-10-20T04%3A32%3A39.7779076Z'" expires: - '-1' pragma: - no-cache request-id: - - 315560a9-c1ab-11ed-a808-b7b53f28d5a3 + - aea352a4-6f01-11ee-93cc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -369,33 +367,32 @@ interactions: ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '622' + - '745' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:30:45 GMT + - Fri, 20 Oct 2023 04:35:12 GMT elapsed-time: - - '185' + - '279' etag: - - W/"datetime'2023-03-13T14%3A27%3A42.5444834Z'" + - W/"datetime'2023-10-20T04%3A32%3A39.7779076Z'" expires: - '-1' pragma: - no-cache request-id: - - 315560a9-c1ab-11ed-a808-b7b53f28d5a3 + - aea352a4-6f01-11ee-93cc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -421,33 +418,32 @@ interactions: ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '622' + - '745' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:31:15 GMT + - Fri, 20 Oct 2023 04:35:42 GMT elapsed-time: - - '188' + - '166' etag: - - W/"datetime'2023-03-13T14%3A27%3A42.5444834Z'" + - W/"datetime'2023-10-20T04%3A32%3A39.7779076Z'" expires: - '-1' pragma: - no-cache request-id: - - 315560a9-c1ab-11ed-a808-b7b53f28d5a3 + - aea352a4-6f01-11ee-93cc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -473,33 +469,32 @@ interactions: ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '622' + - '745' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:31:45 GMT + - Fri, 20 Oct 2023 04:36:13 GMT elapsed-time: - - '181' + - '340' etag: - - W/"datetime'2023-03-13T14%3A27%3A42.5444834Z'" + - W/"datetime'2023-10-20T04%3A32%3A39.7779076Z'" expires: - '-1' pragma: - no-cache request-id: - - 315560a9-c1ab-11ed-a808-b7b53f28d5a3 + - aea352a4-6f01-11ee-93cc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -525,33 +520,32 @@ interactions: ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '622' + - '745' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:32:15 GMT + - Fri, 20 Oct 2023 04:36:44 GMT elapsed-time: - - '204' + - '183' etag: - - W/"datetime'2023-03-13T14%3A27%3A42.5444834Z'" + - W/"datetime'2023-10-20T04%3A32%3A39.7779076Z'" expires: - '-1' pragma: - no-cache request-id: - - 315560a9-c1ab-11ed-a808-b7b53f28d5a3 + - aea352a4-6f01-11ee-93cc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -577,33 +571,32 @@ interactions: ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '622' + - '745' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:32:46 GMT + - Fri, 20 Oct 2023 04:37:14 GMT elapsed-time: - - '193' + - '215' etag: - - W/"datetime'2023-03-13T14%3A27%3A42.5444834Z'" + - W/"datetime'2023-10-20T04%3A32%3A39.7779076Z'" expires: - '-1' pragma: - no-cache request-id: - - 315560a9-c1ab-11ed-a808-b7b53f28d5a3 + - aea352a4-6f01-11ee-93cc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -629,33 +622,32 @@ interactions: ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '622' + - '745' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:33:17 GMT + - Fri, 20 Oct 2023 04:37:45 GMT elapsed-time: - - '188' + - '425' etag: - - W/"datetime'2023-03-13T14%3A27%3A42.5444834Z'" + - W/"datetime'2023-10-20T04%3A32%3A39.7779076Z'" expires: - '-1' pragma: - no-cache request-id: - - 315560a9-c1ab-11ed-a808-b7b53f28d5a3 + - aea352a4-6f01-11ee-93cc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -681,33 +673,32 @@ interactions: ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '622' + - '745' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:33:48 GMT + - Fri, 20 Oct 2023 04:38:15 GMT elapsed-time: - - '222' + - '218' etag: - - W/"datetime'2023-03-13T14%3A27%3A42.5444834Z'" + - W/"datetime'2023-10-20T04%3A32%3A39.7779076Z'" expires: - '-1' pragma: - no-cache request-id: - - 315560a9-c1ab-11ed-a808-b7b53f28d5a3 + - aea352a4-6f01-11ee-93cc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -733,33 +724,32 @@ interactions: ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '622' + - '745' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:34:18 GMT + - Fri, 20 Oct 2023 04:38:45 GMT elapsed-time: - - '187' + - '285' etag: - - W/"datetime'2023-03-13T14%3A27%3A42.5444834Z'" + - W/"datetime'2023-10-20T04%3A32%3A39.7779076Z'" expires: - '-1' pragma: - no-cache request-id: - - 315560a9-c1ab-11ed-a808-b7b53f28d5a3 + - aea352a4-6f01-11ee-93cc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -785,33 +775,32 @@ interactions: ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '622' + - '745' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:34:48 GMT + - Fri, 20 Oct 2023 04:39:16 GMT elapsed-time: - - '222' + - '255' etag: - - W/"datetime'2023-03-13T14%3A27%3A42.5444834Z'" + - W/"datetime'2023-10-20T04%3A32%3A39.7779076Z'" expires: - '-1' pragma: - no-cache request-id: - - 315560a9-c1ab-11ed-a808-b7b53f28d5a3 + - aea352a4-6f01-11ee-93cc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -837,33 +826,32 @@ interactions: ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '622' + - '745' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:35:18 GMT + - Fri, 20 Oct 2023 04:39:47 GMT elapsed-time: - - '176' + - '337' etag: - - W/"datetime'2023-03-13T14%3A27%3A42.5444834Z'" + - W/"datetime'2023-10-20T04%3A32%3A39.7779076Z'" expires: - '-1' pragma: - no-cache request-id: - - 315560a9-c1ab-11ed-a808-b7b53f28d5a3 + - aea352a4-6f01-11ee-93cc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -889,33 +877,32 @@ interactions: ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '622' + - '745' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:35:49 GMT + - Fri, 20 Oct 2023 04:40:17 GMT elapsed-time: - - '179' + - '361' etag: - - W/"datetime'2023-03-13T14%3A27%3A42.5444834Z'" + - W/"datetime'2023-10-20T04%3A32%3A39.7779076Z'" expires: - '-1' pragma: - no-cache request-id: - - 315560a9-c1ab-11ed-a808-b7b53f28d5a3 + - aea352a4-6f01-11ee-93cc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -941,33 +928,32 @@ interactions: ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '622' + - '745' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:36:19 GMT + - Fri, 20 Oct 2023 04:40:48 GMT elapsed-time: - - '177' + - '305' etag: - - W/"datetime'2023-03-13T14%3A27%3A42.5444834Z'" + - W/"datetime'2023-10-20T04%3A32%3A39.7779076Z'" expires: - '-1' pragma: - no-cache request-id: - - 315560a9-c1ab-11ed-a808-b7b53f28d5a3 + - aea352a4-6f01-11ee-93cc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -993,33 +979,32 @@ interactions: ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2023-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '622' + - '737' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:36:50 GMT + - Fri, 20 Oct 2023 04:41:19 GMT elapsed-time: - - '189' + - '384' etag: - - W/"datetime'2023-03-13T14%3A27%3A42.5444834Z'" + - W/"datetime'2023-10-20T04%3A32%3A39.7779076Z'" expires: - '-1' pragma: - no-cache request-id: - - 315560a9-c1ab-11ed-a808-b7b53f28d5a3 + - aea352a4-6f01-11ee-93cc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1032,57 +1017,58 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"privateLinkResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Storage/storageAccounts/satest000002", + "groupId": "blob", "requestMessage": "Please approve"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - search service create + - search shared-private-link-resource create Connection: - keep-alive + Content-Length: + - '251' + Content-Type: + - application/json ParameterSetName: - - -n -g --sku --public-network-access + - --service-name -g --resource-id --name --group-id User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2022-09-01 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '' headers: + azure-asyncoperation: + - https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08585038300009043392?api-version=2022-09-01 cache-control: - no-cache content-length: - - '622' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Mon, 13 Mar 2023 14:37:20 GMT + - Fri, 20 Oct 2023 04:41:24 GMT elapsed-time: - - '179' - etag: - - W/"datetime'2023-03-13T14%3A27%3A42.5444834Z'" + - '4505' expires: - '-1' pragma: - no-cache request-id: - - 315560a9-c1ab-11ed-a808-b7b53f28d5a3 + - e9c5efe7-6f02-11ee-86af-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff + x-ms-async-operation-timeout: + - P1DT23H59M + x-ms-ratelimit-remaining-subscription-writes: + - '1197' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1091,39 +1077,35 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service create + - search shared-private-link-resource create Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-network-access + - --service-name -g --resource-id --name --group-id User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08585038300009043392?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","location":"West - US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '614' + - '20' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:37:51 GMT + - Fri, 20 Oct 2023 04:41:26 GMT elapsed-time: - - '310' - etag: - - W/"datetime'2023-03-13T14%3A27%3A42.5444834Z'" + - '488' expires: - '-1' pragma: - no-cache request-id: - - 315560a9-c1ab-11ed-a808-b7b53f28d5a3 + - e9c5efe7-6f02-11ee-86af-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1135,60 +1117,6 @@ interactions: status: code: 200 message: OK -- request: - body: '{"properties": {"privateLinkResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Storage/storageAccounts/satest000002", - "groupId": "blob", "requestMessage": "Please approve"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - search shared-private-link-resource create - Connection: - - keep-alive - Content-Length: - - '251' - Content-Type: - - application/json - ParameterSetName: - - --service-name -g --resource-id --name --group-id - User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004?api-version=2022-09-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08585228886084714902?api-version=2022-09-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 13 Mar 2023 14:37:58 GMT - elapsed-time: - - '5575' - expires: - - '-1' - pragma: - - no-cache - request-id: - - a25c1bed-c1ac-11ed-a808-b7b53f28d5a3 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-async-operation-timeout: - - P1DT23H59M - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted - request: body: null headers: @@ -1203,10 +1131,9 @@ interactions: ParameterSetName: - --service-name -g --resource-id --name --group-id User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08585228886084714902?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08585038300009043392?api-version=2022-09-01 response: body: string: '{"status":"Running"}' @@ -1218,15 +1145,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:38:28 GMT + - Fri, 20 Oct 2023 04:41:56 GMT elapsed-time: - - '545' + - '556' expires: - '-1' pragma: - no-cache request-id: - - a25c1bed-c1ac-11ed-a808-b7b53f28d5a3 + - e9c5efe7-6f02-11ee-86af-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1252,10 +1179,9 @@ interactions: ParameterSetName: - --service-name -g --resource-id --name --group-id User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08585228886084714902?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08585038300009043392?api-version=2022-09-01 response: body: string: '{"status":"Running"}' @@ -1267,15 +1193,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:38:59 GMT + - Fri, 20 Oct 2023 04:42:27 GMT elapsed-time: - - '460' + - '689' expires: - '-1' pragma: - no-cache request-id: - - a25c1bed-c1ac-11ed-a808-b7b53f28d5a3 + - e9c5efe7-6f02-11ee-86af-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1301,10 +1227,9 @@ interactions: ParameterSetName: - --service-name -g --resource-id --name --group-id User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08585228886084714902?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08585038300009043392?api-version=2022-09-01 response: body: string: '{"status":"Succeeded"}' @@ -1316,15 +1241,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:39:29 GMT + - Fri, 20 Oct 2023 04:42:57 GMT elapsed-time: - - '343' + - '640' expires: - '-1' pragma: - no-cache request-id: - - a25c1bed-c1ac-11ed-a808-b7b53f28d5a3 + - e9c5efe7-6f02-11ee-86af-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1350,10 +1275,9 @@ interactions: ParameterSetName: - --service-name -g --resource-id --name --group-id User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004?api-version=2022-09-01 response: body: string: '{"name":"spltest000004","type":"Microsoft.Search/searchServices/sharedPrivateLinkResources","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Storage/storageAccounts/satest000002","groupId":"blob","requestMessage":"Please @@ -1366,15 +1290,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:39:31 GMT + - Fri, 20 Oct 2023 04:42:58 GMT elapsed-time: - - '1575' + - '1022' expires: - '-1' pragma: - no-cache request-id: - - a25c1bed-c1ac-11ed-a808-b7b53f28d5a3 + - e9c5efe7-6f02-11ee-86af-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1405,30 +1329,29 @@ interactions: ParameterSetName: - --service-name -g --resource-id --name --group-id --request-message User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004?api-version=2022-09-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08585228885095842539?api-version=2022-09-01 + - https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08585038299009465077?api-version=2022-09-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Mar 2023 14:39:36 GMT + - Fri, 20 Oct 2023 04:43:04 GMT elapsed-time: - - '4049' + - '4402' expires: - '-1' pragma: - no-cache request-id: - - de449256-c1ac-11ed-a808-b7b53f28d5a3 + - 25aa9cec-6f03-11ee-aff1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -1436,7 +1359,7 @@ interactions: x-ms-async-operation-timeout: - P1DT23H59M x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 202 message: Accepted @@ -1454,10 +1377,57 @@ interactions: ParameterSetName: - --service-name -g --resource-id --name --group-id --request-message User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08585038299009465077?api-version=2022-09-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 20 Oct 2023 04:43:06 GMT + elapsed-time: + - '669' + expires: + - '-1' + pragma: + - no-cache + request-id: + - 25aa9cec-6f03-11ee-aff1-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search shared-private-link-resource update + Connection: + - keep-alive + ParameterSetName: + - --service-name -g --resource-id --name --group-id --request-message + User-Agent: + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08585228885095842539?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08585038299009465077?api-version=2022-09-01 response: body: string: '{"status":"Running"}' @@ -1469,15 +1439,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:40:06 GMT + - Fri, 20 Oct 2023 04:43:36 GMT elapsed-time: - - '378' + - '370' expires: - '-1' pragma: - no-cache request-id: - - de449256-c1ac-11ed-a808-b7b53f28d5a3 + - 25aa9cec-6f03-11ee-aff1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1503,10 +1473,9 @@ interactions: ParameterSetName: - --service-name -g --resource-id --name --group-id --request-message User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08585228885095842539?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08585038299009465077?api-version=2022-09-01 response: body: string: '{"status":"Running"}' @@ -1518,15 +1487,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:40:37 GMT + - Fri, 20 Oct 2023 04:44:08 GMT elapsed-time: - - '359' + - '675' expires: - '-1' pragma: - no-cache request-id: - - de449256-c1ac-11ed-a808-b7b53f28d5a3 + - 25aa9cec-6f03-11ee-aff1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1552,10 +1521,9 @@ interactions: ParameterSetName: - --service-name -g --resource-id --name --group-id --request-message User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08585228885095842539?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08585038299009465077?api-version=2022-09-01 response: body: string: '{"status":"Succeeded"}' @@ -1567,15 +1535,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:41:07 GMT + - Fri, 20 Oct 2023 04:44:37 GMT elapsed-time: - - '412' + - '397' expires: - '-1' pragma: - no-cache request-id: - - de449256-c1ac-11ed-a808-b7b53f28d5a3 + - 25aa9cec-6f03-11ee-aff1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1601,10 +1569,9 @@ interactions: ParameterSetName: - --service-name -g --resource-id --name --group-id --request-message User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004?api-version=2022-09-01 response: body: string: '{"name":"spltest000004","type":"Microsoft.Search/searchServices/sharedPrivateLinkResources","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Storage/storageAccounts/satest000002","groupId":"blob","requestMessage":"Please @@ -1617,15 +1584,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:41:09 GMT + - Fri, 20 Oct 2023 04:44:39 GMT elapsed-time: - - '1138' + - '890' expires: - '-1' pragma: - no-cache request-id: - - de449256-c1ac-11ed-a808-b7b53f28d5a3 + - 25aa9cec-6f03-11ee-aff1-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1651,10 +1618,9 @@ interactions: ParameterSetName: - --service-name -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources?api-version=2022-09-01 response: body: string: '{"value":[{"name":"spltest000004","type":"Microsoft.Search/searchServices/sharedPrivateLinkResources","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Storage/storageAccounts/satest000002","groupId":"blob","requestMessage":"Please @@ -1667,15 +1633,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:41:11 GMT + - Fri, 20 Oct 2023 04:44:40 GMT elapsed-time: - - '1187' + - '981' expires: - '-1' pragma: - no-cache request-id: - - 1863f2d8-c1ad-11ed-a808-b7b53f28d5a3 + - 610ca93b-6f03-11ee-9bdc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1701,10 +1667,9 @@ interactions: ParameterSetName: - --service-name -g --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004?api-version=2022-09-01 response: body: string: '{"name":"spltest000004","type":"Microsoft.Search/searchServices/sharedPrivateLinkResources","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Storage/storageAccounts/satest000002","groupId":"blob","requestMessage":"Please @@ -1717,15 +1682,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:41:13 GMT + - Fri, 20 Oct 2023 04:44:43 GMT elapsed-time: - - '1216' + - '766' expires: - '-1' pragma: - no-cache request-id: - - 1863f2d9-c1ad-11ed-a808-b7b53f28d5a3 + - 622c62e5-6f03-11ee-9ab9-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1753,30 +1718,29 @@ interactions: ParameterSetName: - --service-name -g --name -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004?api-version=2022-09-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/562cad20-7453-4619-a2c3-839d26531670?api-version=2022-09-01 + - https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/e8f96df4-f16c-471a-bf5a-ae170826d907?api-version=2022-09-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Mar 2023 14:41:16 GMT + - Fri, 20 Oct 2023 04:44:46 GMT elapsed-time: - - '2503' + - '2572' expires: - '-1' pragma: - no-cache request-id: - - 1a898e60-c1ad-11ed-a808-b7b53f28d5a3 + - 63224652-6f03-11ee-b10f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -1784,7 +1748,7 @@ interactions: x-ms-async-operation-timeout: - PT50M x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -1802,10 +1766,57 @@ interactions: ParameterSetName: - --service-name -g --name -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/562cad20-7453-4619-a2c3-839d26531670?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/e8f96df4-f16c-471a-bf5a-ae170826d907?api-version=2022-09-01 + response: + body: + string: '{"status":"InProgress"}' + headers: + cache-control: + - no-cache + content-length: + - '23' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 20 Oct 2023 04:44:47 GMT + elapsed-time: + - '480' + expires: + - '-1' + pragma: + - no-cache + request-id: + - 63224652-6f03-11ee-b10f-000d3aff5613 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search shared-private-link-resource delete + Connection: + - keep-alive + ParameterSetName: + - --service-name -g --name -y + User-Agent: + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/e8f96df4-f16c-471a-bf5a-ae170826d907?api-version=2022-09-01 response: body: string: '{"status":"Succeeded"}' @@ -1817,19 +1828,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:41:46 GMT + - Fri, 20 Oct 2023 04:45:18 GMT elapsed-time: - - '473' + - '588' expires: - '-1' pragma: - no-cache request-id: - - 1a898e60-c1ad-11ed-a808-b7b53f28d5a3 + - 63224652-6f03-11ee-b10f-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff status: @@ -1849,10 +1862,9 @@ interactions: ParameterSetName: - --service-name -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources?api-version=2022-09-01 response: body: string: '{"value":[],"nextLink":null}' @@ -1864,15 +1876,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:41:47 GMT + - Fri, 20 Oct 2023 04:45:19 GMT elapsed-time: - - '446' + - '451' expires: - '-1' pragma: - no-cache request-id: - - 2ef4304e-c1ad-11ed-a808-b7b53f28d5a3 + - 78476e19-6f03-11ee-80bc-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1898,15 +1910,14 @@ interactions: ParameterSetName: - --service-name -g --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-mgmt-search/9.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004?api-version=2022-09-01 + uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004?api-version=2022-09-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"Could not find sharedPrivateLinkResource - ''spltest000004'' for searchService ''azstest000003'' in subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590'', - resourceGroupName ''azure_search_cli_test000001''. RequestId: fe97ffe1-b20a-4ed0-893d-9d229dc39e7a","target":null,"details":null}}' + ''spltest000004'' for searchService ''azstest000003'' in subscription ''c4a547de-4411-4447-964d-1edbc72cf116'', + resourceGroupName ''azure_search_cli_test000001''. RequestId: 486674d5-9841-4473-a440-265f662a3b1b","target":null,"details":null}}' headers: cache-control: - no-cache @@ -1917,15 +1928,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 14:41:49 GMT + - Fri, 20 Oct 2023 04:45:21 GMT elapsed-time: - - '407' + - '486' expires: - '-1' pragma: - no-cache request-id: - - 2ef4304f-c1ad-11ed-a808-b7b53f28d5a3 + - 7913649e-6f03-11ee-82ce-000d3aff5613 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_admin_key.py b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_admin_key.py index d678a8a6d45..c5b4b0cbf34 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_admin_key.py +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_admin_key.py @@ -9,7 +9,12 @@ class AzureSearchAdminKeysTests(ScenarioTest): - @ResourceGroupPreparer(name_prefix='azure_search_cli_test') + # https://vcrpy.readthedocs.io/en/latest/configuration.html#request-matching + def setUp(self): + self.vcr.match_on = ['scheme', 'method', 'path', 'query'] # not 'host', 'port' + super(AzureSearchAdminKeysTests, self).setUp() + + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') def test_admin_key_show_renew(self, resource_group): self.kwargs.update({ 'sku_name': 'standard', diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_private_endpoint_connection.py b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_private_endpoint_connection.py index 202440a2c66..7d37eaff8b3 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_private_endpoint_connection.py +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_private_endpoint_connection.py @@ -9,7 +9,12 @@ class AzureSearchServicesTests(ScenarioTest): - @ResourceGroupPreparer(name_prefix='azure_search_cli_test') + # https://vcrpy.readthedocs.io/en/latest/configuration.html#request-matching + def setUp(self): + self.vcr.match_on = ['scheme', 'method', 'path', 'query'] # not 'host', 'port' + super(AzureSearchServicesTests, self).setUp() + + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') def test_private_endpoint_connection_crud(self, resource_group): self.kwargs.update({ 'sku_name': 'basic', diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_private_link_resources.py b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_private_link_resources.py index 313335e4bdd..f96742b49a3 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_private_link_resources.py +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_private_link_resources.py @@ -9,7 +9,12 @@ class AzureSearchServicesTests(ScenarioTest): - @ResourceGroupPreparer(name_prefix='azure_search_cli_test') + # https://vcrpy.readthedocs.io/en/latest/configuration.html#request-matching + def setUp(self): + self.vcr.match_on = ['scheme', 'method', 'path', 'query'] # not 'host', 'port' + super(AzureSearchServicesTests, self).setUp() + + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') def test_list_private_link_resources(self, resource_group): import json diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_query_key.py b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_query_key.py index 689b2adc349..767b88c7560 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_query_key.py +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_query_key.py @@ -9,7 +9,12 @@ class AzureSearchQueryKeysTests(ScenarioTest): - @ResourceGroupPreparer(name_prefix='azure_search_cli_test') + # https://vcrpy.readthedocs.io/en/latest/configuration.html#request-matching + def setUp(self): + self.vcr.match_on = ['scheme', 'method', 'path', 'query'] # not 'host', 'port' + super(AzureSearchQueryKeysTests, self).setUp() + + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') def test_query_key_create_delete_list(self, resource_group): self.kwargs.update({ 'sku_name': 'standard', diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_service.py b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_service.py index 7f56d2cad7d..e08087b3bf6 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_service.py +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_service.py @@ -9,7 +9,12 @@ class AzureSearchServicesTests(ScenarioTest): - @ResourceGroupPreparer(name_prefix='azure_search_cli_test') + # https://vcrpy.readthedocs.io/en/latest/configuration.html#request-matching + def setUp(self): + self.vcr.match_on = ['scheme', 'method', 'path', 'query'] # not 'host', 'port' + super(AzureSearchServicesTests, self).setUp() + + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='westcentralus') def test_service_create_skus(self, resource_group): self.kwargs.update({ 'sku_name': 'standard', @@ -56,7 +61,7 @@ def test_service_create_skus(self, resource_group): self.check('partitionCount', '{partition_count}'), self.check('hostingMode', '{hosting_mode}')]) - @ResourceGroupPreparer(name_prefix='azure_search_cli_test') + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') def test_service_create_multi_partition(self, resource_group): self.kwargs.update({ 'sku_name': 'standard', @@ -73,7 +78,7 @@ def test_service_create_multi_partition(self, resource_group): self.check('replicaCount', '{replica_count}'), self.check('partitionCount', '{partition_count}')]) - @ResourceGroupPreparer(name_prefix='azure_search_cli_test') + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') def test_service_create_multi_replica(self, resource_group): self.kwargs.update({ 'sku_name': 'standard', @@ -90,7 +95,7 @@ def test_service_create_multi_replica(self, resource_group): self.check('replicaCount', '{replica_count}'), self.check('partitionCount', '{partition_count}')]) - @ResourceGroupPreparer(name_prefix='azure_search_cli_test') + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') def test_service_create_ip_rules(self, resource_group): self.kwargs.update({ 'sku_name': 'standard', @@ -106,7 +111,7 @@ def test_service_create_ip_rules(self, resource_group): self.assertTrue(len(_search_service['networkRuleSet']['ipRules']) == 3) - @ResourceGroupPreparer(name_prefix='azure_search_cli_test') + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') def test_service_create_private_endpoint(self, resource_group): self.kwargs.update({ 'sku_name': 'basic', @@ -120,7 +125,7 @@ def test_service_create_private_endpoint(self, resource_group): self.check('sku.name', '{sku_name}'), self.check('publicNetworkAccess', '{public_network_access}')]) - @ResourceGroupPreparer(name_prefix='azure_search_cli_test') + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') def test_service_create_msi(self, resource_group): self.kwargs.update({ 'sku_name': 'basic', @@ -134,7 +139,7 @@ def test_service_create_msi(self, resource_group): self.check('sku.name', '{sku_name}'), self.check('identity.type', '{identity_type}')]) - @ResourceGroupPreparer(name_prefix='azure_search_cli_test') + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') def test_service_update(self, resource_group): self.kwargs.update({ 'sku_name': 'standard', @@ -187,7 +192,7 @@ def test_service_update(self, resource_group): self.check('replicaCount', '{replica_count}'), self.check('partitionCount', '{partition_count}')]) - @ResourceGroupPreparer(name_prefix='azure_search_cli_test') + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') def test_service_update_ip_rules(self, resource_group): self.kwargs.update({ 'sku_name': 'standard', @@ -222,7 +227,7 @@ def test_service_update_ip_rules(self, resource_group): self.check('publicNetworkAccess', '{public_network_access}')]).get_output_in_json() self.assertTrue(len(_search_service['networkRuleSet']['ipRules']) == 0) - @ResourceGroupPreparer(name_prefix='azure_search_cli_test') + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') def test_service_update_private_endpoint(self, resource_group): self.kwargs.update({ 'sku_name': 'basic', @@ -254,7 +259,7 @@ def test_service_update_private_endpoint(self, resource_group): checks=[self.check('name', '{name}'), self.check('publicNetworkAccess', '{public_network_access}')]) - @ResourceGroupPreparer(name_prefix='azure_search_cli_test') + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') def test_service_update_msi(self, resource_group): self.kwargs.update({ 'sku_name': 'basic', @@ -286,7 +291,7 @@ def test_service_update_msi(self, resource_group): checks=[self.check('name', '{name}'), self.check('identity.type', '{identity_type}')]) - @ResourceGroupPreparer(name_prefix='azure_search_cli_test') + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') def test_service_create_delete_show(self, resource_group): self.kwargs.update({ 'sku_name': 'standard', @@ -307,7 +312,7 @@ def test_service_create_delete_show(self, resource_group): self.cmd('az search service show -n {name} -g {rg}', expect_failure=True) - @ResourceGroupPreparer(name_prefix='azure_search_cli_test') + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') def test_service_create_delete_list(self, resource_group): _services = self.cmd('az search service list -g {rg}').get_output_in_json() self.assertTrue(len(_services) == 0) @@ -351,7 +356,7 @@ def test_service_create_delete_list(self, resource_group): _services = self.cmd('az search service list -g {rg}').get_output_in_json() self.assertTrue(len(_services) == 0) - @ResourceGroupPreparer(name_prefix='azure_search_cli_test') + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') def test_service_create_auth(self, resource_group): self.kwargs.update({ 'sku_name': 'basic', @@ -380,7 +385,7 @@ def test_service_create_auth(self, resource_group): ' --auth-options {auth_options}', checks=[self.check('name', '{name}'), self.check('disableLocalAuth', '{disable_local_auth}'), - self.check('authOptions', {'apiKeyOnly': {}, 'aadOrApiKey': None })]) + self.check('authOptions', {'apiKeyOnly': {} })]) self.kwargs.update({ 'disable_local_auth': False, @@ -395,7 +400,7 @@ def test_service_create_auth(self, resource_group): ' --aad-auth-failure-mode {aad_auth_failure_mode}', checks=[self.check('name', '{name}'), self.check('disableLocalAuth', '{disable_local_auth}'), - self.check('authOptions', { 'aadOrApiKey': { 'aadAuthFailureMode': 'http401WithBearerChallenge' }, 'apiKeyOnly': None } )]) + self.check('authOptions', { 'aadOrApiKey': { 'aadAuthFailureMode': 'http401WithBearerChallenge' } } )]) self.kwargs.update({ 'disable_local_auth': False, @@ -410,7 +415,49 @@ def test_service_create_auth(self, resource_group): ' --aad-auth-failure-mode {aad_auth_failure_mode}', checks=[self.check('name', '{name}'), self.check('disableLocalAuth', '{disable_local_auth}'), - self.check('authOptions', { 'aadOrApiKey': { 'aadAuthFailureMode': 'http403' }, 'apiKeyOnly': None } )]) + self.check('authOptions', { 'aadOrApiKey': { 'aadAuthFailureMode': 'http403' } } )]) + + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') + def test_service_create_semantic_search(self, resource_group): + self.kwargs.update({ + 'sku_name': 'standard', + 'name': self.create_random_name(prefix='test', length=24), + 'replica_count': 1, + 'partition_count': 1, + 'semantic_search': 'disabled' + }) + + self.cmd('az search service create -n {name} -g {rg} --sku {sku_name} ' + '--semantic-search {semantic_search}', + checks=[self.check('name', '{name}'), + self.check('sku.name', '{sku_name}'), + self.check('replicaCount', '{replica_count}'), + self.check('partitionCount', '{partition_count}'), + self.check('semanticSearch', '{semantic_search}')]) + + self.kwargs.update({ + 'semantic_search': 'free' + }) + + self.cmd('az search service create -n {name} -g {rg} --sku {sku_name} ' + '--semantic-search {semantic_search}', + checks=[self.check('name', '{name}'), + self.check('sku.name', '{sku_name}'), + self.check('replicaCount', '{replica_count}'), + self.check('partitionCount', '{partition_count}'), + self.check('semanticSearch', '{semantic_search}')]) + + self.kwargs.update({ + 'semantic_search': 'standard' + }) + + self.cmd('az search service create -n {name} -g {rg} --sku {sku_name} ' + '--semantic-search {semantic_search}', + checks=[self.check('name', '{name}'), + self.check('sku.name', '{sku_name}'), + self.check('replicaCount', '{replica_count}'), + self.check('partitionCount', '{partition_count}'), + self.check('semanticSearch', '{semantic_search}')]) if __name__ == '__main__': unittest.main() diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_shared_private_link_resource.py b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_shared_private_link_resource.py index 1c46821305f..ce5ef6f9911 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_shared_private_link_resource.py +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_shared_private_link_resource.py @@ -9,7 +9,12 @@ class AzureSearchServicesTests(ScenarioTest): - @ResourceGroupPreparer(name_prefix='azure_search_cli_test') + # https://vcrpy.readthedocs.io/en/latest/configuration.html#request-matching + def setUp(self): + self.vcr.match_on = ['scheme', 'method', 'path', 'query'] # not 'host', 'port' + super(AzureSearchServicesTests, self).setUp() + + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='westcentralus') @StorageAccountPreparer(name_prefix='satest', kind='StorageV2') def test_shared_private_link_resource_crud(self, resource_group, storage_account): self.kwargs.update({ @@ -66,6 +71,5 @@ def test_shared_private_link_resource_crud(self, resource_group, storage_account self.cmd('az search shared-private-link-resource show --service-name {search_service_name} -g {rg} --name {shared_private_link_resource_name}') self.assertEqual(ex.exception.code, 3) - if __name__ == '__main__': unittest.main()