diff --git a/src/azure-cli-core/azure/cli/core/helpIndex.latest.json b/src/azure-cli-core/azure/cli/core/helpIndex.latest.json index dccb37a9970..e90b5769a9f 100644 --- a/src/azure-cli-core/azure/cli/core/helpIndex.latest.json +++ b/src/azure-cli-core/azure/cli/core/helpIndex.latest.json @@ -292,7 +292,7 @@ "tags": "" }, "search": { - "summary": "Manage Search.", + "summary": "Manage Azure AI Search.", "tags": "" }, "security": { diff --git a/src/azure-cli/azure/cli/command_modules/search/_client_factory.py b/src/azure-cli/azure/cli/command_modules/search/_client_factory.py index 663f6b5ef45..4f957486ba3 100644 --- a/src/azure-cli/azure/cli/command_modules/search/_client_factory.py +++ b/src/azure-cli/azure/cli/command_modules/search/_client_factory.py @@ -4,10 +4,10 @@ # -------------------------------------------------------------------------------------------- -def cf_search(cli_ctx, **_): +def cf_search(cli_ctx, api_version='2026-03-01-preview', **_): from azure.cli.core.commands.client_factory import get_mgmt_service_client from azure.mgmt.search import SearchManagementClient - return get_mgmt_service_client(cli_ctx, SearchManagementClient) + return get_mgmt_service_client(cli_ctx, SearchManagementClient, api_version=api_version) def cf_search_services(cli_ctx, _): diff --git a/src/azure-cli/azure/cli/command_modules/search/_help.py b/src/azure-cli/azure/cli/command_modules/search/_help.py index 8e61f8f7dd4..7d972f6a320 100644 --- a/src/azure-cli/azure/cli/command_modules/search/_help.py +++ b/src/azure-cli/azure/cli/command_modules/search/_help.py @@ -9,37 +9,51 @@ helps['search'] = """ type: group -short-summary: Manage Azure Search services, admin keys and query keys. +short-summary: Manage Azure AI Search services, offerings, admin keys and query keys. """ helps['search admin-key'] = """ type: group -short-summary: Manage Azure Search admin keys. +short-summary: Manage Azure AI Search admin keys. """ helps['search query-key'] = """ type: group -short-summary: Manage Azure Search query keys. +short-summary: Manage Azure AI Search query keys. """ helps['search service'] = """ type: group -short-summary: Manage Azure Search services. +short-summary: Manage Azure AI Search services. +""" + +helps['search offering'] = """ +type: group +short-summary: Manage Azure AI Search offerings. +""" + +helps['search offering list'] = """ +type: command +short-summary: List Azure AI Search offerings by region. +examples: + - name: List Azure AI Search offerings by region. + text: > + az search offering list """ helps['search private-endpoint-connection'] = """ type: group -short-summary: Manage Azure Search private endpoint connections. +short-summary: Manage Azure AI Search private endpoint connections. """ helps['search private-link-resource'] = """ type: group -short-summary: Manage Azure Search private link resources. +short-summary: Manage Azure AI Search private link resources. """ helps['search shared-private-link-resource'] = """ type: group -short-summary: Manage Azure Search shared private link resources. +short-summary: Manage Azure AI Search shared private link resources. """ helps['search shared-private-link-resource wait'] = """ @@ -67,7 +81,7 @@ helps['search service query-key create'] = """ type: command -short-summary: Creates a query key for a given Azure Search service. +short-summary: Creates a query key for a given Azure AI Search service. examples: - name: Create a query key for a Search service. text: > @@ -76,7 +90,7 @@ helps['search service admin-key regenerate'] = """ type: command -short-summary: Regenerate an admin key for a given Azure Search service. +short-summary: Regenerate an admin key for a given Azure AI Search service. examples: - name: Regenerate the primary admin key for a Search service. text: > @@ -88,7 +102,7 @@ helps['search service check-name-availability'] = """ type: command -short-summary: Check the availability of a given Azure Search service name. +short-summary: Check the availability of a given Azure AI Search service name. examples: - name: Check if a Search service name is available. text: > @@ -97,7 +111,7 @@ helps['search service upgrade'] = """ type: command -short-summary: Upgrade a given Azure Search service. +short-summary: Upgrade a given Azure AI Search service. examples: - name: Upgrade a Search service. text: > @@ -106,7 +120,7 @@ helps['search service network-security-perimeter-configuration reconcile'] = """ type: command -short-summary: Reconcile network security perimeter configuration for a given Azure Search service. +short-summary: Reconcile network security perimeter configuration for a given Azure AI Search service. examples: - name: Reconcile network security perimeter configuration and specify a perimeter name. text: > @@ -115,7 +129,7 @@ helps['search service shared-private-link-resource create'] = """ type: command -short-summary: Create a shared private link resource for a given Azure Search service. +short-summary: Create a shared private link resource for a given Azure AI Search service. examples: - name: Create a shared private link resource for a Search service. text: > @@ -127,7 +141,7 @@ helps['search service shared-private-link-resource update'] = """ type: command -short-summary: Update a shared private link resource for a given Azure Search service. +short-summary: Update a shared private link resource for a given Azure AI Search service. examples: - name: Update the request message for a shared private link resource. text: > @@ -139,7 +153,7 @@ helps['search service private-endpoint-connection update'] = """ type: command -short-summary: Update a private endpoint connection for a given Azure Search service. +short-summary: Update a private endpoint connection for a given Azure AI Search service. examples: - name: Approve a private endpoint connection. text: > 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 index 401c906a51f..bbc2de40913 100644 --- 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 @@ -15,7 +15,7 @@ "search", ) class __CMDGroup(AAZCommandGroup): - """Manage Search + """Manage Azure AI Search """ pass diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/offering/__cmd_group.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/offering/__cmd_group.py new file mode 100644 index 00000000000..d099d7e68c5 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/offering/__cmd_group.py @@ -0,0 +1,24 @@ +# -------------------------------------------------------------------------------------------- +# 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 offering", +) +class __CMDGroup(AAZCommandGroup): + """Manage Azure AI Search offerings + """ + pass + + +__all__ = ["__CMDGroup"] + diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/offering/__init__.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/offering/__init__.py new file mode 100644 index 00000000000..806f5cf892e --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/offering/__init__.py @@ -0,0 +1,13 @@ +# -------------------------------------------------------------------------------------------- +# 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 ._list import * + diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/offering/_list.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/offering/_list.py new file mode 100644 index 00000000000..373a76dd109 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/offering/_list.py @@ -0,0 +1,181 @@ +# -------------------------------------------------------------------------------------------- +# 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 offering list", +) +class List(AAZCommand): + """List all Azure AI Search offerings by region. + """ + + _aaz_info = { + "version": "2026-03-01-preview", + "resources": [ + ["mgmt-plane", "/providers/microsoft.search/offerings", "2026-03-01-preview"], + ] + } + + AZ_SUPPORT_PAGINATION = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_paging(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) + + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.OfferingsList(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.value, client_flatten=True) + next_link = self.deserialize_output(self.ctx.vars.instance.next_link) + return result, next_link + + class OfferingsList(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( + "/providers/Microsoft.Search/offerings", + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2026-03-01-preview", + 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.next_link = AAZStrType( + serialized_name="nextLink", + flags={"read_only": True}, + ) + _schema_on_200.value = AAZListType( + flags={"read_only": True}, + ) + + value = cls._schema_on_200.value + value.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element + _element.features = AAZListType() + _element.region_name = AAZStrType( + serialized_name="regionName", + ) + _element.skus = AAZListType() + + features = cls._schema_on_200.value.Element.features + features.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element.features.Element + _element.name = AAZStrType() + + skus = cls._schema_on_200.value.Element.skus + skus.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element.skus.Element + _element.limits = AAZObjectType() + _element.sku = AAZObjectType() + + limits = cls._schema_on_200.value.Element.skus.Element.limits + limits.indexers = AAZIntType() + limits.indexes = AAZIntType() + limits.partition_storage_in_gigabytes = AAZFloatType( + serialized_name="partitionStorageInGigabytes", + ) + limits.partition_vector_storage_in_gigabytes = AAZFloatType( + serialized_name="partitionVectorStorageInGigabytes", + ) + limits.partitions = AAZIntType() + limits.replicas = AAZIntType() + limits.search_units = AAZIntType( + serialized_name="searchUnits", + ) + + sku = cls._schema_on_200.value.Element.skus.Element.sku + sku.name = AAZStrType() + + return cls._schema_on_200 + + +class _ListHelper: + """Helper class for List""" + + +__all__ = ["List"] + diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_check_name_availability.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_check_name_availability.py index 1424d1e2555..ce20e9e5ab0 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_check_name_availability.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_check_name_availability.py @@ -19,9 +19,9 @@ class CheckNameAvailability(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/providers/microsoft.search/checknameavailability", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/providers/microsoft.search/checknameavailability", "2026-03-01-preview"], ] } @@ -115,7 +115,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } 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 index f75d8218f28..b6ee22a4ab1 100644 --- 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 @@ -19,9 +19,9 @@ class Create(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2026-03-01-preview"], ] } @@ -173,6 +173,13 @@ def _build_arguments_schema(cls, *args, **kwargs): nullable=True, enum={"disabled": "disabled", "free": "free", "standard": "standard"}, ) + _args_schema.knowledge_retrieval = AAZStrArg( + options=["--knowledge-retrieval"], + arg_group="Properties", + help="Specifies the billing plan for agentic retrieval on the Azure AI Search service.", + nullable=True, + enum={"free": "free", "standard": "standard"}, + ) _args_schema.upgrade_available = AAZStrArg( options=["--upgrade-available"], arg_group="Properties", @@ -301,7 +308,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } @@ -345,6 +352,7 @@ def content(self): properties.set_prop("encryptionWithCmk", AAZObjectType, ".encryption_with_cmk") properties.set_prop("endpoint", AAZStrType, ".endpoint") properties.set_prop("hostingMode", AAZStrType, ".hosting_mode") + properties.set_prop("knowledgeRetrieval", AAZStrType, ".knowledge_retrieval", typ_kwargs={"nullable": True}) properties.set_prop("networkRuleSet", AAZObjectType) properties.set_prop("partitionCount", AAZIntType, ".partition_count") properties.set_prop("publicNetworkAccess", AAZStrType, ".public_network_access") @@ -488,6 +496,10 @@ def _build_schema_on_200_201(cls): properties.hosting_mode = AAZStrType( serialized_name="hostingMode", ) + properties.knowledge_retrieval = AAZStrType( + serialized_name="knowledgeRetrieval", + nullable=True, + ) properties.network_rule_set = AAZObjectType( serialized_name="networkRuleSet", ) 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 index b9f4c8c667c..03125d7f190 100644 --- 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 @@ -20,9 +20,9 @@ class Delete(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2026-03-01-preview"], ] } @@ -119,7 +119,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_list.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_list.py index e01cf1578af..9cc049b6249 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_list.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_list.py @@ -19,10 +19,10 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/providers/microsoft.search/searchservices", "2025-05-01"], - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/providers/microsoft.search/searchservices", "2026-03-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices", "2026-03-01-preview"], ] } @@ -109,7 +109,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } @@ -232,6 +232,10 @@ def _build_schema_on_200(cls): properties.hosting_mode = AAZStrType( serialized_name="hostingMode", ) + properties.knowledge_retrieval = AAZStrType( + serialized_name="knowledgeRetrieval", + nullable=True, + ) properties.network_rule_set = AAZObjectType( serialized_name="networkRuleSet", ) @@ -444,7 +448,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } 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 index 07c9681e96d..c0000011a9d 100644 --- 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 @@ -19,9 +19,9 @@ class Show(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2026-03-01-preview"], ] } @@ -120,7 +120,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } @@ -231,6 +231,10 @@ def _build_schema_on_200(cls): properties.hosting_mode = AAZStrType( serialized_name="hostingMode", ) + properties.knowledge_retrieval = AAZStrType( + serialized_name="knowledgeRetrieval", + nullable=True, + ) properties.network_rule_set = AAZObjectType( serialized_name="networkRuleSet", ) 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 index 6c296355afc..3241cc80078 100644 --- 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 @@ -19,9 +19,9 @@ class Update(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2026-03-01-preview"], ] } @@ -153,10 +153,17 @@ def _build_arguments_schema(cls, *args, **kwargs): _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.", + help="Sets options that control the availability of semantic search. This configuration is only possible for certain Azure AI Search SKUs in certain locations.", nullable=True, enum={"disabled": "disabled", "free": "free", "standard": "standard"}, ) + _args_schema.knowledge_retrieval = AAZStrArg( + options=["--knowledge-retrieval"], + arg_group="Properties", + help="Specifies the billing plan for agentic retrieval on the Azure AI Search service.", + nullable=True, + enum={"free": "free", "standard": "standard"}, + ) data_exfiltration_protections = cls._args_schema.data_exfiltration_protections data_exfiltration_protections.Element = AAZStrArg( @@ -272,7 +279,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } @@ -371,7 +378,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } @@ -444,6 +451,7 @@ def _update_instance(self, instance): properties.set_prop("dataExfiltrationProtections", AAZListType, ".data_exfiltration_protections") properties.set_prop("disableLocalAuth", AAZBoolType, ".disable_local_auth", typ_kwargs={"nullable": True}) properties.set_prop("encryptionWithCmk", AAZObjectType, ".encryption_with_cmk") + properties.set_prop("knowledgeRetrieval", AAZStrType, ".knowledge_retrieval", typ_kwargs={"nullable": True}) properties.set_prop("networkRuleSet", AAZObjectType) properties.set_prop("partitionCount", AAZIntType, ".partition_count") properties.set_prop("publicNetworkAccess", AAZStrType, ".public_network_access") @@ -580,6 +588,10 @@ def _build_schema_search_service_read(cls, _schema): properties.hosting_mode = AAZStrType( serialized_name="hostingMode", ) + properties.knowledge_retrieval = AAZStrType( + serialized_name="knowledgeRetrieval", + nullable=True, + ) properties.network_rule_set = AAZObjectType( serialized_name="networkRuleSet", ) @@ -796,4 +808,4 @@ def _build_schema_system_data_read(cls, _schema): -__all__ = ["Update"] \ No newline at end of file +__all__ = ["Update"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_upgrade.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_upgrade.py index 895bda44a9b..0213b213f44 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_upgrade.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_upgrade.py @@ -19,9 +19,9 @@ class Upgrade(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/upgrade", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/upgrade", "2026-03-01-preview"], ] } @@ -137,7 +137,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } 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 index 4dca94f910a..14b741fe5c9 100644 --- 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 @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand): _aaz_info = { "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2026-03-01-preview"], ] } @@ -119,7 +119,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/admin_key/_list.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/admin_key/_list.py index 12dc3563220..761a716f6dd 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/admin_key/_list.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/admin_key/_list.py @@ -19,9 +19,9 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/listadminkeys", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/listadminkeys", "2026-03-01-preview"], ] } @@ -119,7 +119,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/admin_key/_regenerate.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/admin_key/_regenerate.py index 26b3b7ce4d6..572898364cb 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/admin_key/_regenerate.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/admin_key/_regenerate.py @@ -19,9 +19,9 @@ class Regenerate(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/regenerateadminkey/{}", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/regenerateadminkey/{}", "2026-03-01-preview"], ] } @@ -131,7 +131,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/network_security_perimeter_configuration/_list.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/network_security_perimeter_configuration/_list.py index 62be64b9e59..950068cb617 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/network_security_perimeter_configuration/_list.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/network_security_perimeter_configuration/_list.py @@ -19,9 +19,9 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/networksecurityperimeterconfigurations", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/networksecurityperimeterconfigurations", "2026-03-01-preview"], ] } @@ -121,7 +121,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/network_security_perimeter_configuration/_reconcile.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/network_security_perimeter_configuration/_reconcile.py index 963bf1a9e59..43bd60edbbd 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/network_security_perimeter_configuration/_reconcile.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/network_security_perimeter_configuration/_reconcile.py @@ -19,9 +19,9 @@ class Reconcile(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/networksecurityperimeterconfigurations/{}/reconcile", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/networksecurityperimeterconfigurations/{}/reconcile", "2026-03-01-preview"], ] } @@ -137,7 +137,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/network_security_perimeter_configuration/_show.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/network_security_perimeter_configuration/_show.py index 4c08aae0f24..fd6bc38e5e7 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/network_security_perimeter_configuration/_show.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/network_security_perimeter_configuration/_show.py @@ -19,9 +19,9 @@ class Show(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/networksecurityperimeterconfigurations/{}", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/networksecurityperimeterconfigurations/{}", "2026-03-01-preview"], ] } @@ -135,7 +135,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/_delete.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/_delete.py index b52c726cf31..3f2451d9916 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/_delete.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/_delete.py @@ -20,9 +20,9 @@ class Delete(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/privateendpointconnections/{}", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/privateendpointconnections/{}", "2026-03-01-preview"], ] } @@ -131,7 +131,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/_list.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/_list.py index 843c81e30fc..1ba5ff3c34b 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/_list.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/_list.py @@ -19,9 +19,9 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/privateendpointconnections", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/privateendpointconnections", "2026-03-01-preview"], ] } @@ -121,7 +121,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/_show.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/_show.py index a3a6959160f..efb76ddcf0b 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/_show.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/_show.py @@ -19,9 +19,9 @@ class Show(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/privateendpointconnections/{}", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/privateendpointconnections/{}", "2026-03-01-preview"], ] } @@ -130,7 +130,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/_update.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/_update.py index 5a664a2c798..99c31922232 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/_update.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/_update.py @@ -19,9 +19,9 @@ class Update(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/privateendpointconnections/{}", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/privateendpointconnections/{}", "2026-03-01-preview"], ] } @@ -199,7 +199,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } @@ -286,7 +286,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_link_resource/_list.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_link_resource/_list.py index 6c4125b0148..39ce084d266 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_link_resource/_list.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_link_resource/_list.py @@ -19,9 +19,9 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/privatelinkresources", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/privatelinkresources", "2026-03-01-preview"], ] } @@ -119,7 +119,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/query_key/_create.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/query_key/_create.py index 07423094751..3d12ad9141a 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/query_key/_create.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/query_key/_create.py @@ -19,9 +19,9 @@ class Create(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/createquerykey/{}", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/createquerykey/{}", "2026-03-01-preview"], ] } @@ -128,7 +128,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/query_key/_delete.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/query_key/_delete.py index d4be5bb9b7f..16994872c3e 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/query_key/_delete.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/query_key/_delete.py @@ -20,9 +20,9 @@ class Delete(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/deletequerykey/{}", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/deletequerykey/{}", "2026-03-01-preview"], ] } @@ -129,7 +129,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/query_key/_list.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/query_key/_list.py index 9e36fb491e3..1ff0a81aac1 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/query_key/_list.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/query_key/_list.py @@ -19,9 +19,9 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/listquerykeys", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/listquerykeys", "2026-03-01-preview"], ] } @@ -121,7 +121,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_create.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_create.py index 405cdf26d12..dc0bd640569 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_create.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_create.py @@ -19,9 +19,9 @@ class Create(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/sharedprivatelinkresources/{}", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/sharedprivatelinkresources/{}", "2026-03-01-preview"], ] } @@ -181,7 +181,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_delete.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_delete.py index 8848fe8e516..c157f33896c 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_delete.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_delete.py @@ -20,9 +20,9 @@ class Delete(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/sharedprivatelinkresources/{}", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/sharedprivatelinkresources/{}", "2026-03-01-preview"], ] } @@ -153,7 +153,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_list.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_list.py index f9afec5dd3e..a1eac422ea2 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_list.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_list.py @@ -19,9 +19,9 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/sharedprivatelinkresources", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/sharedprivatelinkresources", "2026-03-01-preview"], ] } @@ -121,7 +121,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_show.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_show.py index 24efb5bb41a..165007bb8d9 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_show.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_show.py @@ -19,9 +19,9 @@ class Show(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/sharedprivatelinkresources/{}", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/sharedprivatelinkresources/{}", "2026-03-01-preview"], ] } @@ -130,7 +130,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_update.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_update.py index 1eaccafceee..4f67e3817f6 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_update.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_update.py @@ -19,9 +19,9 @@ class Update(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/sharedprivatelinkresources/{}", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/sharedprivatelinkresources/{}", "2026-03-01-preview"], ] } @@ -188,7 +188,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } @@ -291,7 +291,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_wait.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_wait.py index a92da21cab0..7598a78dfc0 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_wait.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_wait.py @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand): _aaz_info = { "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/sharedprivatelinkresources/{}", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/sharedprivatelinkresources/{}", "2026-03-01-preview"], ] } @@ -129,7 +129,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/usage/_list.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/usage/_list.py index c6f57deef72..ef893cc90d6 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/usage/_list.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/usage/_list.py @@ -19,9 +19,9 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/providers/microsoft.search/locations/{}/usages", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/providers/microsoft.search/locations/{}/usages", "2026-03-01-preview"], ] } @@ -109,7 +109,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/usage/_show.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/usage/_show.py index 0cfdf642680..be745aac717 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/usage/_show.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/usage/_show.py @@ -19,9 +19,9 @@ class Show(AAZCommand): """ _aaz_info = { - "version": "2025-05-01", + "version": "2026-03-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/providers/microsoft.search/locations/{}/usages/{}", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/providers/microsoft.search/locations/{}/usages/{}", "2026-03-01-preview"], ] } @@ -118,7 +118,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2025-05-01", + "api-version", "2026-03-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_offering_list.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_offering_list.yaml new file mode 100644 index 00000000000..5aa88ae945d --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_offering_list.yaml @@ -0,0 +1,50 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - search offering list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Search/offerings?api-version=2026-03-01-preview + response: + body: + string: '{"value":[{"regionName":"eastus2euap","features":[{"name":"Grok"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"LogicApps"},{"name":"RankEmbed"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":3,"replicas":3,"partitions":1,"partitionStorageInGigabytes":2.0,"partitionVectorStorageInGigabytes":1.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":25.0,"partitionVectorStorageInGigabytes":3.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":100.0,"partitionVectorStorageInGigabytes":12.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":200.0,"partitionVectorStorageInGigabytes":36.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":200.0,"partitionVectorStorageInGigabytes":36.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":12.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":36.0}}]},{"regionName":"centraluseuap","features":[{"name":"Grok"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":3,"replicas":3,"partitions":1,"partitionStorageInGigabytes":2.0,"partitionVectorStorageInGigabytes":1.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":25.0,"partitionVectorStorageInGigabytes":3.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":100.0,"partitionVectorStorageInGigabytes":12.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":200.0,"partitionVectorStorageInGigabytes":36.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":200.0,"partitionVectorStorageInGigabytes":36.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":12.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":36.0}}]},{"regionName":"eastus","features":[{"name":"Grok"},{"name":"ImageVectorization"},{"name":"DocumentIntelligence"},{"name":"QueryRewrite"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"},{"name":"LogicApps"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}}]},{"regionName":"eastus2","features":[{"name":"Grok"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"},{"name":"LogicApps"},{"name":"AzureConfidentialCompute"}],"skus":[]},{"regionName":"westus","features":[{"name":"Grok"},{"name":"ImageVectorization"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}}]},{"regionName":"westus2","features":[{"name":"Grok"},{"name":"ImageVectorization"},{"name":"DocumentIntelligence"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"},{"name":"LogicApps"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"westus3","features":[{"name":"Grok"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"},{"name":"LogicApps"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"northcentralus","features":[{"name":"Grok"},{"name":"DocumentIntelligence"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"southcentralus","features":[{"name":"Grok"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"},{"name":"LogicApps"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"westcentralus","features":[{"name":"Grok"},{"name":"S3"},{"name":"SemanticSearch"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"uksouth","features":[{"name":"Grok"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"},{"name":"LogicApps"},{"name":"AzureConfidentialCompute"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"centralus","features":[{"name":"Grok"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"northeurope","features":[{"name":"Grok"},{"name":"ImageVectorization"},{"name":"QueryRewrite"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"},{"name":"LogicApps"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}}]},{"regionName":"westeurope","features":[{"name":"Grok"},{"name":"ImageVectorization"},{"name":"DocumentIntelligence"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"},{"name":"AzureConfidentialCompute"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"ukwest","features":[{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"francecentral","features":[{"name":"Grok"},{"name":"ImageVectorization"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"eastasia","features":[{"name":"Grok"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"},{"name":"LogicApps"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"southeastasia","features":[{"name":"Grok"},{"name":"ImageVectorization"},{"name":"QueryRewrite"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"},{"name":"LogicApps"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"japanwest","features":[{"name":"Grok"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"japaneast","features":[{"name":"Grok"},{"name":"ImageVectorization"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"koreacentral","features":[{"name":"Grok"},{"name":"ImageVectorization"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"},{"name":"AzureConfidentialCompute"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"koreasouth","features":[{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"australiaeast","features":[{"name":"Grok"},{"name":"ImageVectorization"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"},{"name":"LogicApps"},{"name":"AzureConfidentialCompute"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"australiasoutheast","features":[{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"brazilsouth","features":[{"name":"Grok"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"},{"name":"LogicApps"},{"name":"AzureConfidentialCompute"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"centralindia","features":[{"name":"Grok"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"jioindiacentral","features":[{"name":"S3"},{"name":"StorageOptimized"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"jioindiawest","features":[{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"canadacentral","features":[{"name":"Grok"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"},{"name":"AzureConfidentialCompute"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"canadaeast","features":[{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"southafricanorth","features":[{"name":"Grok"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"},{"name":"AzureConfidentialCompute"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"uaenorth","features":[{"name":"Grok"},{"name":"QueryRewrite"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"},{"name":"AzureConfidentialCompute"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"swedencentral","features":[{"name":"Grok"},{"name":"ImageVectorization"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"},{"name":"LogicApps"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"switzerlandnorth","features":[{"name":"Grok"},{"name":"ImageVectorization"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"},{"name":"AzureConfidentialCompute"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"switzerlandwest","features":[{"name":"Grok"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"germanywestcentral","features":[{"name":"Grok"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"germanynorth","features":[{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"norwayeast","features":[{"name":"Grok"},{"name":"S3"},{"name":"StorageOptimized"},{"name":"MegaStore"},{"name":"AzureConfidentialCompute"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"qatarcentral","features":[{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":3,"replicas":3,"partitions":1,"partitionStorageInGigabytes":2.0,"partitionVectorStorageInGigabytes":1.0}}]},{"regionName":"polandcentral","features":[{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"italynorth","features":[{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"MegaStore"},{"name":"AzureConfidentialCompute"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"israelcentral","features":[{"name":"S3"},{"name":"StorageOptimized"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":3,"replicas":3,"partitions":1,"partitionStorageInGigabytes":2.0,"partitionVectorStorageInGigabytes":1.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":25.0,"partitionVectorStorageInGigabytes":3.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":100.0,"partitionVectorStorageInGigabytes":12.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":200.0,"partitionVectorStorageInGigabytes":36.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":200.0,"partitionVectorStorageInGigabytes":36.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":12.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":36.0}}]},{"regionName":"spaincentral","features":[{"name":"S3"},{"name":"StorageOptimized"},{"name":"SemanticSearch"},{"name":"AzureConfidentialCompute"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":3,"replicas":3,"partitions":1,"partitionStorageInGigabytes":2.0,"partitionVectorStorageInGigabytes":1.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":25.0,"partitionVectorStorageInGigabytes":3.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":100.0,"partitionVectorStorageInGigabytes":12.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":200.0,"partitionVectorStorageInGigabytes":36.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":200.0,"partitionVectorStorageInGigabytes":36.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":12.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":36.0}}]},{"regionName":"southindia","features":[{"name":"S3"},{"name":"StorageOptimized"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":3,"replicas":3,"partitions":1,"partitionStorageInGigabytes":2.0,"partitionVectorStorageInGigabytes":1.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":25.0,"partitionVectorStorageInGigabytes":3.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":100.0,"partitionVectorStorageInGigabytes":12.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":200.0,"partitionVectorStorageInGigabytes":36.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":200.0,"partitionVectorStorageInGigabytes":36.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":12.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":36.0}}]},{"regionName":"mexicocentral","features":[{"name":"S3"},{"name":"StorageOptimized"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"taiwannorth","features":[{"name":"S3"},{"name":"StorageOptimized"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"newzealandnorth","features":[{"name":"S3"},{"name":"StorageOptimized"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"indonesiacentral","features":[{"name":"S3"},{"name":"StorageOptimized"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"malaysiawest","features":[{"name":"S3"},{"name":"StorageOptimized"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"denmarkeast","features":[{"name":"S3"},{"name":"StorageOptimized"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"chilecentral","features":[{"name":"S3"},{"name":"StorageOptimized"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"austriaeast","features":[{"name":"S3"},{"name":"StorageOptimized"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"belgiumcentral","features":[{"name":"S3"},{"name":"StorageOptimized"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"israelnorthwest","features":[{"name":"S3"},{"name":"StorageOptimized"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]},{"regionName":"taiwannorthwest","features":[{"name":"S3"},{"name":"StorageOptimized"},{"name":"MegaStore"}],"skus":[{"name":"free","limits":{"indexes":3,"indexers":3,"searchUnits":1,"replicas":1,"partitions":1,"partitionStorageInGigabytes":0.05,"partitionVectorStorageInGigabytes":0.025}},{"name":"basic","limits":{"indexes":15,"indexers":15,"searchUnits":9,"replicas":3,"partitions":3,"partitionStorageInGigabytes":15.0,"partitionVectorStorageInGigabytes":5.0}},{"name":"standard","limits":{"indexes":50,"indexers":50,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":160.0,"partitionVectorStorageInGigabytes":35.0}},{"name":"standard2","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":512.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"standard3","limits":{"indexes":200,"indexers":200,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"standard3HighDensity","limits":{"indexes":1000,"indexers":0,"searchUnits":36,"replicas":12,"partitions":3,"partitionStorageInGigabytes":1024.0,"partitionVectorStorageInGigabytes":300.0}},{"name":"storage_optimized_l1","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":2048.0,"partitionVectorStorageInGigabytes":150.0}},{"name":"storage_optimized_l2","limits":{"indexes":10,"indexers":10,"searchUnits":36,"replicas":12,"partitions":12,"partitionStorageInGigabytes":4096.0,"partitionVectorStorageInGigabytes":300.0}}]}],"nextLink":null}' + headers: + cache-control: + - no-cache + content-length: + - '84310' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:11:40 GMT + elapsed-time: + - '379' + expires: + - '-1' + pragma: + - no-cache + request-id: + - 79a90516-4054-11f1-be1a-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - '' + x-msedge-ref: + - 'Ref A: 4024F53A914845B0A76A7AE740CCACDE Ref B: MWH011020808023 Ref C: 2026-04-25T03:11:39Z' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_knowledge_retrieval.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_knowledge_retrieval.yaml new file mode 100644 index 00000000000..10bc43df570 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_knowledge_retrieval.yaml @@ -0,0 +1,3300 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku --replica-count --partition-count --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2024-11-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_knowledge_retrieval","date":"2026-04-25T02:44:22Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '397' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:44:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 70F5009CCADF47F08D8FEA1C3F9DE58D Ref B: MWH011020806029 Ref C: 2026-04-25T02:44:24Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "knowledgeRetrieval": + "free", "partitionCount": 1, "publicNetworkAccess": "enabled", "replicaCount": + 1}, "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 --replica-count --partition-count --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:44:38 GMT + elapsed-time: + - '6969' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + 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/198290f5-651c-43ea-8730-bb4663c824c2 + x-ms-ratelimit-remaining-subscription-writes: + - '0' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 04A1EC28A0D840088E856DCB6F814275 Ref B: CO6AA3150218033 Ref C: 2026-04-25T02:44:24Z' + 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 --replica-count --partition-count --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:44:38 GMT + elapsed-time: + - '91' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 4960317BD906414CB853F36BB56FC473 Ref B: MWH011020808040 Ref C: 2026-04-25T02:44:38Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:45:08 GMT + elapsed-time: + - '98' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 0CCDFB58F10A487DB285C65692E25AEA Ref B: CO6AA3150219021 Ref C: 2026-04-25T02:45:09Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:45:39 GMT + elapsed-time: + - '83' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 72ECB353D5B94B64853C04A12ECAF2FB Ref B: MWH011020807054 Ref C: 2026-04-25T02:45:39Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:46:09 GMT + elapsed-time: + - '75' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B2872F2ECC6F41B9B76A19DCD96F3313 Ref B: CO6AA3150220035 Ref C: 2026-04-25T02:46:10Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:46:39 GMT + elapsed-time: + - '89' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: EDEFAA8B250E4AD8B818F687D4DD56FB Ref B: MWH011020808052 Ref C: 2026-04-25T02:46:40Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:47:10 GMT + elapsed-time: + - '83' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 54C19CEFB7DC4F9F98864C067D6482F2 Ref B: MWH011020806029 Ref C: 2026-04-25T02:47:10Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:47:40 GMT + elapsed-time: + - '75' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: AE07FCA363FD40A7A4C258D11A56A8F0 Ref B: MWH011020808060 Ref C: 2026-04-25T02:47:41Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:48:10 GMT + elapsed-time: + - '73' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 945FD80086C84CC493BD57B75E95B496 Ref B: MWH011020806062 Ref C: 2026-04-25T02:48:11Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:48:42 GMT + elapsed-time: + - '80' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 674039B4EC064C9C9EA0C4DE8F813BF0 Ref B: MWH011020809023 Ref C: 2026-04-25T02:48:41Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:49:11 GMT + elapsed-time: + - '92' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 5B3BB9860E3C496AA1D87B76F075768E Ref B: MWH011020807042 Ref C: 2026-04-25T02:49:12Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:49:42 GMT + elapsed-time: + - '89' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: D2A4BF80E0D1415586DA215BFBE81BD2 Ref B: CO6AA3150218029 Ref C: 2026-04-25T02:49:42Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:50:12 GMT + elapsed-time: + - '78' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 052B980623484B438C2C50EE9FDE72F2 Ref B: CO6AA3150218051 Ref C: 2026-04-25T02:50:12Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:50:42 GMT + elapsed-time: + - '78' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 200CC686426C42F1B00D89CDC35E4984 Ref B: MWH011020807031 Ref C: 2026-04-25T02:50:43Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:51:12 GMT + elapsed-time: + - '78' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 08CE169AE93A48A69DB18CD72E081936 Ref B: CO6AA3150219029 Ref C: 2026-04-25T02:51:13Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:51:43 GMT + elapsed-time: + - '77' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 922F950D5AEC497B9E575E6A30778658 Ref B: MWH011020807062 Ref C: 2026-04-25T02:51:43Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:52:14 GMT + elapsed-time: + - '123' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 001290F7A9D54F949320C9BF1B3FDF4B Ref B: CO6AA3150217031 Ref C: 2026-04-25T02:52:13Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:52:43 GMT + elapsed-time: + - '79' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 2F4A0A733E684D909E4CEE48093061A9 Ref B: MWH011020808060 Ref C: 2026-04-25T02:52:44Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:53:14 GMT + elapsed-time: + - '86' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: E339470F7C75407F81DDE1268E938C77 Ref B: CO6AA3150217011 Ref C: 2026-04-25T02:53:14Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:53:44 GMT + elapsed-time: + - '75' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: DEC2BE8288424B7EA1B732546F65646D Ref B: CO6AA3150217029 Ref C: 2026-04-25T02:53:44Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:54:15 GMT + elapsed-time: + - '84' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 2BF2A5087218484B8C2D2A81143EC3E5 Ref B: MWH011020807025 Ref C: 2026-04-25T02:54:15Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:54:45 GMT + elapsed-time: + - '74' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 940CA47D675645B4B2FF875FE91E5EEB Ref B: MWH011020807062 Ref C: 2026-04-25T02:54:45Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:55:15 GMT + elapsed-time: + - '85' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 1B0791F9D4E74C8CA231E4AE3D6C015E Ref B: MWH011020808042 Ref C: 2026-04-25T02:55:16Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:55:46 GMT + elapsed-time: + - '110' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: D91B81B503834C54A4619B0C36FBAEB7 Ref B: MWH011020808054 Ref C: 2026-04-25T02:55:46Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:56:16 GMT + elapsed-time: + - '87' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: D1ABFFB8C37A4969AA16B75AA7A0E662 Ref B: CO6AA3150219009 Ref C: 2026-04-25T02:56:16Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:56:47 GMT + elapsed-time: + - '110' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 13FBD681F0C4442B91C29035225592CA Ref B: MWH011020806040 Ref C: 2026-04-25T02:56:47Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"running","statusDetails":"","provisioningState":"Succeeded","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1111' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:57:17 GMT + elapsed-time: + - '115' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - ab33fb8a-4050-11f1-8413-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: C382CFFD266B4AD8B5654372F34BF6E3 Ref B: MWH011020809062 Ref C: 2026-04-25T02:57:17Z' + 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.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"running","statusDetails":"","provisioningState":"Succeeded","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1111' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:57:18 GMT + elapsed-time: + - '82' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 78d47117-4052-11f1-b8c3-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 5EC6DD63D83143A4A897F54EADE5AE76 Ref B: CO6AA3150220037 Ref C: 2026-04-25T02:57:18Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - search service list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"value":[{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"running","statusDetails":"","provisioningState":"Succeeded","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"eTag":"W/\"datetime''2026-04-25T02%3A44%3A38.544776Z''\"","encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1180' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:57:18 GMT + elapsed-time: + - '115' + expires: + - '-1' + pragma: + - no-cache + request-id: + - 790ec09e-4052-11f1-90f7-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 36302F8E694F4E46B7D10615DB054242 Ref B: MWH011020809025 Ref C: 2026-04-25T02:57:18Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"running","statusDetails":"","provisioningState":"Succeeded","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1111' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:57:19 GMT + elapsed-time: + - '78' + etag: + - W/"datetime'2026-04-25T02%3A44%3A38.544776Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 795e90df-4052-11f1-af86-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 86CF0FA8B5B9421B875F79B860190287 Ref B: CO6AA3150218011 Ref C: 2026-04-25T02:57:19Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "East US 2 EUAP", "properties": {"authOptions": {"aadOrApiKey": + {"aadAuthFailureMode": "http401WithBearerChallenge"}}, "dataExfiltrationProtections": + [], "disableLocalAuth": false, "encryptionWithCmk": {"enforcement": "Unspecified"}, + "hostingMode": "default", "knowledgeRetrieval": "standard", "networkRuleSet": + {"ipRules": []}, "partitionCount": 1, "publicNetworkAccess": "Enabled", "replicaCount": + 1, "semanticSearch": "free", "upgradeAvailable": "notAvailable"}, "sku": {"name": + "standard"}, "tags": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - search service update + Connection: + - keep-alive + Content-Length: + - '519' + Content-Type: + - application/json + ParameterSetName: + - -n -g --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"running","statusDetails":"","provisioningState":"Succeeded","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1111' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:57:20 GMT + elapsed-time: + - '192' + etag: + - W/"datetime'2026-04-25T02%3A57%3A20.3748362Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 795e90df-4052-11f1-af86-000d3ac4d362 + 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/def4b1a0-23ce-429a-a164-b10782f75189 + x-ms-ratelimit-remaining-subscription-writes: + - '0' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: D3207DB467564452BCCD111ACFC04299 Ref B: CO6AA3150218027 Ref C: 2026-04-25T02:57:19Z' + 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.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"running","statusDetails":"","provisioningState":"Succeeded","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:44:38.536Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1111' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:57:20 GMT + elapsed-time: + - '104' + etag: + - W/"datetime'2026-04-25T02%3A57%3A20.3748362Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a4b035e-4052-11f1-9139-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B2BA3FFEE2A74E91936F1300F9142372 Ref B: CO6AA3150217053 Ref C: 2026-04-25T02:57:20Z' + 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 --replica-count --partition-count --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2024-11-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_knowledge_retrieval","date":"2026-04-25T02:44:22Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '397' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:57:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 360821C09B8046DAB1EBCA5E48448561 Ref B: CO6AA3150220035 Ref C: 2026-04-25T02:57:21Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "knowledgeRetrieval": + "standard", "partitionCount": 1, "publicNetworkAccess": "enabled", "replicaCount": + 1}, "sku": {"name": "standard"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + Content-Length: + - '206' + Content-Type: + - application/json + ParameterSetName: + - -n -g --sku --replica-count --partition-count --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:57:29 GMT + elapsed-time: + - '7654' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + 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/6753a017-f012-4e06-9660-ae717b85b110 + x-ms-ratelimit-remaining-subscription-writes: + - '0' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: A4899B4F3AD64BCB87EB1613C16439BC Ref B: CO6AA3150219029 Ref C: 2026-04-25T02:57:21Z' + 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 --replica-count --partition-count --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:57:29 GMT + elapsed-time: + - '81' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: CBC9A3B6C24544F1A54F10F07F636E7E Ref B: MWH011020807025 Ref C: 2026-04-25T02:57: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 --replica-count --partition-count --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:57:59 GMT + elapsed-time: + - '131' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 35C1760F8C394978AA2540D85A21C147 Ref B: CO6AA3150220019 Ref C: 2026-04-25T02:57: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 --replica-count --partition-count --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:58:30 GMT + elapsed-time: + - '102' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 7D128CF7CC9D4E4EBD1BBE9524C8D59E Ref B: CO6AA3150218029 Ref C: 2026-04-25T02:58:30Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:59:00 GMT + elapsed-time: + - '110' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: C8B777FFC8CE4491B754F22A45243CCB Ref B: CO6AA3150220053 Ref C: 2026-04-25T02:59: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 --replica-count --partition-count --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 02:59:30 GMT + elapsed-time: + - '75' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 8DC4408CC63347C986563000BED770FA Ref B: MWH011020807054 Ref C: 2026-04-25T02:59:31Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:00:01 GMT + elapsed-time: + - '110' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 34EAEF88717C4180979D7AFAC7A17EDD Ref B: MWH011020809054 Ref C: 2026-04-25T03:00:01Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:00:31 GMT + elapsed-time: + - '102' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B06D84446CA54C9F952937E792629C88 Ref B: CO6AA3150220021 Ref C: 2026-04-25T03:00:31Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:01:01 GMT + elapsed-time: + - '113' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 74F7C8626A0842AD8EA6B4252AFD1396 Ref B: MWH011020808029 Ref C: 2026-04-25T03:01: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 --replica-count --partition-count --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:01:32 GMT + elapsed-time: + - '237' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 1B06E2004ACD4AF9AADA55739C7F79F6 Ref B: CO6AA3150220029 Ref C: 2026-04-25T03:01: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 --replica-count --partition-count --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:02:02 GMT + elapsed-time: + - '101' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 9C4F09C7057247769E5CCCAA771D5B4A Ref B: MWH011020807023 Ref C: 2026-04-25T03:02: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 --replica-count --partition-count --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:02:32 GMT + elapsed-time: + - '94' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 3DAA04AD189A46D98AFBE54BAAAB237A Ref B: MWH011020806036 Ref C: 2026-04-25T03:02:33Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:03:03 GMT + elapsed-time: + - '85' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: F5DBB3FCC6D8440DBFDCFFCB7EE8F817 Ref B: MWH011020807036 Ref C: 2026-04-25T03:03:03Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:03:33 GMT + elapsed-time: + - '112' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 6C64F5E12DBD4E0A82237E00A16D8ADB Ref B: CO6AA3150220019 Ref C: 2026-04-25T03:03:33Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:04:04 GMT + elapsed-time: + - '72' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 6221F52A11DB4939B0ADEE96CF5E6680 Ref B: CO6AA3150220047 Ref C: 2026-04-25T03:04:04Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:04:34 GMT + elapsed-time: + - '73' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 6BF84EB98A374A759FB08F5CE77BB838 Ref B: CO6AA3150217053 Ref C: 2026-04-25T03:04:34Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:05:04 GMT + elapsed-time: + - '108' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B378F20EBC1840169C68285A7190C550 Ref B: CO6AA3150217011 Ref C: 2026-04-25T03:05:05Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:05:35 GMT + elapsed-time: + - '92' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 8354276D5EBF4108B57A74B0D7A57C02 Ref B: CO6AA3150219009 Ref C: 2026-04-25T03:05:35Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:06:05 GMT + elapsed-time: + - '87' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 9D106D4DA3B240D5910484C2C01D6F18 Ref B: MWH011020807036 Ref C: 2026-04-25T03:06:05Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:06:36 GMT + elapsed-time: + - '75' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 8685E22646E54403878F2E6F15595670 Ref B: MWH011020809060 Ref C: 2026-04-25T03:06:36Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:07:06 GMT + elapsed-time: + - '80' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: AB608BDB99514FE8946EB9A73842DBA3 Ref B: MWH011020808062 Ref C: 2026-04-25T03:07:06Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:07:36 GMT + elapsed-time: + - '78' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: EEF1A3B6E27543C8B0A4D6AB950A9E1D Ref B: CO6AA3150217011 Ref C: 2026-04-25T03:07:36Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:08:07 GMT + elapsed-time: + - '87' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: E31C3008446C41C691DA5B5430BEC9BC Ref B: CO6AA3150220039 Ref C: 2026-04-25T03:08:08Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:08:38 GMT + elapsed-time: + - '95' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 9BF21AF2592744EF8F8E65165CDD589E Ref B: MWH011020806036 Ref C: 2026-04-25T03:08:38Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:09:09 GMT + elapsed-time: + - '83' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 56C3D3C28C654844B1F436D58D1FDAFC Ref B: MWH011020808023 Ref C: 2026-04-25T03:09:09Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:09:39 GMT + elapsed-time: + - '71' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: A12ADB12983743DF848208AE75B7529D Ref B: MWH011020806052 Ref C: 2026-04-25T03:09:39Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:10:09 GMT + elapsed-time: + - '107' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: E0490510486F4403894DC585EAF91D34 Ref B: CO6AA3150218029 Ref C: 2026-04-25T03:10:09Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"Provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:10:39 GMT + elapsed-time: + - '88' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: A8EDAD303ED34AD9B641F7F0F39B3859 Ref B: MWH011020809023 Ref C: 2026-04-25T03:10:40Z' + 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 --knowledge-retrieval + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.10.11 (Windows-10-10.0.26100-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=2026-03-01-preview + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000003.search.windows.net","status":"running","statusDetails":"","provisioningState":"Succeeded","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant","serviceLevelEncryptionKey":null},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"disabledDataExfiltrationOptions":[],"dataExfiltrationProtections":[],"semanticSearch":"free","knowledgeRetrieval":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2026-04-25T02:57:29.425Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","sku":{"name":"standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '1111' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 Apr 2026 03:11:09 GMT + elapsed-time: + - '89' + etag: + - W/"datetime'2026-04-25T02%3A57%3A29.4342694Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 7a7d2137-4052-11f1-a676-000d3ac4d362 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: CDFF181C5B194F5ABFD3DF0D5FB63D7A Ref B: MWH011020807042 Ref C: 2026-04-25T03:11:10Z' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_offering.py b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_offering.py new file mode 100644 index 00000000000..dc7d2f15fd5 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_offering.py @@ -0,0 +1,25 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from azure.cli.testsdk import ScenarioTest +import unittest + + +class AzureSearchOfferingTests(ScenarioTest): + + # 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().setUp() + + def test_offering_list(self): + offerings = self.cmd('az search offering list').get_output_in_json() + self.assertTrue(len(offerings) > 0) + self.assertIn('regionName', offerings[0]) + self.assertIn('skus', offerings[0]) + + +if __name__ == '__main__': + unittest.main() 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 05443f8c107..bca06bea6ad 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 @@ -500,5 +500,49 @@ def test_service_create_data_exfiltration_protections(self, resource_group): self.assertTrue(len(_search_service['dataExfiltrationProtections']) == 1) self.assertTrue(_search_service['dataExfiltrationProtections'][0] == 'BlockAll') + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') + def test_service_knowledge_retrieval(self, resource_group): + self.kwargs.update({ + 'sku_name': 'standard', + 'name': self.create_random_name(prefix='test', length=24), + 'standard_name': self.create_random_name(prefix='test', length=24), + 'replica_count': 1, + 'partition_count': 1, + 'knowledge_retrieval': 'free' + }) + + self.cmd( + 'az search service create -n {name} -g {rg} --sku {sku_name}' + ' --replica-count {replica_count} --partition-count {partition_count}' + ' --knowledge-retrieval {knowledge_retrieval}', + checks=[self.check('name', '{name}'), + self.check('sku.name', '{sku_name}'), + self.check('replicaCount', '{replica_count}'), + self.check('partitionCount', '{partition_count}'), + self.check('knowledgeRetrieval', '{knowledge_retrieval}')]) + + self.cmd('az search service show -n {name} -g {rg}', + checks=[self.check('name', '{name}'), + self.check('knowledgeRetrieval', '{knowledge_retrieval}')]) + + self.cmd('az search service list -g {rg}', + checks=[self.check('[0].name', '{name}')]) + + self.kwargs.update({ + 'knowledge_retrieval': 'standard' + }) + + self.cmd('az search service update -n {name} -g {rg} --knowledge-retrieval {knowledge_retrieval}', + checks=[self.check('name', '{name}')]) + + self.cmd('az search service show -n {name} -g {rg}', + checks=[self.check('name', '{name}')]) + + self.cmd( + 'az search service create -n {standard_name} -g {rg} --sku {sku_name}' + ' --replica-count {replica_count} --partition-count {partition_count}' + ' --knowledge-retrieval {knowledge_retrieval}', + checks=[self.check('name', '{standard_name}')]) + if __name__ == '__main__': unittest.main() diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 3b73b7851e0..ca4b5cd4b4f 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -70,7 +70,7 @@ azure-mgmt-resource-deployments==1.0.0b1 azure-mgmt-resource-deploymentscripts==1.0.0b1 azure-mgmt-resource-deploymentstacks==1.0.0 azure-mgmt-resource-templatespecs==1.0.0b1 -azure-mgmt-search==9.0.0 +azure-mgmt-search==9.2.0 azure-mgmt-security==6.0.0 azure-mgmt-servicebus==10.0.0b1 azure-mgmt-servicefabric==2.1.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 2cbd8a2dcb8..d31379e4038 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -70,7 +70,7 @@ azure-mgmt-resource-deployments==1.0.0b1 azure-mgmt-resource-deploymentscripts==1.0.0b1 azure-mgmt-resource-deploymentstacks==1.0.0 azure-mgmt-resource-templatespecs==1.0.0b1 -azure-mgmt-search==9.0.0 +azure-mgmt-search==9.2.0 azure-mgmt-security==6.0.0 azure-mgmt-servicebus==10.0.0b1 azure-mgmt-servicefabric==2.1.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index 7ecbaf59368..cb0d318cc25 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -70,7 +70,7 @@ azure-mgmt-resource-deployments==1.0.0b1 azure-mgmt-resource-deploymentscripts==1.0.0b1 azure-mgmt-resource-deploymentstacks==1.0.0 azure-mgmt-resource-templatespecs==1.0.0b1 -azure-mgmt-search==9.0.0 +azure-mgmt-search==9.2.0 azure-mgmt-security==6.0.0 azure-mgmt-servicebus==10.0.0b1 azure-mgmt-servicefabric==2.1.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 76281312312..5361a5b81d3 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -114,7 +114,7 @@ 'azure-mgmt-resource-deploymentscripts==1.0.0b1', 'azure-mgmt-resource-deploymentstacks==1.0.0', 'azure-mgmt-resource-templatespecs==1.0.0b1', - 'azure-mgmt-search~=9.0', + 'azure-mgmt-search~=9.2', 'azure-mgmt-security==6.0.0', 'azure-mgmt-servicebus~=10.0.0b1', 'azure-mgmt-servicefabricmanagedclusters==2.1.0b1',